/* ─── Design Tokens ─────────────────────────────────────────── */
    :root {
      --green:         #16a34a;
      --green-dark:    #15803d;
      --green-darker:  #166534;
      --green-light:   #dcfce7;
      --green-pale:    #f0fdf4;
      --orange:        #f97316;
      --orange-dark:   #ea580c;
      --orange-light:  #fff7ed;
      --white:         #ffffff;
      --bg:            #ffffff;
      --surface:       #f9fafb;
      --muted:         #f3f4f6;
      --border:        #e5e7eb;
      --text:          #111827;
      --text-muted:    #6b7280;
      --text-light:    #9ca3af;

      --radius-sm:     8px;
      --radius-md:     12px;
      --radius-lg:     16px;
      --radius-xl:     24px;
      --radius-full:   9999px;

      --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
      --shadow-md:     0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
      --shadow-lg:     0 8px 32px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
      --shadow-xl:     0 16px 48px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.06);

      --font-head:     'Rubik', sans-serif;
      --font-body:     'Nunito Sans', sans-serif;

      --banner-h:      44px;
      --nav-h:         120px;
    }

    /* ─── Reset ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--text);
      background: var(--bg);
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }
    input, select { font-family: var(--font-body); font-size: 1rem; }
    ul { list-style: none; }

    /* ─── Utility ────────────────────────────────────────────────── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--green);
      color: #fff;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 28px;
      border-radius: var(--radius-full);
      border: 2px solid var(--green);
      cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      white-space: nowrap;
    }
    .btn-primary:hover {
      background: var(--green-dark);
      border-color: var(--green-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(22,163,74,.35);
    }
    .btn-primary:active { transform: translateY(0); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: transparent;
      color: var(--green);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1rem;
      padding: 13px 28px;
      border-radius: var(--radius-full);
      border: 2px solid var(--green);
      cursor: pointer;
      transition: all .2s;
    }
    .btn-outline:hover {
      background: var(--green-pale);
    }

    .section-label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 800;
      color: var(--text);
      line-height: 1.2;
    }
    .section-sub {
      font-size: 1.1rem;
      color: var(--text-muted);
      max-width: 56ch;
      line-height: 1.7;
    }
    .stars {
      color: #f59e0b;
      font-size: 1rem;
      letter-spacing: .05em;
    }

    /* ─── Urgency Banner ─────────────────────────────────────────── */
    #urgency-banner {
      background: var(--green);
      color: #fff;
      height: var(--banner-h);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .875rem;
      font-weight: 600;
      position: relative;
      z-index: 100;
    }
    #urgency-banner .banner-inner {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    #urgency-banner .banner-bolt {
      width: 18px;
      height: 18px;
      fill: #fef08a;
      flex-shrink: 0;
    }
    #urgency-banner .banner-close {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255,255,255,.8);
      cursor: pointer;
      font-size: 1.1rem;
      line-height: 1;
      padding: 4px;
      transition: color .15s;
    }
    #urgency-banner .banner-close:hover { color: #fff; }
    #urgency-banner.hidden { display: none; }

    /* ─── Navbar ─────────────────────────────────────────────────── */
    #navbar {
      position: sticky;
      top: 0;
      height: var(--nav-h);
      overflow: hidden;
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      z-index: 99;
      transition: box-shadow .2s;
    }
    #navbar.scrolled {
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .nav-logo img {
      height: 110px;
      width: auto;
      display: block;
    }
    /* keep fallback text hidden */
    .nav-logo-text { display: none; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-links a {
      font-size: .9rem;
      font-weight: 600;
      color: var(--text-muted);
      transition: color .15s;
    }
    .nav-links a:hover { color: var(--green); }

    .nav-link-pulse {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .pulse-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--green);
      border-radius: 50%;
      flex-shrink: 0;
      animation: pulse-ring 1.8s ease-in-out infinite;
    }
    @keyframes pulse-ring {
      0%   { box-shadow: 0 0 0 0 rgba(22,163,74,.6); transform: scale(1); }
      50%  { box-shadow: 0 0 0 6px rgba(22,163,74,0); transform: scale(1.15); }
      100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); transform: scale(1); }
    }
    .nav-cta { display: flex; align-items: center; gap: 12px; }
    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      margin: 5px 0;
      transition: all .2s;
    }

    /* Mobile nav */
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      padding: 20px 24px;
      z-index: 98;
      flex-direction: column;
      gap: 16px;
      box-shadow: var(--shadow-lg);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-weight: 600;
      color: var(--text);
      font-size: 1rem;
      padding: 8px 0;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu a:last-child { border-bottom: none; }

    /* ─── Hero ───────────────────────────────────────────────────── */
    #hero {
      padding: 72px 0 80px;
      background: linear-gradient(135deg, #f0fdf4 0%, #fff 50%, #fff7ed 100%);
      position: relative;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(22,163,74,.07) 0%, transparent 70%);
      pointer-events: none;
    }
    #hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(249,115,22,.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 32px;
      align-items: center;
    }
    .hero-overline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: var(--radius-full);
      margin-bottom: 20px;
    }
    .hero-overline svg { width: 14px; height: 14px; }
    .hero-h1 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 5vw, 3.25rem);
      font-weight: 800;
      line-height: 1.1;
      color: var(--text);
      margin-bottom: 8px;
      letter-spacing: -.02em;
    }
    .hero-h2 {
      font-family: var(--font-head);
      font-size: clamp(1.5rem, 4vw, 2.25rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--green);
      margin-bottom: 20px;
      letter-spacing: -.01em;
    }
    .hero-sub {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }
    .hero-body {
      font-size: 1rem;
      color: var(--text-muted);
      margin-bottom: 32px;
      line-height: 1.7;
    }

    /* Lead Form */
    .lead-form {
      background: #fff;
      border-radius: var(--radius-xl);
      padding: 28px;
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--border);
      margin-bottom: 28px;
    }
    .lead-form-title {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .lead-form-title svg { color: var(--green); }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 14px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group label {
      font-size: .8rem;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .form-group input,
    .form-group select {
      height: 48px;
      padding: 0 14px;
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      font-size: .95rem;
      color: var(--text);
      background: #fff;
      transition: border-color .2s, box-shadow .2s;
      appearance: none;
      -webkit-appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(22,163,74,.12);
    }
    .select-wrap {
      position: relative;
    }
    .select-wrap::after {
      content: '';
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-top-color: var(--text-muted);
      pointer-events: none;
    }
    .form-submit {
      width: 100%;
      height: 54px;
      background: var(--green);
      color: #fff;
      font-size: 1.05rem;
      font-weight: 700;
      border-radius: var(--radius-md);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .2s, transform .15s, box-shadow .2s;
      margin-top: 6px;
    }
    .form-submit:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(22,163,74,.4);
    }
    .form-submit:active { transform: translateY(0); }
    .form-note {
      text-align: center;
      font-size: .78rem;
      color: var(--text-light);
      margin-top: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 24px;
      background: var(--green-pale);
      border-radius: var(--radius-md);
      color: var(--green-dark);
    }
    .form-success svg { width: 40px; height: 40px; margin: 0 auto 12px; display: block; }
    .form-success h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin-bottom: 6px; }
    .form-success p { font-size: .9rem; color: var(--green); }

    /* Trust badges */
    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
    }
    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-full);
      padding: 7px 14px;
      font-size: .82rem;
      font-weight: 700;
      color: var(--text);
      box-shadow: var(--shadow-sm);
    }
    .trust-badge svg { color: var(--green); flex-shrink: 0; }

    /* Hero rating */
    .hero-rating {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .875rem;
    }
    .hero-rating .stars { font-size: 1.1rem; }
    .hero-rating strong { font-weight: 700; color: var(--text); }
    .hero-rating span { color: var(--text-muted); }

    /* Hero checkmark bullets */
    .hero-bullets {
      list-style: none;
      margin-bottom: 28px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .hero-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .97rem;
      color: var(--text);
      line-height: 1.5;
    }
    .hero-bullets li svg {
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--green);
    }

    /* Hero visual */
    .hero-visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-img {
      width: 140%;
      max-width: 140%;
      margin-left: -20%;
      margin-right: -20%;
      margin-top: -60px;
      height: auto;
      object-fit: contain;
      display: block;
      border: none;
      outline: none;
      box-shadow: none;
      background: transparent;
      -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 38%, black 80%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
      -webkit-mask-composite: destination-in;
      mask-image:
        linear-gradient(to right, transparent 0%, black 38%, black 80%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 6%, black 94%, transparent 100%);
      mask-composite: intersect;
    }

    /* Hero visual – comparison card (unused, kept for reference) */
    .hero-visual-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .compare-card {
      background: #fff;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .compare-card-header {
      background: linear-gradient(135deg, var(--green-darker), var(--green));
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .compare-card-header-left h3 {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255,255,255,.85);
      margin-bottom: 2px;
    }
    .compare-saving-big {
      font-family: var(--font-head);
      font-size: 2rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }
    .compare-saving-big span {
      font-size: .9rem;
      font-weight: 600;
      opacity: .8;
    }
    .compare-card-header-right {
      background: rgba(255,255,255,.15);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: var(--radius-md);
      padding: 8px 14px;
      text-align: center;
    }
    .compare-card-header-right .val {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 800;
      color: #fff;
    }
    .compare-card-header-right .lbl {
      font-size: .7rem;
      color: rgba(255,255,255,.75);
      font-weight: 600;
    }

    /* Tariff rows */
    .compare-list {
      padding: 8px 0;
    }
    .compare-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 20px;
      border-bottom: 1px solid var(--border);
      gap: 12px;
      transition: background .15s;
    }
    .compare-row:last-child { border-bottom: none; }
    .compare-row:hover { background: var(--surface); }
    .compare-row.best {
      background: var(--green-pale);
      border-left: 3px solid var(--green);
    }
    .compare-row-left {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      min-width: 0;
    }
    .provider-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .compare-provider-name {
      font-weight: 700;
      font-size: .9rem;
      color: var(--text);
      white-space: nowrap;
    }
    .compare-provider-tag {
      font-size: .72rem;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: var(--radius-full);
      background: var(--green-light);
      color: var(--green-dark);
    }
    .compare-row-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      flex-shrink: 0;
    }
    .compare-price {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 800;
      color: var(--text);
    }
    .compare-price-sub {
      font-size: .72rem;
      color: var(--text-muted);
    }
    .compare-price.green { color: var(--green); }
    .compare-cta-row {
      padding: 14px 20px;
      background: var(--surface);
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .compare-cta-text {
      font-size: .82rem;
      color: var(--text-muted);
    }
    .compare-cta-text strong { color: var(--green); }
    .compare-mini-btn {
      background: var(--green);
      color: #fff;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: .82rem;
      padding: 8px 16px;
      border-radius: var(--radius-full);
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background .15s;
    }
    .compare-mini-btn:hover { background: var(--green-dark); }

    /* Providers strip (standalone full-width) */
    #providers-strip {
      padding: 28px 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
    }
    .providers-strip-inner {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .providers-label {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--text-muted);
      white-space: nowrap;
      flex-shrink: 0;
    }
    .providers-list {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .provider-chip {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 8px 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: box-shadow .15s, border-color .15s;
    }
    .provider-chip:hover {
      border-color: var(--green);
      box-shadow: 0 2px 8px rgba(22,163,74,.12);
    }
    .provider-logo {
      height: 52px;
      width: auto;
      max-width: 140px;
      object-fit: contain;
      display: block;
    }
    .provider-chip:hover {
      background: var(--green-light);
      border-color: var(--green);
      color: var(--green-dark);
    }
    .provider-chip.featured {
      background: var(--green-light);
      border-color: var(--green);
      color: var(--green-dark);
    }

    /* ─── Trust Bar ──────────────────────────────────────────────── */
    #trust-bar {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 24px 0;
    }
    .trust-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .trust-metric {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 40px;
      border-right: 1px solid var(--border);
    }
    .trust-metric:last-child { border-right: none; }
    .trust-metric-icon {
      width: 40px;
      height: 40px;
      background: var(--green-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--green);
    }
    .trust-metric-value {
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1;
    }
    .trust-metric-label {
      font-size: .8rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* ─── Benefits ───────────────────────────────────────────────── */
    #benefits {
      padding: 96px 0;
      background: #fff;
    }
    .benefits-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .benefit-card {
      background: var(--surface);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      border: 1.5px solid var(--border);
      transition: transform .2s, box-shadow .2s, border-color .2s;
      position: relative;
      overflow: hidden;
    }
    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--green);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
    }
    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--green);
    }
    .benefit-card:hover::before { transform: scaleX(1); }
    .benefit-icon {
      width: 52px;
      height: 52px;
      background: var(--green-light);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      margin-bottom: 20px;
    }
    .benefit-title {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
    }
    .benefit-desc {
      font-size: .9rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ─── How It Works ───────────────────────────────────────────── */
    #how-it-works {
      padding: 96px 0;
      background: var(--green-pale);
    }
    .hiw-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(16.66% + 28px);
      right: calc(16.66% + 28px);
      height: 2px;
      background: linear-gradient(90deg, var(--green) 0%, var(--green) 100%);
      background-image: repeating-linear-gradient(90deg, var(--green) 0, var(--green) 8px, transparent 8px, transparent 16px);
    }
    .step-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      box-shadow: var(--shadow-md);
      border: 1.5px solid var(--border);
      text-align: center;
      position: relative;
    }
    .step-number {
      width: 56px;
      height: 56px;
      background: var(--green);
      color: #fff;
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      box-shadow: 0 4px 16px rgba(22,163,74,.3);
      position: relative;
      z-index: 1;
    }
    .step-title {
      font-family: var(--font-head);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
    }
    .step-desc {
      font-size: .9rem;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .step-icon {
      width: 48px;
      height: 48px;
      background: var(--green-light);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      margin: 20px auto 0;
    }

    /* ─── Testimonials ───────────────────────────────────────────── */
    #testimonials {
      padding: 96px 0;
      background: #fff;
    }
    .testimonials-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--surface);
      border-radius: var(--radius-lg);
      padding: 32px;
      border: 1.5px solid var(--border);
      transition: transform .2s, box-shadow .2s;
      position: relative;
    }
    .testimonial-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }
    .testimonial-quote {
      position: absolute;
      top: 20px;
      right: 24px;
      font-size: 4rem;
      font-family: Georgia, serif;
      color: var(--green-light);
      line-height: 1;
    }
    .testimonial-stars { margin-bottom: 16px; }
    .testimonial-text {
      font-size: .95rem;
      color: var(--text);
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }
    .testimonial-savings {
      display: inline-block;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: .8rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      margin-bottom: 20px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .author-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1rem;
      color: #fff;
      flex-shrink: 0;
    }
    .author-name {
      font-weight: 700;
      font-size: .9rem;
      color: var(--text);
    }
    .author-location {
      font-size: .8rem;
      color: var(--text-muted);
    }

    /* ─── Mid CTA ────────────────────────────────────────────────── */
    #mid-cta {
      padding: 80px 0;
      background: var(--green-darker);
      position: relative;
      overflow: hidden;
    }
    #mid-cta::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
    }
    #mid-cta::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
    }
    .mid-cta-inner {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .mid-cta-eyebrow {
      display: inline-block;
      background: rgba(255,255,255,.15);
      color: #fff;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: var(--radius-full);
      margin-bottom: 20px;
    }
    .mid-cta-title {
      font-family: var(--font-head);
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
      letter-spacing: -.02em;
    }
    .mid-cta-sub {
      font-size: 1.1rem;
      color: rgba(255,255,255,.8);
      margin-bottom: 36px;
    }
    .mid-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--green-dark);
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 1.05rem;
      padding: 16px 36px;
      border-radius: var(--radius-full);
      border: none;
      cursor: pointer;
      transition: transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(0,0,0,.2);
    }
    .mid-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,0,0,.25);
    }

    /* ─── FAQ ────────────────────────────────────────────────────── */
    #faq {
      padding: 96px 0;
      background: var(--surface);
    }
    .faq-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: #fff;
      border-radius: var(--radius-md);
      border: 1.5px solid var(--border);
      overflow: hidden;
      transition: border-color .2s;
    }
    .faq-item.open { border-color: var(--green); }
    .faq-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      background: none;
      border: none;
      text-align: left;
      cursor: pointer;
      gap: 16px;
    }
    .faq-question {
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 1rem;
      color: var(--text);
      line-height: 1.4;
    }
    .faq-chevron {
      width: 24px;
      height: 24px;
      background: var(--muted);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .2s, transform .25s;
      color: var(--text-muted);
    }
    .faq-item.open .faq-chevron {
      background: var(--green-light);
      color: var(--green);
      transform: rotate(180deg);
    }
    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
    }
    .faq-body-inner {
      padding: 0 24px 20px;
      font-size: .95rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ─── Final CTA ──────────────────────────────────────────────── */
    #final-cta {
      padding: 96px 0;
      background: linear-gradient(135deg, var(--green-pale) 0%, #fff 100%);
      border-top: 1px solid var(--border);
    }
    .final-cta-inner {
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }
    .final-cta-title {
      font-family: var(--font-head);
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 800;
      color: var(--text);
      margin-bottom: 16px;
      letter-spacing: -.02em;
    }
    .final-cta-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      margin-bottom: 36px;
    }
    .final-form {
      display: flex;
      gap: 10px;
      max-width: 480px;
      margin: 0 auto 24px;
    }
    .final-form input {
      flex: 1;
      height: 54px;
      padding: 0 16px;
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      font-size: .95rem;
      transition: border-color .2s;
    }
    .final-form input:focus {
      outline: none;
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(22,163,74,.12);
    }
    .final-form button {
      height: 54px;
      padding: 0 24px;
      background: var(--green);
      color: #fff;
      font-weight: 700;
      border-radius: var(--radius-md);
      border: none;
      cursor: pointer;
      font-family: var(--font-body);
      font-size: .95rem;
      white-space: nowrap;
      transition: background .2s, transform .15s;
    }
    .final-form button:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }
    .trust-badges-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    .mini-badge {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .78rem;
      font-weight: 600;
      color: var(--text-muted);
    }
    .mini-badge svg { color: var(--green); }

    /* ─── Hero CTA ───────────────────────────────────────────────── */
    .hero-cta-wrap { margin-bottom: 28px; }
    .btn-large { font-size: 1.1rem; padding: 16px 36px; }
    .hero-cta-note {
      margin-top: 12px;
      font-size: .8rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .hero-cta-note svg { color: var(--green); flex-shrink: 0; }

    /* ─── Modal ───────────────────────────────────────────────────── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.55);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s ease;
    }
    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }
    .modal {
      background: #fff;
      border-radius: var(--radius-xl);
      width: 100%;
      max-width: 540px;
      box-shadow: 0 24px 80px rgba(0,0,0,.2);
      overflow: hidden;
      transform: translateY(24px) scale(.97);
      transition: transform .3s ease;
    }
    .modal-overlay.active .modal {
      transform: translateY(0) scale(1);
    }

    /* Modal header */
    .modal-header {
      background: linear-gradient(135deg, var(--green-darker), var(--green));
      padding: 20px 24px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .modal-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1rem;
      color: #fff;
    }
    .modal-close {
      background: rgba(255,255,255,.2);
      border: none;
      color: #fff;
      width: 32px; height: 32px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s;
      flex-shrink: 0;
    }
    .modal-close:hover { background: rgba(255,255,255,.35); }

    /* Progress */
    .modal-progress-wrap {
      padding: 0 24px;
      background: linear-gradient(135deg, var(--green-darker), var(--green));
      padding-bottom: 20px;
    }
    .modal-step-info {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .modal-step-text {
      font-size: .78rem;
      font-weight: 600;
      color: rgba(255,255,255,.85);
    }
    .modal-step-count {
      font-size: .78rem;
      font-weight: 700;
      color: rgba(255,255,255,.75);
    }
    .modal-progress-bar {
      height: 5px;
      background: rgba(255,255,255,.25);
      border-radius: var(--radius-full);
      overflow: hidden;
    }
    .modal-progress-fill {
      height: 100%;
      background: #fff;
      border-radius: var(--radius-full);
      transition: width .4s ease;
    }

    /* Modal body */
    .modal-body {
      padding: 28px 24px 24px;
      min-height: 280px;
    }
    .modal-question-title {
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .modal-question-sub {
      font-size: .9rem;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    /* Choice options */
    .modal-choices {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .modal-choices.grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .modal-choice {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      cursor: pointer;
      transition: border-color .15s, background .15s;
      background: #fff;
      text-align: left;
      font-family: var(--font-body);
    }
    .modal-choice:hover {
      border-color: var(--green);
      background: var(--green-pale);
    }
    .modal-choice.selected {
      border-color: var(--green);
      background: var(--green-pale);
    }
    .modal-choice-icon {
      width: 40px; height: 40px;
      border-radius: var(--radius-md);
      background: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
      transition: background .15s;
    }
    .modal-choice.selected .modal-choice-icon {
      background: var(--green-light);
    }
    .modal-choice-text strong {
      display: block;
      font-weight: 700;
      font-size: .95rem;
      color: var(--text);
    }
    .modal-choice-text span {
      font-size: .8rem;
      color: var(--text-muted);
    }
    .modal-choice-check {
      margin-left: auto;
      width: 20px; height: 20px;
      border: 2px solid var(--border);
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .15s;
    }
    .modal-choice.selected .modal-choice-check {
      background: var(--green);
      border-color: var(--green);
    }
    .modal-choice.selected .modal-choice-check::after {
      content: '';
      width: 5px; height: 9px;
      border: 2px solid #fff;
      border-top: none;
      border-left: none;
      transform: rotate(45deg) translateY(-1px);
      display: block;
    }

    /* Text input step */
    .modal-input-wrap { display: flex; flex-direction: column; gap: 8px; }
    .modal-input-wrap label {
      font-size: .8rem;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .modal-input {
      height: 52px;
      padding: 0 16px;
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      font-size: 1rem;
      font-family: var(--font-body);
      color: var(--text);
      transition: border-color .2s, box-shadow .2s;
    }
    .modal-input:focus {
      outline: none;
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(22,163,74,.12);
    }

    /* Modal footer */
    .modal-footer {
      padding: 16px 24px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-top: 1px solid var(--border);
    }
    .modal-btn-back {
      background: none;
      border: 2px solid var(--border);
      color: var(--text-muted);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: .9rem;
      padding: 11px 20px;
      border-radius: var(--radius-full);
      cursor: pointer;
      transition: all .15s;
    }
    .modal-btn-back:hover { border-color: var(--text-muted); color: var(--text); }
    .modal-btn-back:disabled { opacity: .3; cursor: default; }
    .modal-btn-next {
      background: var(--green);
      color: #fff;
      border: none;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: .95rem;
      padding: 13px 28px;
      border-radius: var(--radius-full);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background .15s, transform .15s;
      margin-left: auto;
    }
    .modal-btn-next:hover { background: var(--green-dark); transform: translateY(-1px); }
    .modal-btn-next:disabled { background: var(--border); color: var(--text-muted); cursor: default; transform: none; }

    /* Success screen */
    .modal-success {
      display: none;
      text-align: center;
      padding: 40px 24px;
    }
    .modal-success-icon {
      width: 64px; height: 64px;
      background: var(--green-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--green);
    }
    .modal-success h3 {
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 10px;
    }
    .modal-success p {
      font-size: .95rem;
      color: var(--text-muted);
      line-height: 1.6;
      max-width: 36ch;
      margin: 0 auto;
    }

    @media (max-width: 480px) {
      .modal-choices.grid-2 { grid-template-columns: 1fr; }
      .modal { border-radius: var(--radius-lg) var(--radius-lg) 0 0; align-self: flex-end; max-width: 100%; }
      .modal-overlay { align-items: flex-end; padding: 0; }
    }

    /* ─── Footer ─────────────────────────────────────────────────── */
    footer {
      background: var(--text);
      color: rgba(255,255,255,.7);
      padding: 48px 0 32px;
    }
    .footer-inner {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .footer-brand .nav-logo-text {
      color: #fff;
      font-size: 1.2rem;
    }
    .footer-brand .nav-logo-text span { color: #86efac; }
    .footer-tagline {
      font-size: .85rem;
      margin-top: 8px;
      color: rgba(255,255,255,.5);
    }
    .footer-dsgvo {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,.08);
      color: #86efac;
      font-size: .75rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      margin-top: 12px;
      border: 1px solid rgba(134,239,172,.25);
    }
    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: rgba(255,255,255,.6);
      font-size: .875rem;
      font-weight: 500;
      transition: color .15s;
    }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: .8rem; }

    /* ─── Fox SVG (shared) ───────────────────────────────────────── */
    .fox-svg-wrap { display: flex; align-items: center; }

    /* ─── Responsive ─────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      :root { --nav-h: 64px; --banner-h: 52px; }
      .nav-links, .nav-cta .btn-primary { display: none; }
      .nav-hamburger { display: block; }
      .nav-logo img { height: 62px; }
      #hero { background: #fff; padding-top: 0; }
      .hero-grid { grid-template-columns: 1fr; gap: 24px; }
      .hero-visual { order: -1; margin: 0 -24px 0; }
      .hero-img { width: 100%; max-width: 100%; height: 240px; object-fit: cover; object-position: center 30%; margin: 0; -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%); mask-image: linear-gradient(to bottom, black 50%, transparent 100%); }
      .steps-grid { grid-template-columns: 1fr; gap: 24px; }
      .steps-grid::before { display: none; }
      .benefits-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .trust-bar-inner { gap: 0; flex-direction: column; }
      .trust-metric { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 24px; width: 100%; }
      .trust-metric:last-child { border-bottom: none; }
      .final-form { flex-direction: column; }
      .footer-inner { flex-direction: column; gap: 24px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      #urgency-banner { font-size: .78rem; height: auto; min-height: var(--banner-h); padding: 8px 40px 8px 16px; text-align: center; }
    }

    @media (max-width: 480px) {
      #hero { padding: 0 0 56px; background: #fff; }
      #benefits, #how-it-works, #testimonials, #faq, #final-cta { padding: 64px 0; }
      .trust-badges { gap: 8px; }
    }

    /* ─── Animations ─────────────────────────────────────────────── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-in-up {
      animation: fadeInUp .6s ease both;
    }
    .fade-in-up:nth-child(2) { animation-delay: .1s; }
    .fade-in-up:nth-child(3) { animation-delay: .2s; }
    .fade-in-up:nth-child(4) { animation-delay: .3s; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
    }
