/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --white:#ffffff;
  --black:#000000;
  --accent:#f4ba3e;
  --accent-hover:#e5a920;
  --gray-50:#fafafa;
  --gray-100:#f5f5f5;
  --gray-200:#e5e5e5;
  --gray-400:#a3a3a3;
  --gray-600:#525252;
  --gray-800:#1a1a1a;
  --gray-900:#0a0a0a;
  --radius:8px;
  --radius-lg:12px;
  --shadow-sm:0 1px 3px rgba(0,0,0,.08);
  --shadow-md:0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:0 8px 32px rgba(0,0,0,.12);
  --transition:0.25s ease;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'SF Pro Display',-apple-system,system-ui,sans-serif;color:var(--black);background:var(--white);line-height:1.6;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ===== UTILITIES ===== */
.container{max-width:1400px;margin:0 auto;padding:0 24px}
.container--narrow{max-width:900px}
.text-accent{color:var(--accent)}
.btn{display:inline-flex;align-items:center;justify-content:center;font-weight:600;border:none;border-radius:var(--radius);cursor:pointer;font-family:inherit;transition:var(--transition);font-size:1rem;gap:8px}
.btn--primary{background:var(--accent);color:var(--black);padding:14px 28px}
.btn--primary:hover{background:var(--accent-hover);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn--sm{padding:10px 20px;font-size:0.875rem}
.btn--lg{padding:18px 36px;font-size:1.125rem}
.btn--outline-dark{background:var(--accent);color:var(--black);padding:14px 32px;border-radius:var(--radius);font-weight:600}
.btn--outline-dark:hover{background:var(--accent-hover);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn--secondary{background:var(--gray-100);color:var(--gray-600);padding:14px 28px}
.btn--secondary:hover{background:var(--gray-200)}

/* ===== NAVBAR ===== */
.navbar{position:relative;z-index:100;background:var(--white);border-bottom:1px solid var(--gray-200)}
.navbar__inner{display:flex;align-items:center;justify-content:space-between;height:64px;max-width:1640px;margin:0 auto;padding:0 16px}
.navbar .navbar__sub{max-width:1640px;margin:0 auto;padding:12px 16px;box-sizing:border-box;width:100%}
.navbar__logo{display:flex;align-items:center}
.navbar__logo-img{height:36px;width:auto}
.navbar__links{display:flex;gap:48px}
.navbar__links a{font-size:0.9rem;font-weight:500;color:var(--gray-600);transition:var(--transition)}
.navbar__links a:hover{color:var(--black)}
.navbar__links a.is-active{font-weight:700;color:var(--black)}
.navbar__actions{display:flex;align-items:center;gap:16px}
.navbar__login{font-size:0.9rem;font-weight:500;color:var(--gray-600);transition:var(--transition)}
.navbar__login:hover{color:var(--black)}
.navbar__hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:4px}
.navbar__hamburger span{display:block;width:24px;height:2px;background:var(--black);border-radius:2px;transition:var(--transition)}

.navbar__sub{display:flex;justify-content:center;gap:48px;padding:12px 0;border-top:1px solid var(--gray-100)}
.navbar__sub a{font-size:0.85rem;font-weight:500;color:var(--gray-600);transition:var(--transition)}
.navbar__sub a:hover{color:var(--black)}

/* ===== HERO ===== */
.hero{padding:48px 0 64px}
.hero__inner{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.hero__image-wrap{border-radius:var(--radius-lg);overflow:hidden}
.hero__image{width:100%;aspect-ratio:4/3;object-fit:cover}
.hero__content{padding-top:8px}
.hero__title{font-size:3.5rem;font-weight:800;letter-spacing:-0.02em;text-align:center;margin:0 0 36px;line-height:1.08}
.hero__text{font-size:0.95rem;color:var(--gray-600);line-height:1.7;margin-bottom:16px}
.hero__highlights{border:2px solid var(--accent);border-radius:var(--radius-lg);padding:24px 28px;margin-top:24px}
.hero__highlight{margin-bottom:12px}
.hero__highlight:last-child{margin-bottom:0}
.hero__highlight strong{font-size:0.95rem;font-weight:700;display:block;margin-bottom:2px}
.hero__highlight ul{padding-left:20px;list-style:disc}
.hero__highlight li{font-size:0.88rem;color:var(--gray-600);line-height:1.6}

/* ===== CATEGORY CARDS ===== */
/* Above-the-fold wrapper: hero + cards + quote banner fill exactly one screen
   (minus the navbar), so the partner marquee never peeks into the hero view. */
.home-fold{min-height:calc(100vh - 65px);display:flex;flex-direction:column}
.home-fold .hero-video{flex:0 0 auto}
.home-fold .home-quote-banner{flex:0 0 auto}
.categories{
  padding:16px 0 14px;
  flex:1 1 auto;
  min-height:0;
  display:flex;
  align-items:stretch;
}
.categories > .container{flex:1;display:flex;align-items:stretch;max-width:1640px;padding:0 16px}
.categories__grid{flex:1;align-items:stretch}
.categories__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.category-card{position:relative;border-radius:var(--radius-lg);overflow:hidden;display:block;min-height:160px}

/* ===== HOME: GET A QUOTE BANNER ===== */
.home-quote-banner{background:#fff9ec;padding:20px 0;border-top:1px solid #f2e2be;border-bottom:1px solid #f2e2be}
.home-quote-banner__inner{max-width:1640px;padding:0 16px;display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.home-quote-banner__title{font-size:1.5rem;font-weight:800;letter-spacing:-0.02em;margin:0;color:#111}
.home-quote-banner__sub{font-size:0.9rem;color:var(--gray-600);margin:2px 0 0}
.home-quote-banner__form{display:flex;gap:10px;flex-shrink:0}
.home-quote-banner__form input{padding:13px 16px;border:1px solid #e6d6a8;border-radius:var(--radius);font-size:1rem;min-width:180px;background:#fff}
.home-quote-banner__form .btn--primary{white-space:nowrap}
@media(max-width:640px){
  .home-quote-banner__inner{flex-direction:column;align-items:flex-start}
  .home-quote-banner__form{width:100%}
  .home-quote-banner__form input{flex:1;min-width:0}
}
.category-card img{width:100%;height:100%;object-fit:cover;transition:transform 0.3s ease}
.category-card:hover img{transform:scale(1.05)}
.category-card__label{position:absolute;top:18px;left:20px;font-size:1.15rem;font-weight:700;color:var(--white);text-shadow:0 1px 8px rgba(0,0,0,.55);letter-spacing:-0.01em}
.category-card--highlight{border:2px solid var(--accent)}

/* ===== FEATURE SECTIONS ===== */
.feature{padding:64px 0}
.feature__inner{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.feature--reverse .feature__inner{direction:rtl}
.feature--reverse .feature__text,.feature--reverse .feature__image{direction:ltr}
.feature__text h2{font-size:1.75rem;font-weight:800;letter-spacing:-0.02em;margin-bottom:16px;margin-top:-0.15em}
.feature__text p{font-size:0.95rem;color:var(--gray-600);line-height:1.7;margin-bottom:24px}
.feature__image img{width:100%;border-radius:var(--radius-lg);object-fit:cover;aspect-ratio:16/9}
.feature--tinted{background-color:#fff9ec}

/* ===== LOGO MARQUEE ===== */
.marquee-section {
  padding: 60px 0;
  background-color: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: 266.666667%; /* 2 groups * (8 items/group) / 6 visible items = 2.666... * 100% */
  animation: marquee-step 16s infinite;
}

.marquee__track--10items {
  width: 333.333333%; /* 2 groups * (10 items/group) / 6 visible items = 3.333... * 100% */
  animation: marquee-step-10 20s infinite;
}

.marquee-group {
  display: flex;
  width: 50%; /* Half of track */
}

.marquee-item {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}

.marquee__logo {
  max-width: 100%;
  height: 50px;
  object-fit: contain;
  transition: var(--transition);
}

.marquee__logo:hover {
  opacity: 0.8;
}

.marquee__logo[src*="qcells"] {
  transform: scale(1.5);
}

@keyframes marquee-step {
  0%, 10% { transform: translateX(0); }
  12.5%, 22.5% { transform: translateX(-6.25%); }
  25%, 35% { transform: translateX(-12.5%); }
  37.5%, 47.5% { transform: translateX(-18.75%); }
  50%, 60% { transform: translateX(-25%); }
  62.5%, 72.5% { transform: translateX(-31.25%); }
  75%, 85% { transform: translateX(-37.5%); }
  87.5%, 97.5% { transform: translateX(-43.75%); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-step-10 {
  0%, 7.5% { transform: translateX(0); }
  10%, 17.5% { transform: translateX(-5%); }
  20%, 27.5% { transform: translateX(-10%); }
  30%, 37.5% { transform: translateX(-15%); }
  40%, 47.5% { transform: translateX(-20%); }
  50%, 57.5% { transform: translateX(-25%); }
  60%, 67.5% { transform: translateX(-30%); }
  70%, 77.5% { transform: translateX(-35%); }
  80%, 87.5% { transform: translateX(-40%); }
  90%, 97.5% { transform: translateX(-45%); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments for marquee if needed */
@media (max-width: 900px) {
  .marquee__track { width: 400%; } /* Show 4 items: 16/4 = 4.000 */
  .marquee__track--10items { width: 500%; } /* Show 4 items: 20/4 = 5.000 */
}
@media (max-width: 500px) {
  .marquee__track { width: 800%; } /* Show 2 items: 16/2 = 8.000 */
  .marquee__track--10items { width: 1000%; } /* Show 2 items: 20/2 = 10.000 */
}


/* ===== SOLAR GUIDE SECTION ===== */
.guide-section {
  padding: 100px 0;
  background-color: var(--white);
}

.guide-section__title {
  text-align: center !important;
  margin-bottom: 60px;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.guide-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 16/10;
}

.article-list {
  display: flex;
  flex-direction: column;
}

.article-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 1.15rem;
  transition: all 0.3s ease;
}

.article-item:last-child {
  border-bottom: none;
}

.article-item:hover {
  color: var(--accent);
  padding-left: 12px;
}

.article-arrow {
  color: var(--accent);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.article-item:hover .article-arrow {
  transform: translateX(8px);
}

@media (max-width: 992px) {
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer{background:var(--gray-900);color:var(--gray-400);padding:60px 0 0}
.footer__inner{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.08)}
.footer__brand p{margin-top:12px;font-size:0.9rem;line-height:1.6;max-width:280px}
.footer__brand .navbar__logo{margin-bottom:4px}
.footer__brand .navbar__logo-img{filter:brightness(0) invert(1)}
.footer__col h4{color:var(--white);font-size:0.85rem;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:16px}
.footer__col a{display:block;font-size:0.9rem;padding:4px 0;transition:var(--transition)}
.footer__col a:hover{color:var(--accent)}
.footer__bottom{display:flex;justify-content:space-between;align-items:center;padding:20px 0;font-size:0.8rem}
.footer__legal{display:flex;gap:24px}
.footer__legal a:hover{color:var(--accent)}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}
.fade-in{opacity:0;transform:translateY(24px);transition:opacity 0.6s ease,transform 0.6s ease}
.fade-in.visible{opacity:1;transform:translateY(0)}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .categories__grid{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:768px){
  .navbar__links{
    display:none;
    position:absolute;top:64px;left:0;right:0;
    background:var(--white);
    flex-direction:column;
    padding:24px;
    gap:16px;
    border-bottom:1px solid var(--gray-200);
    box-shadow:var(--shadow-md)
  }
  .navbar__links.open{display:flex}
  .navbar__hamburger{display:flex}
  .navbar__sub{display:none}

  .hero__inner{grid-template-columns:1fr;gap:32px}
  .hero__title{font-size:2.25rem;margin-bottom:28px}

  .categories__grid{grid-template-columns:repeat(2,1fr)}

  .feature__inner{grid-template-columns:1fr;gap:32px}
  .feature--reverse .feature__inner{direction:ltr}

  .footer__inner{grid-template-columns:1fr 1fr;gap:32px}
  .footer__bottom{flex-direction:column;gap:12px;text-align:center}
}

@media(max-width:480px){
  .categories__grid{grid-template-columns:1fr 1fr}
  .footer__inner{grid-template-columns:1fr}
}

/* ========== REVIEWS CAROUSEL ========== */
.reviews-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.reviews-nav {
  display: flex;
  gap: 12px;
}

.review-btn {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.review-btn:hover {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.review-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.reviews-slider-wrapper {
  overflow: hidden;
  margin: 0 -10px; /* offset padding for inner flex items */
}

.reviews-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.review-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #FACC15; /* Golden Yellow */
  font-size: 1.25rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 25px;
  flex-grow: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e2e8f0;
  padding-top: 15px;
}

.author-name {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #10B981; /* Green color for verified */
  font-weight: 500;
}

.verified-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .review-card {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .review-card {
    flex: 0 0 calc(100% - 20px);
  }
}

/* ========== CALL TO ACTION ========== */
.cta-section {
  padding: 60px 0;
  background-color: #fff9ec;
  border-top: 1px solid #f2e2be;
  border-bottom: 1px solid #f2e2be;
  text-align: center;
}

.cta-centered h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.cta-bar-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.cta-bar-inline__text {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin: 0;
  text-align: left;
  line-height: 1.5;
}

.cta-form-inline {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cta-form-inline input {
  width: 140px;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.cta-form-inline input:focus {
  border-color: var(--accent);
}

/* ===== HERO VIDEO BANNER ===== */
.hero-video{
  position:relative;
  width:100%;
  height:min(50vh, 540px);
  min-height:400px;
  overflow:hidden;
  background:#0a0a0a;
}
.hero-video--compact{
  height:min(34vh, 340px);
  min-height:260px;
}
.hero-video--compact .hero-video__content{padding:40px 24px 32px}
.hero-video__media{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:0;
}
.hero-video__overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.30) 35%, rgba(0,0,0,.50) 100%);
  z-index:1;
}
.hero-video__content{
  position:relative;z-index:2;
  display:flex;flex-direction:column;align-items:center;
  text-align:center;
  padding:56px 24px 40px;
  color:#fff;
  max-width:980px;margin:0 auto;
}
.hero-video__title{
  font-size:clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight:800;letter-spacing:-0.02em;line-height:1.05;
  margin:0 0 24px;
  color:#fff;
  text-shadow:0 2px 16px rgba(0,0,0,.45);
}
.hero-video__text{
  font-size:clamp(1rem, 1.4vw, 1.2rem);
  line-height:1.6;color:#f5f5f5;
  max-width:760px;margin:0 auto;
  text-shadow:0 1px 8px rgba(0,0,0,.5);
}

.hero-video__points{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:32px;
  margin-top:28px;
  width:100%;
  max-width:1000px;
}
.hero-video__point{
  display:flex;flex-direction:column;align-items:center;gap:10px;
  text-align:center;
}
.hero-video__point-num{
  font-size:clamp(2.4rem, 4vw, 3.4rem);
  font-weight:800;
  letter-spacing:-0.02em;line-height:1;
  color:var(--accent);
  text-shadow:0 2px 12px rgba(0,0,0,.4);
}
.hero-video__point-label{
  font-size:clamp(0.88rem, 1vw, 1rem);
  line-height:1.5;
  color:#f5f5f5;
  text-shadow:0 1px 6px rgba(0,0,0,.5);
  max-width:260px;
}

@media(max-width:760px){
  .hero-video__points{grid-template-columns:1fr;gap:20px;margin-top:32px}
  .hero-video__point-label{max-width:none}
}

@media(max-width:640px){
  .hero-video{height:auto;min-height:0}
  .hero-video__content{padding:64px 20px 48px}
}

/* ===== ABOUT US PAGE ===== */
.about-hero{padding:96px 0 64px;background:linear-gradient(180deg,#fff 0%,#fef9ec 100%);text-align:center}
.about-hero__tag{display:inline-block;font-size:0.78rem;font-weight:800;text-transform:uppercase;letter-spacing:0.12em;background:var(--accent);color:#000;padding:6px 14px;border-radius:999px;margin-bottom:22px}
.about-hero__title{font-size:clamp(2rem, 4vw, 3.4rem);font-weight:800;letter-spacing:-0.02em;line-height:1.1;margin:0 auto 18px;color:#111;max-width:880px}
.about-hero__sub{font-size:1.1rem;line-height:1.6;color:#374151;max-width:680px;margin:0 auto}

.about-story{padding:64px 0 48px;background:#fff}
.about-story__inner{display:grid;grid-template-columns:1.1fr 1fr;gap:64px;align-items:center}
.about-story__heading{font-size:2.25rem;font-weight:800;letter-spacing:-0.02em;line-height:1.1;margin:0 0 24px;color:#111}
.about-story__col p{font-size:1rem;line-height:1.75;color:#374151;margin:0 0 18px}
.about-story__col p:last-child{margin-bottom:0}
.about-story__image{width:100%;height:auto;border-radius:18px;object-fit:cover;box-shadow:0 16px 40px rgba(0,0,0,.08)}

/* Scroll-pinned section: tall outer container lets the page scroll while sticky inner stays in view.
   Once the user has scrolled through it once, .is-complete is set to drop the pinning
   so future scroll-ups don't re-trigger the stick. */
.about-values{
  position:relative;
  background:#fafafa;
  border-top:1px solid #e5e7eb;
  border-bottom:1px solid #e5e7eb;
  padding:80px 0;
}
.about-values__sticky{
  position:static;
}
.about-values__heading{
  font-size:2.5rem;font-weight:800;letter-spacing:-0.02em;line-height:1.1;
  margin:0 0 36px;color:#111;
  text-align:left;
}
.about-values__layout{
  display:grid;
  grid-template-columns:1fr minmax(0,440px);
  gap:56px;
  align-items:center;
}
.about-values__grid{
  display:flex;flex-direction:column;gap:40px;
  max-width:none;margin:0;
}
.about-value{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:24px;
  align-items:start;
  opacity:0;
  transform:translateY(28px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.about-value.is-revealed{opacity:1;transform:none}
/* Right-side 2x2 photo clump — each photo reveals with its matching point */
.about-values__photos{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.about-photo{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.12);
  opacity:0;
  transform:translateY(28px) scale(0.96);
  transition:opacity 0.6s ease, transform 0.6s ease;
}
.about-photo.is-revealed{opacity:1;transform:none}
.about-photo img{
  display:block;width:100%;height:100%;
  aspect-ratio:1/1;object-fit:cover;
}
.about-value__num{
  font-size:2.4rem;font-weight:800;color:var(--accent);
  letter-spacing:-0.02em;line-height:1;
  border-right:2px solid var(--accent);
  padding-right:20px;
  text-align:right;
  min-width:64px;
}
.about-value__content{min-width:0}
.about-value__title{font-size:1.4rem;font-weight:800;margin:0 0 8px;color:#111;letter-spacing:-0.01em;line-height:1.2}
.about-value__text{font-size:0.98rem;line-height:1.6;color:#374151;margin:0;max-width:none}

/* ===== Installer list buttons (local-installers.html) ===== */
.installers-grid{display:flex;flex-direction:column;gap:14px;max-width:720px;margin:0 auto}
.installer-btn{
  display:flex;align-items:center;gap:20px;
  padding:18px 22px;
  background:#fff;border:1px solid #e5e7eb;border-radius:14px;
  text-decoration:none;color:inherit;text-align:left;
  transition:border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.installer-btn:hover{border-color:var(--accent);box-shadow:0 8px 24px rgba(0,0,0,.08);transform:translateY(-1px)}
.installer-btn__logo{
  width:64px;height:64px;flex:0 0 auto;object-fit:contain;
  background:#fafafa;border-radius:10px;padding:8px;
}
.installer-btn__text{display:flex;flex-direction:column;gap:3px;flex:1 1 auto;min-width:0}
.installer-btn__name{font-size:1.2rem;font-weight:700;color:#111;line-height:1.2}
.installer-btn__tag{font-size:0.92rem;color:#6b7280;line-height:1.3}
.installer-btn__arrow{font-size:1.4rem;color:#9ca3af;flex:0 0 auto;transition:transform .15s ease}
.installer-btn:hover .installer-btn__arrow{transform:translateX(3px);color:var(--accent)}
@media(max-width:560px){
  .installer-btn{gap:14px;padding:14px 16px}
  .installer-btn__logo{width:52px;height:52px}
  .installer-btn__name{font-size:1.05rem}
}

/* ===== Installer profile page (installer.html) ===== */
.installer-page{padding:48px 0 72px}
.installer-crumbs{font-size:0.88rem;color:#6b7280;margin-bottom:24px}
.installer-crumbs a{color:#0369a1;text-decoration:none}
.installer-crumbs a:hover{text-decoration:underline}
.installer-crumbs span{margin:0 6px;color:#9ca3af}
.installer-hero{display:flex;align-items:center;gap:24px;margin-bottom:36px;flex-wrap:wrap}
.installer-hero__logo img{width:96px;height:96px;object-fit:contain;background:#fafafa;border:1px solid #e5e7eb;border-radius:14px;padding:10px}
.installer-hero__head{flex:1 1 260px}
.installer-hero__name{font-size:2.2rem;font-weight:800;letter-spacing:-0.02em;color:#111;margin:0 0 6px;line-height:1.1}
.installer-hero__tagline{font-size:1.05rem;color:#6b7280;margin:0 0 16px}
.installer-grid{display:grid;grid-template-columns:1fr 300px;gap:40px;align-items:start}
.installer-block{margin-bottom:28px}
.installer-block__title{font-size:1.3rem;font-weight:800;color:#111;margin:0 0 12px}
.installer-bio{font-size:1rem;line-height:1.7;color:#374151;margin:0}
.installer-block__list{margin:0;padding:0;list-style:none;display:flex;flex-wrap:wrap;gap:10px}
.installer-block__list li{background:#fff9ec;border:1px solid #f2e2be;border-radius:999px;padding:7px 16px;font-size:0.92rem;color:#374151}
.installer-side{background:#fafafa;border:1px solid #e5e7eb;border-radius:14px;padding:24px;position:sticky;top:90px}
.installer-facts{display:flex;flex-direction:column;gap:14px;margin-bottom:20px}
.installer-fact{display:flex;flex-direction:column;gap:2px}
.installer-fact__label{font-size:0.78rem;text-transform:uppercase;letter-spacing:0.04em;color:#9ca3af;font-weight:600}
.installer-fact__value{font-size:0.98rem;color:#111;line-height:1.4}
.installer-fact__value a{color:#0369a1;text-decoration:none}
.installer-side__cta{width:100%;text-align:center;display:block}
.installer-side__back{display:inline-block;margin-top:14px;font-size:0.9rem;color:#0369a1;text-decoration:none}
@media(max-width:820px){
  .installer-grid{grid-template-columns:1fr;gap:28px}
  .installer-side{position:static}
  .installer-hero__name{font-size:1.8rem}
}

/* ===== FAQ section ===== */
.faq-section{padding:72px 0;background:#fff9ec;border-top:1px solid #f2e2be;border-bottom:1px solid #f2e2be}
.faq-section__heading{font-size:2rem;font-weight:800;letter-spacing:-0.02em;color:#111;margin:0 0 32px;text-align:center}
.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;border:1px solid #f2e2be;border-radius:12px;overflow:hidden;background:#fff}
.faq-item{background:#fff}
.faq-item + .faq-item{border-top:1px solid #f2e2be}
.faq-item__q{font-size:1.05rem;font-weight:700;color:#111;line-height:1.35;padding:18px 24px;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px}
.faq-item__q::-webkit-details-marker{display:none}
.faq-item__q::after{content:"+";font-size:1.6rem;font-weight:400;color:#9ca3af;line-height:1;flex:0 0 auto}
.faq-item[open] .faq-item__q::after{content:"−"}
.faq-item[open] .faq-item__q{padding-bottom:6px}
.faq-item__a{font-size:0.98rem;line-height:1.6;color:#374151;margin:0;padding:0 24px 20px}
@media(max-width:560px){.faq-section{padding:48px 0}.faq-item__q{padding:16px 18px}.faq-item__a{padding:0 18px 16px}}

@media(max-width:880px){
  .about-story__inner{grid-template-columns:1fr;gap:36px}
  .about-values__layout{grid-template-columns:1fr;gap:40px}
  .about-value{opacity:1;transform:none}
  .about-photo{opacity:1;transform:none}
}
@media(max-width:640px){
  .about-value{grid-template-columns:auto 1fr;gap:18px}
  .about-value__num{font-size:1.8rem;padding-right:16px;min-width:48px}
  .about-value__title{font-size:1.2rem}
  .about-values__grid{gap:36px}
}

@media(prefers-reduced-motion:reduce){
  .about-value,.about-photo{opacity:1;transform:none;transition:none}
}

/* About-us page: the CTA strip directly after the values band gets a slightly larger padding */
.about-values + .cta-section{padding:48px 0}
@media(max-width:560px){
  .about-hero{padding:64px 0 40px}
  .about-story,.about-values{padding:56px 0}
}

/* ===== SOLAR CONNECT MODAL (shared) ===== */
.sc-modal-overlay{
  position:fixed;inset:0;
  background:rgba(15,23,42,.55);
  backdrop-filter:blur(2px);
  z-index:1000;
  display:flex;align-items:center;justify-content:center;
  padding:40px 20px;
  overflow-y:auto;
  animation:scModalFade .2s ease;
}
.sc-modal-overlay[hidden]{display:none}
@keyframes scModalFade{from{opacity:0}to{opacity:1}}

.sc-modal-panel{
  position:relative;
  width:100%;max-width:520px;
  background:#fff;
  background-image:linear-gradient(180deg,#ffffff 0%,#fefbf3 100%);
  border-radius:18px;
  box-shadow:0 24px 72px rgba(0,0,0,.22),0 4px 12px rgba(0,0,0,.06);
  padding:32px 32px 28px;
  animation:scModalPop .25s cubic-bezier(.34,1.56,.64,1);
}
@keyframes scModalPop{
  from{opacity:0;transform:translateY(14px) scale(.97)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

.sc-modal__close{
  position:absolute;top:14px;right:14px;
  width:32px;height:32px;border-radius:50%;border:none;
  background:transparent;color:#9ca3af;font-size:1.4rem;line-height:1;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  transition:background 0.15s, color 0.15s;
}
.sc-modal__close:hover{background:#f3f4f6;color:#111}

.sc-modal__header{margin-bottom:22px;padding-right:32px}
.sc-modal__title{font-size:1.5rem;font-weight:800;letter-spacing:-0.02em;margin:0 0 6px;color:#111;line-height:1.2}
.sc-modal__sub{font-size:0.9rem;color:#6b7280;line-height:1.5;margin:0}

.sc-modal__form{display:flex;flex-direction:column;gap:14px}
.sc-form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.sc-form-field{display:flex;flex-direction:column;gap:6px}
.sc-form-field label{font-size:0.78rem;font-weight:700;color:#374151;letter-spacing:-0.01em}

.sc-input{
  width:100%;
  padding:13px 16px;
  border:2px solid var(--gray-200);
  border-radius:12px;
  font-size:0.95rem;
  font-family:inherit;
  font-weight:500;
  color:var(--black);
  background:#fff;
  background-image:linear-gradient(180deg,#ffffff 0%,#fefbf3 100%);
  box-shadow:0 1px 2px rgba(0,0,0,.03);
  transition:border-color 0.2s ease, box-shadow 0.2s ease;
}
.sc-input::placeholder{color:#a3a3a3;font-weight:500}
.sc-input:hover:not(:focus){border-color:#d1d5db}
.sc-input:focus{
  outline:none;
  border-color:var(--accent);
  background-image:linear-gradient(180deg,#ffffff 0%,#fff7e0 100%);
  box-shadow:0 0 0 4px rgba(244,186,62,.18), 0 2px 6px rgba(244,186,62,.12);
}

/* Quantity stepper */
.qty-stepper{
  display:inline-flex;align-items:stretch;
  background:#fff;
  background-image:linear-gradient(180deg,#ffffff 0%,#fefbf3 100%);
  border:2px solid var(--gray-200);
  border-radius:12px;
  overflow:hidden;
  width:fit-content;
  box-shadow:0 1px 2px rgba(0,0,0,.03);
  transition:border-color 0.2s ease, box-shadow 0.2s ease;
}
.qty-stepper:focus-within{
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(244,186,62,.18), 0 2px 6px rgba(244,186,62,.12);
}
.qty-stepper__btn{
  appearance:none;border:none;background:transparent;
  width:44px;height:44px;
  font-size:1.3rem;font-weight:700;line-height:1;
  color:#111;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background 0.15s, color 0.15s;
}
.qty-stepper__btn:hover{background:#fef9ec;color:var(--accent)}
.qty-stepper__btn:active{background:var(--accent);color:#000}
.qty-stepper__input{
  width:64px;
  border:none;background:transparent;
  font-family:inherit;font-size:1rem;font-weight:700;color:#111;
  text-align:center;
  padding:0;
  -moz-appearance:textfield;
}
.qty-stepper__input:focus{outline:none}
.qty-stepper__input::-webkit-inner-spin-button,
.qty-stepper__input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}

.sc-modal__actions{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-top:18px;padding-top:16px;border-top:1px solid var(--gray-200);flex-wrap:wrap}
.sc-modal__actions .btn{padding:12px 22px}
.sc-modal__total{display:flex;flex-direction:column;line-height:1.1}
.sc-modal__total-label{font-size:0.72rem;font-weight:700;color:#9ca3af;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:4px}
.sc-modal__total-value{font-size:1.6rem;font-weight:800;color:var(--accent);letter-spacing:-0.02em}
.sc-modal__buttons{display:flex;gap:10px}

.sc-modal__success{text-align:center;padding:14px 8px}
.sc-modal__success-icon{
  width:64px;height:64px;border-radius:50%;
  background:var(--accent);color:#000;
  display:flex;align-items:center;justify-content:center;
  font-size:2rem;font-weight:800;
  margin:0 auto 16px;
  box-shadow:0 8px 22px rgba(244,186,62,.4);
}
.sc-modal__success h3{font-size:1.4rem;font-weight:800;margin:0 0 8px;color:#111}
.sc-modal__success p{color:#6b7280;margin:0 0 22px;line-height:1.5}

@media(max-width:520px){
  .sc-modal-panel{padding:24px 20px}
  .sc-form-row{grid-template-columns:1fr}
  .sc-modal__actions{flex-direction:column;align-items:stretch}
  .sc-modal__buttons{justify-content:space-between}
  .sc-modal__buttons .btn{flex:1}
}

body.sc-modal-open{overflow:hidden}

/* ===== NEWS FEED ===== */
.news-feed{padding:48px 0 80px;background:#fff}
.news-feed__head{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:28px;flex-wrap:wrap}
.news-tabs{display:flex;flex-wrap:wrap;gap:8px}
.news-tab{
  appearance:none;border:1.5px solid var(--gray-200);background:#fff;
  font-family:inherit;font-size:0.85rem;font-weight:700;color:#374151;
  padding:8px 16px;border-radius:999px;cursor:pointer;
  transition:border-color 0.15s, background 0.15s, color 0.15s;
}
.news-tab:hover{border-color:var(--accent);color:#111}
.news-tab--active{background:var(--accent);border-color:var(--accent);color:#000}

.news-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:18px}
.news-status{grid-column:1/-1;text-align:center;color:#6b7280;padding:40px 0;font-size:0.95rem}
.news-status--note{color:#92400e;background:#fef9ec;border:1px solid #f4ba3e;border-radius:10px;padding:12px 16px}

.news-card{
  display:flex;flex-direction:column;gap:10px;
  background:#fff;border:1px solid #e5e7eb;border-radius:14px;
  padding:18px 20px;text-decoration:none;color:inherit;
  box-shadow:0 1px 3px rgba(0,0,0,.04);
  transition:transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.news-card:hover{transform:translateY(-3px);box-shadow:0 12px 26px rgba(0,0,0,.08);border-color:var(--accent)}
.news-card__top{display:flex;justify-content:space-between;align-items:center;gap:10px}
.news-card__cat{font-size:0.68rem;font-weight:800;text-transform:uppercase;letter-spacing:0.06em;padding:3px 9px;border-radius:999px}
.news-card__cat--solar{background:#fef9ec;color:#92400e}
.news-card__cat--battery{background:#d1fae5;color:#065f46}
.news-card__cat--ev{background:#dbeafe;color:#1e40af}
.news-card__time{font-size:0.74rem;color:#9ca3af;font-weight:600;white-space:nowrap}
.news-card__title{font-size:1.02rem;font-weight:800;letter-spacing:-0.01em;line-height:1.3;margin:0;color:#111}
.news-card__snippet{font-size:0.88rem;line-height:1.5;color:#6b7280;margin:0;flex:1}
.news-card__source{font-size:0.78rem;font-weight:700;color:#9ca3af;margin-top:auto}

@media(max-width:560px){.news-feed__head{flex-direction:column;align-items:flex-start}}

/* ===== BLOG STRIP (shared) ===== */
.sc-blog-strip{padding:48px 0;background:#fff}
.sc-blog-strip__heading{
  font-size:clamp(1.6rem, 2.2vw, 2.1rem);font-weight:800;letter-spacing:-0.02em;
  margin:0 0 8px;color:#111;line-height:1.1;
}
.sc-blog-strip__sub{font-size:1rem;color:#6b7280;max-width:680px;margin:0 0 28px;line-height:1.55}
.sc-blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:22px}

.sc-blog-card{
  display:flex;flex-direction:column;
  background:#fff;border:1px solid #e5e7eb;border-radius:14px;
  overflow:hidden;text-decoration:none;color:inherit;
  box-shadow:0 1px 3px rgba(0,0,0,.04);
  transition:transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sc-blog-card:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(0,0,0,.08);border-color:#f4ba3e}
.sc-blog-card__image-wrap{width:100%;height:180px;background:#f3f4f6;overflow:hidden}
.sc-blog-card__image-wrap--empty{background:linear-gradient(135deg,#fef9ec 0%,#f4ba3e 100%)}
.sc-blog-card__image-wrap img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.4s ease}
.sc-blog-card:hover .sc-blog-card__image-wrap img{transform:scale(1.04)}
.sc-blog-card__body{padding:18px 20px 22px;display:flex;flex-direction:column;flex:1;gap:8px}
.sc-blog-card__meta{font-size:0.72rem;font-weight:700;color:#9ca3af;text-transform:uppercase;letter-spacing:0.08em}
.sc-blog-card__title{font-size:1.05rem;font-weight:800;letter-spacing:-0.01em;line-height:1.25;margin:0;color:#111}
.sc-blog-card__summary{font-size:0.9rem;line-height:1.55;color:#6b7280;margin:0}

/* Single-post page */
.sc-post{padding:48px 0 80px;background:#fff}
.sc-post__container{max-width:760px;margin:0 auto;padding:0 24px}
.sc-post__back{display:inline-block;font-size:0.9rem;color:#6b7280;text-decoration:none;margin-bottom:24px;font-weight:600}
.sc-post__back:hover{color:#f4ba3e}
.sc-post__meta{font-size:0.78rem;font-weight:700;color:#9ca3af;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:14px}
.sc-post__title{font-size:clamp(1.8rem,4vw,2.6rem);font-weight:800;letter-spacing:-0.02em;line-height:1.1;margin:0 0 18px;color:#111}
.sc-post__summary{font-size:1.1rem;color:#374151;line-height:1.6;margin:0 0 28px}
.sc-post__image{width:100%;max-height:420px;object-fit:cover;border-radius:14px;margin-bottom:28px;display:block}
.sc-post__body{font-size:1rem;line-height:1.75;color:#374151;white-space:pre-wrap}
.sc-post__empty{text-align:center;padding:80px 20px;color:#6b7280}
.sc-post__inline-btn{display:inline-flex;margin:4px 0;vertical-align:middle}
/* Body markup rendered from admin toolbar tokens: **bold**, [lg], [xl], ## H2, ### H3. */
.sc-post__lg{font-size:1.18em;font-weight:600;color:#1f2937}
.sc-post__xl{font-size:1.4em;font-weight:700;color:#111}
.sc-post__h2{font-size:1.6rem;font-weight:800;color:#111;letter-spacing:-0.01em;line-height:1.25;margin:1.6em 0 0.5em;display:block}
.sc-post__h3{font-size:1.25rem;font-weight:700;color:#111;line-height:1.3;margin:1.35em 0 0.4em;display:block}
.sc-post__buttons{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px;padding-top:28px;border-top:1px solid #e5e7eb}

/* ===== EV CHARGER DETAIL PAGE ===== */
.product-detail{padding:48px 0 80px;background:#fff;min-height:60vh}
.product-detail__empty{text-align:center;padding:80px 20px;color:#6b7280}
.product-detail__empty h1{font-size:1.8rem;margin:0 0 10px;color:#111}
.product-detail__back{display:inline-block;font-size:0.9rem;color:#6b7280;text-decoration:none;margin-bottom:24px;font-weight:600;transition:color 0.15s}
.product-detail__back:hover{color:var(--accent)}
.product-detail__top{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.product-detail__image-wrap{
  width:100%;aspect-ratio:1/1;
  background:#f3f4f6;border-radius:16px;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.product-detail__image-wrap--empty::after{content:'Charger image';color:#9ca3af;font-style:italic;font-size:0.95rem}
.product-detail__image{width:100%;height:100%;object-fit:cover;display:block}
.product-detail__content{padding:8px 0}
.product-detail__manufacturer{font-size:0.85rem;font-weight:700;color:#9ca3af;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:8px}
.product-detail__title{font-size:2.5rem;font-weight:800;letter-spacing:-0.02em;line-height:1.05;margin:0 0 12px;color:#111}
.product-detail__price{font-size:2rem;font-weight:800;color:var(--accent);letter-spacing:-0.02em;line-height:1;margin-bottom:20px}
.product-detail__description{font-size:1rem;line-height:1.7;color:#374151;margin:0 0 28px}
.product-detail__content .btn{padding:14px 32px;font-size:1rem}

.product-detail__specs-section{margin-top:56px;padding-top:40px;border-top:1px solid #e5e7eb}
.product-detail__specs-heading{font-size:1.5rem;font-weight:800;letter-spacing:-0.01em;margin:0 0 24px;color:#111}
.product-detail__specs{display:grid;grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));gap:12px 32px}
.product-detail__spec{display:flex;justify-content:space-between;align-items:baseline;gap:16px;padding:14px 0;border-bottom:1px solid #e5e7eb;font-size:0.92rem}
.product-detail__spec-label{color:#6b7280;font-weight:500}
.product-detail__spec-value{color:#111;font-weight:700;text-align:right}

@media(max-width:760px){
  .product-detail__top{grid-template-columns:1fr;gap:28px}
  .product-detail__title{font-size:2rem}
  .product-detail__price{font-size:1.6rem}
}

/* ===== EV CHARGER CATALOG ===== */
.ev-catalog{padding:24px 0 80px;background:#fff}
.ev-catalog__header{text-align:center;margin-bottom:36px}
.ev-catalog__heading{font-size:2.25rem;font-weight:800;letter-spacing:-0.02em;line-height:1.1;margin:0 0 12px;color:#111}
.ev-catalog__sub{font-size:1rem;color:#6b7280;max-width:720px;margin:0 auto;line-height:1.6}
.ev-catalog__grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));gap:18px;max-width:1080px;margin:0 auto}
.ev-catalog__empty{text-align:center;color:#9ca3af;font-style:italic;padding:32px 0}

.ev-card{
  background:#fff;border:1px solid #e5e7eb;border-radius:14px;
  overflow:hidden;display:flex;flex-direction:column;
  box-shadow:0 1px 3px rgba(0,0,0,.04);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.ev-card:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(0,0,0,.08)}
.ev-card__link{
  display:flex;flex-direction:column;flex:1;
  text-decoration:none;color:inherit;cursor:pointer;
}
.ev-card__footer{
  padding:0 16px 16px;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.ev-card__buy{
  flex-shrink:0;
}
.ev-card__footer .ev-card__price{margin:0;line-height:1}
.ev-card__image-wrap{
  width:100%;aspect-ratio:1 / 1;
  background:#f3f4f6;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.ev-card__image-wrap--empty::after{
  content:'Charger image';color:#9ca3af;font-size:0.85rem;font-style:italic;
}
.ev-card__image{width:100%;height:100%;object-fit:contain;display:block;padding:14px;box-sizing:border-box}
.ev-card__body{padding:16px 16px 14px;display:flex;flex-direction:column;flex:1}
.ev-card__manufacturer{font-size:0.7rem;font-weight:700;color:#9ca3af;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:3px}
.ev-card__name{font-size:1.05rem;font-weight:800;letter-spacing:-0.01em;margin:0 0 12px;color:#111;line-height:1.2}
.ev-card__specs{display:flex;flex-direction:column;gap:6px;padding-bottom:14px;border-bottom:1px solid #e5e7eb;margin-bottom:12px;flex:1}
.ev-card__spec{display:flex;justify-content:space-between;align-items:baseline;gap:10px;font-size:0.8rem;line-height:1.35}
.ev-card__spec-label{color:#6b7280;font-weight:500;flex-shrink:0}
.ev-card__spec-value{color:#111;font-weight:600;text-align:right}
.ev-card__price{font-size:1.3rem;font-weight:800;color:var(--accent);letter-spacing:-0.02em;line-height:1}

@media(max-width:560px){
  .ev-catalog__heading{font-size:1.7rem}
}

/* ===== BATTERY COMPARISON ===== */
.battery-compare{padding:48px 0 72px;background:#fff}
.battery-cta{display:flex;justify-content:center;align-items:center;width:100%}
.battery-cta .cta-form-inline{justify-content:center}
.battery-cta .cta-form-inline input{width:200px}
@media(max-width:480px){
  .battery-cta .cta-form-inline{flex-direction:column;width:100%;max-width:320px}
  .battery-cta .cta-form-inline input{width:100%}
  .battery-cta .cta-form-inline .btn{width:100%;justify-content:center}
}
.battery-compare__header{text-align:center;margin-bottom:36px}
.battery-compare__heading{font-size:2.25rem;font-weight:800;letter-spacing:-0.02em;line-height:1.1;margin:0 0 12px;color:#111}
.battery-compare__sub{font-size:1rem;color:#6b7280;max-width:720px;margin:0 auto;line-height:1.6}
.battery-compare__grid{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.battery-card{
  background:#fff;border:1px solid #e5e7eb;border-radius:16px;
  overflow:hidden;display:flex;flex-direction:column;
  box-shadow:0 1px 3px rgba(0,0,0,.04);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.battery-card:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,.08)}
.battery-card__image-wrap{
  width:100%;height:280px;
  background:#f3f4f6;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.battery-card__image-wrap--empty::after{
  content:'Image coming soon';color:#9ca3af;font-size:0.9rem;font-style:italic;
}
.battery-card__image{width:100%;height:100%;object-fit:cover;display:block}
.battery-card__body{padding:28px 28px 32px;display:flex;flex-direction:column}
.battery-card__logo{height:28px;width:auto;object-fit:contain;align-self:flex-start;margin-bottom:14px}
.battery-card__title{font-size:1.5rem;font-weight:800;letter-spacing:-0.01em;margin:0 0 18px;color:#111}
.battery-card__specs{display:grid;grid-template-columns:1fr 1fr;gap:10px 18px;margin-bottom:22px;padding-bottom:22px;border-bottom:1px solid #e5e7eb}
.battery-card__specs > div{display:flex;flex-direction:column;gap:2px}
.battery-card__specs span{font-size:0.72rem;font-weight:700;color:#9ca3af;text-transform:uppercase;letter-spacing:0.06em}
.battery-card__specs strong{font-size:0.92rem;font-weight:700;color:#111}
.battery-card__pros{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.battery-card__pros li{font-size:0.92rem;color:#374151;line-height:1.5;padding-left:24px;position:relative}
.battery-card__pros li::before{
  content:'';position:absolute;left:0;top:7px;
  width:14px;height:14px;border-radius:50%;background:var(--accent);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 8.5l2.5 2.5L12 5.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position:center;background-repeat:no-repeat;background-size:11px;
}
@media(max-width:860px){
  .battery-compare__grid{grid-template-columns:1fr}
  .battery-compare__heading{font-size:1.7rem}
  .battery-card__image-wrap{height:240px}
}

/* ===== HOW MUCH DOES SOLAR COST ===== */
.solar-cost{
  padding:40px 0;
  background:#eef1f5;
}
.solar-cost__head{max-width:760px;margin:0 0 22px}
.solar-cost__heading{font-size:clamp(1.6rem,2.6vw,2.2rem);font-weight:800;letter-spacing:-0.02em;line-height:1.1;margin:0 0 10px;color:#111}
.solar-cost__intro{font-size:0.98rem;line-height:1.55;color:#4b5563;margin:0}
.solar-cost__cta{margin-top:24px;display:flex;justify-content:center}
/* All six cost cards on one row (higher specificity than .solar-benefit-grid) */
.solar-cost .solar-cost__grid{grid-template-columns:repeat(6, 1fr);gap:14px}
.solar-cost__grid .solar-benefit{
  padding:16px 14px;gap:8px;
  background:#fff;border:none;border-radius:12px;
}
.solar-cost__grid .solar-benefit{box-shadow:0 1px 3px rgba(0,0,0,.05)}
.solar-cost__grid .solar-benefit:hover{transform:translateY(-3px);box-shadow:0 12px 26px rgba(0,0,0,.10)}
.solar-cost__grid .solar-benefit__icon{width:40px;height:40px}
.solar-cost__grid .solar-benefit__title{font-size:0.92rem}
.solar-cost__grid .solar-benefit__text{font-size:0.78rem;line-height:1.4}
@media(max-width:1100px){.solar-cost .solar-cost__grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:680px){.solar-cost .solar-cost__grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:440px){.solar-cost .solar-cost__grid{grid-template-columns:1fr}}

/* ===== SOLAR BENEFITS ===== */
.solar-benefit-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:24px}
.solar-benefit{
  background:#fff;border:1px solid #e5e7eb;border-radius:16px;
  padding:28px 24px;display:flex;flex-direction:column;gap:12px;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.solar-benefit:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(0,0,0,.07)}
.solar-benefit__icon{
  width:52px;height:52px;border-radius:12px;
  background:#fef9ec;color:var(--accent);
  display:flex;align-items:center;justify-content:center;
}
.solar-benefit__title{font-size:1.15rem;font-weight:800;letter-spacing:-0.01em;margin:0;color:#111}
.solar-benefit__text{font-size:0.92rem;line-height:1.6;color:#6b7280;margin:0}

/* ===== NEM 3.0 BAND ===== */
.nem-band{
  width:100%;
  background:#fff;
  color:#111;
  padding:32px 0 64px;
}
.nem-band__inner{text-align:left}
.nem-band__title{
  font-size:2.25rem;font-weight:800;letter-spacing:-0.02em;line-height:1.1;
  margin:0 0 18px;color:#111;
}
.nem-band__title--second{
  margin-top:44px;
}
.nem-band__text{
  font-size:1.05rem;line-height:1.75;color:#374151;
  max-width:none;margin:0;
}
@media(max-width:768px){
  .nem-band{padding:48px 20px}
  .nem-band__title{font-size:1.6rem}
  .nem-band__text{font-size:0.95rem;line-height:1.65}
}

@media (max-width: 768px) {
  .cta-bar-inline {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .cta-bar-inline__text {
    text-align: center;
  }
  .cta-form-inline {
    width: 100%;
    max-width: 400px;
  }
  .cta-form-inline input {
    flex: 1;
    width: auto;
  }
}

/* Top-of-page blog title link (EV / battery pages) */
.blog-toplink{padding:18px 20px 4px;font-size:0.95rem;color:#6b7280}
.blog-toplink__label{font-weight:600;color:#374151}
.blog-toplink__link{color:#0369a1;font-weight:600;text-decoration:none}
.blog-toplink__link:hover{text-decoration:underline}
