
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
      color: #050D1A;
      padding-bottom: 0;
    }
    @media (max-width: 767px) {
      body { padding-bottom: 76px; } /* room for the mobile CTA bar */
    }
    a { text-decoration: none; }

    /* ── NAV ── */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: #050D1A; color: #fff;
      padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    }
    .nav-links { display: flex; gap: 24px; align-items: center; }
    .nav-links a { color: #CBD5E1; font-size: 14px; font-weight: 500; }
    .nav-links a:hover { color: #fff; }
    .nav-phone {
      background: #1565C0; color: #fff !important;
      padding: 8px 18px; border-radius: 6px;
      font-weight: 700 !important; font-size: 14px !important;
      white-space: nowrap;
    }

    /* ── MOBILE NAV (hamburger) ── */
    .nav-toggle {
      display: none;
      flex-direction: column; justify-content: center; gap: 5px;
      width: 44px; height: 44px; padding: 10px;   /* 44px = accessible tap target */
      background: none; border: 0; cursor: pointer;
    }
    .nav-toggle span {
      display: block; height: 2px; width: 100%; background: #fff;
      border-radius: 2px; transition: transform .22s ease, opacity .18s ease;
    }
    .nav-toggle:focus-visible { outline: 3px solid #1565C0; outline-offset: 2px; border-radius: 6px; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 900px) {
      .nav-toggle { display: inline-flex; }
      .nav-links {
        position: fixed; top: 64px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: #050D1A; padding: 8px 20px 24px;
        max-height: calc(100vh - 64px); overflow-y: auto;
        transform: translateY(-125%);
        /* visibility (not just transform) so the closed menu leaves the tab
           order and the accessibility tree instead of sitting off-screen and
           still being reachable by keyboard and screen readers. */
        visibility: hidden;
        transition: transform .26s cubic-bezier(.4,0,.2,1), visibility 0s linear .26s;
        box-shadow: 0 18px 40px rgba(0,0,0,.5);
        z-index: 150;
      }
      .nav-links[data-open="true"] {
        transform: translateY(0);
        visibility: visible;
        transition: transform .26s cubic-bezier(.4,0,.2,1), visibility 0s;
      }
      .nav-links a {
        display: block; padding: 15px 4px; font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,.08);
      }
      .nav-links a:focus-visible { outline: 3px solid #1565C0; outline-offset: -3px; border-radius: 6px; }
      .nav-phone { margin-top: 14px; text-align: center; border-bottom: 0 !important; }
    }
    @media (prefers-reduced-motion: reduce) {
      .nav-links, .nav-toggle span { transition: none !important; }
    }

    .hero-tagline {
      margin: 10px 0 0; font-size: 20px; font-weight: 600;
      color: #90CAF9; letter-spacing: .01em;
    }

    /* ── HERO ── */
    .hero {
      position: relative; overflow: hidden;
      color: #fff; padding: 80px 24px 100px; text-align: center;
      background: #050D1A;
    }
    .hero-video-bg {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      object-fit: cover; z-index: 0; opacity: 0.38;
    }
    .hero-overlay {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      background: linear-gradient(135deg, rgba(5,13,26,0.75) 0%, rgba(13,31,60,0.65) 60%, rgba(21,101,192,0.55) 100%);
      z-index: 1;
    }
    .hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
    .hero-logo { display: flex; justify-content: center; margin-bottom: 16px; }
    .hero-badge {
      display: inline-block;
      background: rgba(21,101,192,0.25);
      border: 1px solid #1565C0; border-radius: 20px;
      padding: 6px 18px; font-size: 13px; font-weight: 600;
      color: #90CAF9; margin-bottom: 24px; letter-spacing: 1px;
    }
    .hero h1 {
      font-size: clamp(28px, 4vw, 48px); font-weight: 900;
      line-height: 1.1; margin: 0 0 20px;
    }
    .hero h1 .accent { color: #00AEEF; }
    .hero p { font-size: 18px; color: #94A3B8; line-height: 1.6; margin-bottom: 36px; }
    .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: #1565C0; color: #fff;
      padding: 16px 36px; border-radius: 8px;
      font-size: 17px; font-weight: 800; display: inline-block;
    }
    .btn-primary:hover { background: #1251A3; }
    .btn-outline {
      background: transparent; color: #fff;
      padding: 16px 36px; border-radius: 8px;
      font-size: 17px; font-weight: 700; display: inline-block;
      border: 2px solid rgba(255,255,255,0.3);
    }
    .btn-outline:hover { border-color: rgba(255,255,255,0.6); }
    .trust-badges {
      margin-top: 48px; display: flex;
      gap: 32px; justify-content: center; flex-wrap: wrap;
    }
    .trust-badges span { font-size: 13px; color: #94A3B8; font-weight: 500; }

    /* ── ZIP CHECKER ── */
    .zip-bar { background: #1565C0; padding: 28px 24px; text-align: center; }
    .zip-bar p { color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 12px; }
    .zip-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
    #zipInput {
      padding: 12px 16px; border-radius: 6px; border: none;
      font-size: 16px; width: 160px; font-weight: 600; font-family: inherit;
    }
    .zip-check-btn {
      background: #050D1A; color: #fff;
      padding: 12px 24px; border: none; border-radius: 6px;
      font-weight: 700; font-size: 15px; cursor: pointer; font-family: inherit;
    }
    #zipResult { margin-top: 12px; font-size: 15px; font-weight: 600; color: #fff; }

    /* ── SERVICES ── */
    .services { padding: 80px 24px; background: #F8FAFC; }
    .section-center { max-width: 1100px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 52px; }
    .section-header h2 { font-size: 38px; font-weight: 900; margin-bottom: 12px; color: #050D1A; }
    .section-header p { color: #64748B; font-size: 17px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
    }
    .service-card {
      background: #fff; border-radius: 12px; padding: 28px 24px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.08);
      border: 1px solid #E2E8F0;
      transition: transform 0.15s, box-shadow 0.15s;
    }
    .service-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
    .service-card .svc-icon { font-size: 36px; margin-bottom: 12px; }
    .service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; color: #050D1A; }
    .service-card p { color: #64748B; font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
    .svc-footer { display: flex; justify-content: space-between; align-items: center; }
    .svc-price { color: #1565C0; font-weight: 700; font-size: 15px; }
    .btn-book {
      background: #1565C0; color: #fff;
      padding: 8px 16px; border-radius: 6px;
      font-size: 13px; font-weight: 700;
    }
    .btn-book:hover { background: #1251A3; }

    /* ── WHY US ── */
    .why { padding: 80px 24px; background: #fff; }
    .why-inner { max-width: 1000px; margin: 0 auto; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 32px; margin-top: 0;
    }
    .why-item { text-align: center; }
    .why-item .wicon { font-size: 40px; margin-bottom: 12px; }
    .why-item h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: #050D1A; }
    .why-item p { color: #64748B; font-size: 14px; line-height: 1.6; }

    /* ── SERVICE AREA ── */
    .service-area { padding: 80px 24px; background: #050D1A; color: #fff; }
    .area-inner { max-width: 800px; margin: 0 auto; text-align: center; }
    .area-inner h2 { font-size: 38px; font-weight: 900; margin-bottom: 12px; }
    .area-sub { color: #94A3B8; font-size: 17px; margin-bottom: 40px; }
    .city-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
    }
    .city-card {
      background: rgba(21,101,192,0.15);
      border: 1px solid rgba(21,101,192,0.4);
      border-radius: 10px; padding: 16px 12px; text-align: center;
    }
    .city-name { font-weight: 800; font-size: 17px; }
    .city-zip { color: #90A4AE; font-size: 13px; margin-top: 4px; }
    .area-note { color: #64748B; font-size: 14px; margin-top: 28px; }

    /* ── BEFORE/AFTER GALLERY ── */
    .gallery-section { padding: 80px 24px; background: #F8FAFC; }
    .gallery-section .section-header { text-align: center; margin-bottom: 48px; }
    .gallery-section .section-header h2 { font-size: clamp(24px,3vw,38px); font-weight: 900; color: #050D1A; margin-bottom: 12px; }
    .gallery-section .section-header p { font-size: 17px; color: #64748B; }
    /* Slider */
    .ba-slider-wrap { max-width: 860px; margin: 0 auto 60px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.14); }
    /* --- Google reviews (self-hosted, ~2KB, no third-party JS) --------- */
    .gg-trust{
      display:inline-flex; align-items:center; gap:8px; margin:0 0 24px;
      text-decoration:none; color:#fff;
      background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.22);
      padding:8px 16px; border-radius:999px; font-weight:600; font-size:15px; line-height:1;
    }
    .gg-trust:hover{ background:rgba(255,255,255,.16); }
    .gg-trust:focus-visible{ outline:3px solid #1E78DC; outline-offset:3px; }
    .gg-trust .stars{ color:#FFC107; letter-spacing:1px; font-size:16px; }
    .gg-trust .score{ font-weight:800; }
    .gg-trust .meta{ font-weight:500; opacity:.85; }
    .gg-review{
      margin:0 auto 44px; padding:22px 24px; max-width:640px;
      background:#F6F8FB; border-left:4px solid #1565C0; border-radius:8px; text-align:left;
    }
    .gg-review blockquote{ margin:0 0 14px; font-size:17px; line-height:1.6; color:#0F1B2E; }
    .gg-review figcaption{ display:flex; flex-wrap:wrap; align-items:baseline; gap:4px 10px; }
    .gg-review .who{ font-weight:800; color:#050D1A; font-size:15px; }
    .gg-review .src{ font-size:13px; color:#5A6B7F; }
    .gg-review--compact{ padding:16px 20px; margin-bottom:28px; }
    .gg-review--compact blockquote{ font-size:16px; margin-bottom:10px; }

    /* Phones get the poster only — no 1.7MB video download on cell data. */
    @media (max-width: 767px) {
      .hero-video-bg { display: none !important; }
      .hero { background-image: url("/images/hero-poster.webp");
              background-size: cover; background-position: center; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-video-bg { display: none !important; }
    }
    .ba-slider { position: relative; width: 100%; aspect-ratio: 16/9; user-select: none; cursor: ew-resize; }
    .ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
    .ba-after { clip-path: inset(0 50% 0 0); }
    .ba-divider { position: absolute; top: 0; left: 50%; width: 3px; height: 100%; background: #fff; z-index: 10; transform: translateX(-50%); pointer-events: none; }
    .ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; background: #fff; border-radius: 50%; box-shadow: 0 2px 12px rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center; z-index: 11; pointer-events: none; }
    .ba-handle::before { content: '◀ ▶'; font-size: 13px; color: #1565C0; font-weight: 900; letter-spacing: -2px; }
    .ba-label { position: absolute; bottom: 16px; padding: 5px 14px; border-radius: 20px; font-size: 13px; font-weight: 700; color: #fff; z-index: 12; }
    .ba-label-before { left: 16px; background: rgba(0,0,0,0.55); }
    .ba-label-after { right: 16px; background: rgba(21,101,192,0.85); }
    /* Results grid */
    .results-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
    .result-img { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.10); aspect-ratio: 4/3; }
    .result-img .tag {
      position: absolute; left: 10px; bottom: 10px; z-index: 2;
      font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 999px; color: #fff;
    }
    .result-img .tag-before { background: rgba(5,13,26,.82); }
    .result-img .tag-after  { background: #1565C0; }
    .result-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; display: block; }
    .result-img:hover img { transform: scale(1.04); }
    .gallery-cta { text-align: center; margin-top: 44px; }

    /* ── CONTACT FORM ── */
    .contact { padding: 80px 24px; background: #F8FAFC; }
    .contact-inner { max-width: 640px; margin: 0 auto; }
    .contact-inner .section-header { margin-bottom: 40px; }
    .form-card {
      background: #fff; border-radius: 12px; padding: 40px 32px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: #050D1A;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid #E2E8F0; border-radius: 7px;
      font-size: 15px; color: #050D1A; background: #FAFAFA;
      outline: none; font-family: inherit; transition: border 0.2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: #1565C0; background: #fff; }
    .form-group textarea { resize: vertical; }
    .sms-consent {
      background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 8px;
      padding: 12px; margin-bottom: 16px;
      font-size: 12px; color: #64748B; line-height: 1.7;
    }
    .sms-consent a { color: #1565C0; text-decoration: underline; }
    .btn-submit {
      width: 100%; background: #1565C0; color: #fff;
      padding: 16px; border: none; border-radius: 8px;
      font-size: 17px; font-weight: 800; cursor: pointer;
      letter-spacing: 0.3px; font-family: inherit;
      transition: background 0.15s;
    }
    .btn-submit:hover { background: #1251A3; }
    .form-note { text-align: center; color: #94A3B8; font-size: 13px; margin-top: 12px; }
    #formSuccess {
      background: #fff; border-radius: 12px; padding: 48px 32px;
      text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,0.08);
      border: 2px solid #1565C0; display: none;
    }
    #formSuccess .check { font-size: 56px; margin-bottom: 16px; }
    #formSuccess h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
    #formSuccess p { color: #64748B; font-size: 16px; margin-bottom: 20px; line-height: 1.6; }
    .btn-call-success {
      background: #1565C0; color: #fff;
      padding: 14px 28px; border-radius: 8px;
      font-weight: 700; font-size: 16px; display: inline-block;
    }

    /* ── FOOTER ── */
    .footer { background: #050D1A; color: #94A3B8; padding: 48px 24px 32px; }
    .footer-grid {
      max-width: 1000px; margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px; margin-bottom: 40px;
    }
    .footer h4 { color: #fff; font-weight: 700; margin-bottom: 12px; margin-top: 0; font-size: 15px; }
    .footer-svc { font-size: 14px; margin-bottom: 6px; }
    .footer-contact { font-size: 14px; line-height: 2.2; }
    .footer-contact a { color: #1565C0; }
    .footer-bottom {
      max-width: 1000px; margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px; text-align: center; font-size: 13px;
    }
    .footer-bottom a { color: #64748B; text-decoration: underline; }
    .powered { opacity: 0.5; font-size: 11px; margin-top: 6px; }

    /* ── MOBILE CTA ── */
    /* Mobile only. Previously this was fixed at every width, which parked it
       on top of the desktop ZIP checker. */
    .mobile-cta { display: none; }
    @media (max-width: 767px) {
      .mobile-cta {
        position: fixed; bottom: 0; left: 0; right: 0;
        background: #1565C0; padding: 12px 20px;
        display: flex; gap: 10px; justify-content: center;
        z-index: 200; box-shadow: 0 -2px 16px rgba(0,0,0,0.3);
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
      }
    }
    .mobile-cta a {
      flex: 1; max-width: 200px;
      padding: 12px; border-radius: 6px;
      text-align: center; font-weight: 800; font-size: 15px;
    }
    .gg-hp {
      position: absolute !important; left: -9999px !important; top: auto !important;
      width: 1px !important; height: 1px !important; overflow: hidden !important;
    }
    .cta-call { background: #fff; color: #050D1A; }
    .cta-estimate { background: #050D1A; color: #fff; }

    /* ── GHL CHAT WIDGET OFFSET ──
       The sticky bar measures 68px. 68 + 24px clearance = 92px.
       Selectors are broad on purpose: GHL renames these between releases. */
    @media (max-width: 767px) {
      chat-widget,
      #lc_text-widget,
      .lc_text-widget,
      div[id^="lc_"],
      iframe[src*="leadconnectorhq"],
      iframe[src*="msgsndr"] {
        bottom: 92px !important;
      }
    }

    /* ── STEP 2: INLINE BOOKING ── */
    /* The [hidden] attribute is only display:none in the UA sheet, so any
       class that sets display (like .gg-book__skeleton below) silently wins
       and the element never hides. This makes hidden actually mean hidden. */
    [hidden] { display: none !important; }

    .gg-book {
      margin-top: 24px; padding: 28px 22px 22px; background: #fff;
      border: 1px solid #E2E8F0; border-radius: 16px;
      box-shadow: 0 12px 40px rgba(5,13,26,.08);
      animation: ggBookIn .35s cubic-bezier(.2,.7,.3,1) both; text-align: left;
    }
    @keyframes ggBookIn { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform:none; } }
    .gg-book__head { margin-bottom: 18px; }
    .gg-book__step {
      display:inline-block; margin-bottom:10px; padding:4px 11px;
      font-size:11.5px; font-weight:800; letter-spacing:.09em; text-transform:uppercase;
      color:#1565C0; background:rgba(21,101,192,.10); border-radius:999px;
    }
    .gg-book__title { margin:0 0 6px; font-size:23px; line-height:1.25; color:#050D1A; }
    .gg-book__title:focus { outline:none; }
    .gg-book__title:focus-visible { outline:3px solid #1565C0; outline-offset:4px; border-radius:6px; }
    .gg-book__sub { margin:0; color:#64748B; font-size:15px; line-height:1.55; }
    .gg-book__skeleton { display:grid; gap:12px; padding:8px 0 4px; }
    .gg-book__sk {
      height:52px; border-radius:10px;
      background:linear-gradient(90deg,#eef1f5 25%,#f7f9fb 50%,#eef1f5 75%);
      background-size:200% 100%; animation:ggShimmer 1.3s linear infinite;
    }
    .gg-book__sk--short { width:62%; }
    @keyframes ggShimmer { to { background-position:-200% 0; } }
    .gg-book__frame iframe {
      width:100%; min-height:720px; border:0; overflow:hidden; display:block; border-radius:12px;
    }
    .gg-book__fallback {
      padding:18px; background:#FFF8E6; border:1px solid #F3D99B; border-radius:12px;
      font-size:15px; line-height:1.55; color:#050D1A;
    }
    .gg-book__call {
      display:inline-block; margin-top:12px; padding:13px 22px;
      background:#050D1A; color:#fff; font-weight:700; border-radius:10px;
    }
    .gg-book__skip { margin:16px 0 0; font-size:13.5px; color:#64748B; text-align:center; }
    @media (prefers-reduced-motion: reduce) {
      .gg-book { animation:none; }
      .gg-book__sk { animation:none; background:#eef1f5; }
    }

    /* ── WE'RE HIRING ── */
    .hiring {
      padding: 64px 24px;
      background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 60%, #388E3C 100%);
      color: #fff;
    }
    .hiring-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .hiring-badge {
      display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.4);
      border-radius: 20px; padding: 5px 16px; font-size: 12px; font-weight: 800;
      color: #fff; letter-spacing: 1.5px; margin-bottom: 14px; text-transform: uppercase;
    }
    .hiring h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
    .hiring-sub { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
    .roles-grid { display: flex; flex-direction: column; gap: 16px; }
    .role-card {
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      border-radius: 10px; padding: 20px 24px; display: flex; align-items: center; gap: 16px;
    }
    .role-icon { font-size: 32px; flex-shrink: 0; }
    .role-title { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
    .role-desc { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }
    .role-tag {
      margin-left: auto; background: rgba(255,255,255,0.2); border-radius: 6px;
      padding: 4px 10px; font-size: 12px; font-weight: 700; white-space: nowrap; flex-shrink: 0;
    }
    .btn-apply {
      display: inline-block; background: #fff; color: #1B5E20;
      padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 800;
      margin-top: 8px; transition: background 0.15s;
    }
    .btn-apply:hover { background: #F1F8E9; }
    @media (max-width: 768px) { .hiring-inner { grid-template-columns: 1fr; gap: 32px; } .role-tag { display: none; } }

    /* ── SOLAR SPOTLIGHT ── */
    .solar-spotlight {
      padding: 80px 24px;
      background: linear-gradient(135deg, #050D1A 0%, #0D1F3C 60%, #00337A 100%);
      color: #fff;
    }
    .solar-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .solar-badge {
      display: inline-block;
      background: rgba(0,174,239,0.15); border: 1px solid #00AEEF;
      border-radius: 20px; padding: 6px 16px; font-size: 12px; font-weight: 700;
      color: #00AEEF; letter-spacing: 1px; margin-bottom: 16px;
    }
    .solar-inner h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
    .solar-inner h2 span { color: #00AEEF; }
    .solar-inner .solar-sub { color: #94A3B8; font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
    .solar-stats { display: flex; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
    .solar-stat { text-align: center; }
    .solar-stat .stat-num { font-size: 36px; font-weight: 900; color: #00AEEF; line-height: 1; }
    .solar-stat .stat-label { font-size: 13px; color: #94A3B8; margin-top: 4px; max-width: 100px; line-height: 1.4; }
    .solar-checklist { list-style: none; margin-bottom: 32px; }
    .solar-checklist li { padding: 8px 0; font-size: 15px; color: #CBD5E1; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: flex-start; gap: 10px; }
    .solar-checklist li::before { content: '✓'; color: #00AEEF; font-weight: 900; flex-shrink: 0; margin-top: 1px; }
    .solar-visual {
      background: rgba(0,174,239,0.08); border: 1px solid rgba(0,174,239,0.25);
      border-radius: 16px; padding: 40px 32px; text-align: center;
    }
    .solar-panel-icon { font-size: 80px; margin-bottom: 24px; }
    .eff-bar-wrap { text-align: left; }
    .eff-label { font-size: 13px; color: #90A4AE; margin-bottom: 6px; display: flex; justify-content: space-between; }
    .eff-bar { height: 12px; background: rgba(255,255,255,0.1); border-radius: 6px; margin-bottom: 16px; overflow: hidden; }
    .eff-fill { height: 100%; border-radius: 6px; }
    .eff-dirty { background: #546E7A; width: 75%; }
    .eff-clean { background: linear-gradient(90deg, #1565C0, #00AEEF); width: 100%; }
    .eff-caption { font-size: 13px; color: #64748B; margin-top: 8px; font-style: italic; }
    @media (max-width: 768px) {
      .solar-inner { grid-template-columns: 1fr; gap: 40px; }
      .solar-stats { gap: 20px; }
    }

    /* ── FAQ SECTION ── */
    .faq-section { padding: 80px 24px; background: #fff; }
    .faq-inner { max-width: 820px; margin: 0 auto; }
    .faq-tabs { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; justify-content: center; }
    .faq-tab {
      padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 600; cursor: pointer; border: 2px solid #E2E8F0; background: #fff; color: #64748B; transition: all 0.15s; font-family: inherit;
    }
    .faq-tab.active, .faq-tab:hover { background: #1565C0; color: #fff; border-color: #1565C0; }
    .faq-group { display: none; }
    .faq-group.active { display: block; }
    .faq-item {
      border: 1px solid #E2E8F0; border-radius: 10px; margin-bottom: 12px; overflow: hidden;
    }
    .faq-q {
      width: 100%; background: none; border: none; padding: 18px 20px; text-align: left;
      font-size: 16px; font-weight: 700; color: #050D1A; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit;
    }
    .faq-q:hover { background: #F8FAFC; }
    .faq-q .faq-icon { font-size: 20px; color: #1565C0; flex-shrink: 0; transition: transform 0.2s; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-a { display: none; padding: 0 20px 18px; font-size: 15px; color: #475569; line-height: 1.7; border-top: 1px solid #F1F5F9; padding-top: 14px; }
    .faq-item.open .faq-a { display: block; }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      .form-row { grid-template-columns: 1fr; }
      .hero { padding: 60px 20px 80px; }
      .trust-badges { gap: 16px; }
    }
  