
    /* ============================================
       BRAND TOKENS
    ============================================ */
    :root {
      --dark:         #13544E;
      --heading:      #095D40;
      --accent:       #6C9A40;
      --cta:          #008060;
      --lime:         #D3E162;
      --lime-light:   #E4F577;
      --bg:           #FBF7ED;
      --bg-alt:       #E0EDD4;
      --navy:         #212B36;
      --muted:        #637381;
      --white:        #FFFFFF;
      --warning:      #f59e0b;
      --success:      #22c55e;
      --shadow-sm:    0 2px 12px rgba(0,0,0,0.07);
      --shadow-md:    0 8px 32px rgba(0,0,0,0.11);
      --shadow-lg:    0 20px 60px rgba(0,0,0,0.15);
      --r-sm:         8px;
      --r-md:         16px;
      --r-lg:         24px;
      --font-body:    'Inter', sans-serif;
      --font-display: 'Nunito', sans-serif;
      --ease:         all 0.3s cubic-bezier(0.4,0,0.2,1);
    }

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

    .container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .container-sm { max-width: 760px;  margin: 0 auto; padding: 0 24px; }

    /* ============================================
       BUTTONS
    ============================================ */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: var(--r-sm);
      font-weight: 700; font-size: 15px; font-family: var(--font-body);
      transition: var(--ease); white-space: nowrap; cursor: pointer; border: none;
    }
    .btn--primary  { background: var(--cta); color: var(--white); }
    .btn--primary:hover { background: var(--heading); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,128,96,0.35); }
    .btn--lime     { background: var(--lime); color: var(--heading); }
    .btn--lime:hover { background: var(--lime-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(211,225,98,0.4); }
    .btn--outline  { background: transparent; color: var(--cta); border: 2px solid var(--cta); }
    .btn--outline:hover { background: var(--cta); color: var(--white); transform: translateY(-2px); }
    .btn--ghost    { background: rgba(255,255,255,0.12); color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
    .btn--ghost:hover { background: rgba(255,255,255,0.22); }
    .btn--lg { padding: 18px 38px; font-size: 17px; }
    .btn--full { width: 100%; justify-content: center; }

    /* ============================================
       TYPOGRAPHY UTILITIES
    ============================================ */
    .section-label {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--bg-alt); color: var(--heading);
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
    }
    .section-label--light { background: rgba(255,255,255,0.15); color: var(--lime); }
    .section-label i { font-size: 10px; }
    .section-title {
      font-family: var(--font-display); font-size: clamp(28px,4vw,48px);
      font-weight: 900; line-height: 1.15; color: var(--heading); margin-bottom: 16px;
    }
    .section-title--white { color: var(--white); }
    .section-title span  { color: var(--cta); }
    .section-title .lime { color: var(--lime); }
    .section-sub { font-size: 18px; color: var(--muted); max-width: 600px; line-height: 1.7; }
    .section-sub--white { color: rgba(255,255,255,0.8); }
    .section-header { text-align: center; margin-bottom: 40px; }
    .section-header .section-sub { margin: 0 auto; }

    /* ============================================
       NAV (minimal — no dropdown needed)
    ============================================ */
    /* ============================================
       HERO
    ============================================ */
    .hero {
      background: var(--dark);
      padding: 60px 0 80px;
      position: relative; overflow: hidden;
    }
    .hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
    .hero__blob {
      position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15;
    }
    .hero__blob--1 { width: 700px; height: 700px; background: var(--lime); top: -200px; right: -150px; animation: blobFloat 9s ease-in-out infinite; }
    .hero__blob--2 { width: 450px; height: 450px; background: var(--accent); bottom: -150px; left: -100px; animation: blobFloat 12s ease-in-out infinite reverse; }
    @keyframes blobFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.05); } }

    .hero__inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
      position: relative; z-index: 1;
    }
    .hero__eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(211,225,98,0.15); border: 1px solid rgba(211,225,98,0.35);
      color: var(--lime); font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
    }
    .hero__eyebrow i { font-size: 10px; }
    .hero__title {
      font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 56px);
      font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 20px;
    }
    .hero__title .lime { color: var(--lime); }
    .hero__sub {
      font-size: 18px; color: rgba(255,255,255,0.78); line-height: 1.7; margin-bottom: 32px; max-width: 520px;
    }
    .hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
    .hero__trust { display: flex; flex-wrap: wrap; gap: 20px; }
    .hero__trust-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.72);
    }
    .hero__trust-item i { color: var(--lime); font-size: 14px; }

    /* Earnings card on right */
    .hero__card-wrap { position: relative; }
    .hero__earn-card {
      background: var(--white); border-radius: var(--r-lg); padding: 36px 32px;
      box-shadow: var(--shadow-lg); position: relative;
    }
    .earn-card__badge {
      position: absolute; top: -14px; left: 32px;
      background: var(--lime); color: var(--heading); font-size: 11px; font-weight: 900;
      letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
    }
    .earn-card__title { font-size: 0.82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
    .earn-tiers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
    .earn-tier {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 16px; border-radius: var(--r-sm);
      border: 1.5px solid rgba(9,93,64,0.10);
      background: var(--bg); transition: var(--ease);
    }
    .earn-tier:hover { border-color: var(--cta); background: rgba(0,128,96,0.03); }
    .earn-tier__left { display: flex; align-items: center; gap: 12px; }
    .earn-tier__icon {
      width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }
    .earn-tier__name { font-size: 0.88rem; font-weight: 800; color: var(--heading); }
    .earn-tier__desc { font-size: 0.74rem; color: var(--muted); }
    .earn-tier__amount { font-size: 1.1rem; font-weight: 900; color: var(--cta); }
    .earn-card__total {
      background: linear-gradient(135deg, var(--dark), var(--heading));
      border-radius: var(--r-sm); padding: 16px 20px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .earn-card__total-label { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.7); }
    .earn-card__total-val { font-size: 1.4rem; font-weight: 900; color: var(--lime); }
    .earn-card__total-note { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

    /* Floating badges */
    .float-badge {
      position: absolute; background: var(--white); border-radius: var(--r-sm);
      box-shadow: var(--shadow-md); padding: 10px 14px;
      display: flex; align-items: center; gap: 8px;
      font-size: 0.78rem; font-weight: 700; color: var(--heading);
      animation: floatBadge 3s ease-in-out infinite;
    }
    .float-badge--1 { top: -20px; right: -20px; animation-delay: 0s; }
    .float-badge--2 { bottom: -20px; left: -20px; animation-delay: 1.5s; }
    .float-badge i { color: var(--success); }
    @keyframes floatBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

    /* ============================================
       HOW IT WORKS
    ============================================ */
    .how-section { padding: 64px 0; background: var(--white); }
    .steps-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute; top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
      height: 2px; background: linear-gradient(90deg, var(--bg-alt), var(--cta), var(--bg-alt));
      z-index: 0;
    }
    .step-card {
      text-align: center; position: relative; z-index: 1;
    }
    .step-num {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--bg-alt); border: 3px solid var(--white);
      box-shadow: var(--shadow-sm);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--heading);
      margin: 0 auto 20px; transition: var(--ease);
    }
    .step-card:hover .step-num { background: var(--cta); color: var(--white); box-shadow: 0 8px 24px rgba(0,128,96,0.3); }
    .step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 900; color: var(--heading); margin-bottom: 8px; }
    .step-desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

    /* ============================================
       COMMISSION TIERS
    ============================================ */
    .tiers-section { padding: 64px 0; background: var(--bg); }
    .tiers-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .tier-card {
      background: var(--white); border-radius: var(--r-lg);
      border: 2px solid rgba(9,93,64,0.10);
      padding: 36px 28px; text-align: center;
      transition: var(--ease); position: relative; overflow: hidden;
    }
    .tier-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    }
    .tier-card--bronze::before { background: linear-gradient(90deg, #cd7f32, #e8a87c); }
    .tier-card--silver::before { background: linear-gradient(90deg, #8e9eab, #c0c9d1); }
    .tier-card--gold::before   { background: linear-gradient(90deg, var(--warning), var(--lime)); }
    .tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--cta); }
    .tier-card.featured {
      border-color: var(--cta); box-shadow: 0 12px 48px rgba(0,128,96,0.18);
      transform: scale(1.03);
    }
    .tier-featured-badge {
      position: absolute; top: 16px; right: -28px;
      background: var(--cta); color: var(--white);
      font-size: 0.68rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px;
      padding: 4px 40px; transform: rotate(45deg); transform-origin: center;
    }
    .tier-icon {
      width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 16px;
      display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    }
    .tier-icon--bronze { background: rgba(205,127,50,0.12); color: #cd7f32; }
    .tier-icon--silver { background: rgba(142,158,171,0.15); color: #8e9eab; }
    .tier-icon--gold   { background: rgba(245,158,11,0.12); color: var(--warning); }
    .tier-name { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
    .tier-commission { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: var(--heading); line-height: 1; margin-bottom: 4px; }
    .tier-commission span { font-size: 1.2rem; color: var(--muted); }
    .tier-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 24px; }
    .tier-threshold {
      display: inline-block; background: var(--bg-alt); color: var(--heading);
      font-size: 0.78rem; font-weight: 700; padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
    }
    .tier-perks { text-align: left; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
    .tier-perk {
      display: flex; align-items: center; gap: 9px;
      font-size: 0.84rem; color: var(--navy);
    }
    .tier-perk i { color: var(--success); font-size: 0.82rem; flex-shrink: 0; }

    /* ============================================
       EARNINGS CALCULATOR
    ============================================ */
    .calc-section { padding: 64px 0; background: var(--white); }
    .calc-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    }
    .calc-card {
      background: var(--bg); border: 1.5px solid rgba(9,93,64,0.10); border-radius: var(--r-lg); padding: 36px;
    }
    .calc-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--heading); margin-bottom: 24px; }
    .calc-row { margin-bottom: 24px; }
    .calc-row label { font-size: 0.84rem; font-weight: 800; color: var(--heading); display: block; margin-bottom: 10px; }
    .calc-slider { width: 100%; -webkit-appearance: none; height: 6px; border-radius: 100px; background: var(--bg-alt); outline: none; cursor: pointer; }
    .calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--cta); cursor: pointer; box-shadow: 0 2px 8px rgba(0,128,96,0.4); }
    .calc-val { display: inline-block; font-size: 1.1rem; font-weight: 900; color: var(--cta); margin-left: 8px; }
    .calc-divider { height: 1px; background: rgba(9,93,64,0.10); margin: 20px 0; }
    .calc-result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .calc-result-item {
      background: var(--white); border: 1px solid rgba(9,93,64,0.10); border-radius: var(--r-sm);
      padding: 14px 16px; text-align: center;
    }
    .calc-result-item .cr-label { font-size: 0.74rem; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
    .calc-result-item .cr-val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--heading); }
    .calc-result-item.highlight { background: linear-gradient(135deg, var(--dark), var(--heading)); }
    .calc-result-item.highlight .cr-label { color: rgba(255,255,255,0.65); }
    .calc-result-item.highlight .cr-val { color: var(--lime); }

    .calc-copy h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--heading); margin-bottom: 16px; }
    .calc-copy p  { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
    .calc-copy ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
    .calc-copy ul li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--navy); }
    .calc-copy ul li i { color: var(--cta); font-size: 0.85rem; flex-shrink: 0; }

    /* ============================================
       WHO SHOULD REFER
    ============================================ */
    .who-section { padding: 64px 0; background: var(--bg); }
    .who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .who-card {
      background: var(--white); border-radius: var(--r-md);
      padding: 28px 24px; transition: var(--ease);
      border: 1.5px solid rgba(9,93,64,0.08);
    }
    .who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--cta); }
    .who-icon {
      width: 50px; height: 50px; border-radius: var(--r-sm);
      background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: var(--cta); margin-bottom: 14px; transition: var(--ease);
    }
    .who-card:hover .who-icon { background: var(--cta); color: var(--white); }
    .who-title { font-size: 1rem; font-weight: 800; color: var(--heading); margin-bottom: 8px; }
    .who-desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

    /* ============================================
       FAQ
    ============================================ */
    .faq-section { padding: 64px 0; background: var(--white); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 960px; margin: 0 auto; }
    .faq-item {
      background: var(--bg); border: 1.5px solid rgba(9,93,64,0.08); border-radius: var(--r-md);
      overflow: hidden;
    }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 20px; cursor: pointer; transition: var(--ease);
      font-weight: 700; font-size: 0.92rem; color: var(--heading);
      gap: 12px;
    }
    .faq-q:hover { background: var(--bg-alt); }
    .faq-q i { color: var(--cta); font-size: 0.85rem; flex-shrink: 0; transition: var(--ease); }
    .faq-item.open .faq-q i { transform: rotate(45deg); }
    .faq-a { display: none; padding: 0 20px 18px; font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
    .faq-item.open .faq-a { display: block; }

    /* ============================================
       TESTIMONIALS
    ============================================ */
    .ref-testimonials { padding: 56px 0; background: var(--bg); }
    .ref-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .ref-testi-card {
      background: var(--white); border-radius: var(--r-md); padding: 28px;
      border: 1.5px solid rgba(9,93,64,0.08); transition: var(--ease);
    }
    .ref-testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .ref-stars { display: flex; gap: 3px; margin-bottom: 12px; }
    .ref-stars i { color: var(--warning); font-size: 0.85rem; }
    .ref-quote { font-size: 0.92rem; color: var(--navy); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
    .ref-quote::before { content: '"'; color: var(--lime); font-size: 2rem; font-weight: 900; line-height: 0.5; display: block; margin-bottom: 8px; }
    .ref-author { display: flex; align-items: center; gap: 12px; }
    .ref-av {
      width: 40px; height: 40px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 0.9rem; font-weight: 900;
      color: var(--white); flex-shrink: 0;
    }
    .ref-author-info .name { font-weight: 800; font-size: 0.88rem; color: var(--heading); }
    .ref-author-info .role { font-size: 0.78rem; color: var(--muted); }
    .ref-earned {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(34,197,94,0.10); color: var(--success);
      font-size: 0.75rem; font-weight: 900; padding: 3px 10px; border-radius: 100px;
      margin-top: 6px;
    }
    .ref-earned i { font-size: 0.7rem; }

    /* ============================================
       REGISTRATION FORM
    ============================================ */
    .form-section { padding: 64px 0; background: var(--dark); position: relative; overflow: hidden; }
    .form-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 80% at 10% 50%, rgba(211,225,98,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .form-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative;
    }
    .form-copy h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
    .form-copy h2 .lime { color: var(--lime); }
    .form-copy p  { font-size: 1rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 28px; }
    .form-benefits { display: flex; flex-direction: column; gap: 14px; }
    .form-benefit {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 18px; background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r-sm);
    }
    .form-benefit-icon {
      width: 38px; height: 38px; border-radius: 9px;
      background: rgba(211,225,98,0.15); color: var(--lime);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem; flex-shrink: 0;
    }
    .form-benefit-text .fb-title { font-size: 0.88rem; font-weight: 800; color: var(--white); margin-bottom: 2px; }
    .form-benefit-text .fb-desc  { font-size: 0.78rem; color: rgba(255,255,255,0.60); }

    .form-card {
      background: var(--white); border-radius: var(--r-lg); padding: 40px 36px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    }
    .form-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 900; color: var(--heading); margin-bottom: 4px; }
    .form-card .form-sub { font-size: 0.84rem; color: var(--muted); margin-bottom: 24px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-group:last-of-type { margin-bottom: 0; }
    .form-group label { font-size: 0.84rem; font-weight: 800; color: var(--heading); display: flex; align-items: center; gap: 5px; }
    .form-group label .req { color: #ef4444; font-size: 0.70rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    input[type="text"], input[type="email"], input[type="url"], input[type="tel"], select, textarea {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid rgba(9,93,64,0.15); border-radius: var(--r-sm);
      background: var(--bg); color: var(--navy); font-family: var(--font-body);
      font-size: 0.93rem; outline: none; transition: var(--ease);
    }
    input:focus, select:focus, textarea:focus {
      border-color: var(--cta); background: var(--white);
      box-shadow: 0 0 0 3px rgba(0,128,96,0.10);
    }
    input::placeholder, textarea::placeholder { color: #aab3bb; }
    textarea { resize: vertical; min-height: 80px; }
    select { cursor: pointer; appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a75' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
    }
    input.has-error, select.has-error { border-color: #ef4444; background: #fef2f2; }
    .field-error { display: none; font-size: 0.76rem; color: #ef4444; font-weight: 700; align-items: center; gap: 5px; }
    .field-error.show { display: flex; }
    .field-hint { font-size: 0.76rem; color: var(--muted); }

    /* Checkbox */
    .checkbox-wrap { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-top: 4px; }
    .checkbox-wrap input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--cta); cursor: pointer; }
    .checkbox-wrap span { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
    .checkbox-wrap span a { color: var(--cta); font-weight: 700; }
    .checkbox-wrap span a:hover { text-decoration: underline; }

    .submit-btn {
      width: 100%; padding: 16px; border-radius: var(--r-sm); border: none;
      background: var(--cta); color: var(--white); font-family: var(--font-body);
      font-size: 1rem; font-weight: 900; cursor: pointer; transition: var(--ease);
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-top: 20px;
    }
    .submit-btn:hover { background: var(--heading); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,128,96,0.35); }
    .submit-btn .spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white); border-radius: 50%; animation: spin 0.7s linear infinite; }
    .submit-btn.loading .btn-label { display: none; }
    .submit-btn.loading .spinner { display: block; }
    .submit-btn.loading { pointer-events: none; }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* success state */
    .form-success {
      display: none; text-align: center; padding: 32px 0;
    }
    .form-success.show { display: block; }
    .form-success .success-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: rgba(34,197,94,0.12); color: var(--success);
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem; margin: 0 auto 16px;
      animation: scaleIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
    }
    @keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    .form-success h4 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--heading); margin-bottom: 8px; }
    .form-success p { font-size: 0.92rem; color: var(--muted); }

    /* ============================================
       FINAL CTA BAND
    ============================================ */
    .cta-band { padding: 56px 0; background: linear-gradient(135deg, var(--heading) 0%, var(--dark) 100%); text-align: center; }
    .cta-band h2 { font-family: var(--font-display); font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
    .cta-band h2 .lime { color: var(--lime); }
    .cta-band p { font-size: 1rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
    .cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ============================================
       FOOTER
    ============================================ */
    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 1024px) {
      .hero__inner { grid-template-columns: 1fr; gap: 48px; }
      .hero__card-wrap { display: none; }
      .tiers-grid  { grid-template-columns: 1fr 1fr; }
      .tier-card.featured { transform: none; }
      .calc-inner  { grid-template-columns: 1fr; }
      .form-inner  { grid-template-columns: 1fr; }
      .faq-grid    { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .hero { padding: 110px 0 60px; }
      .steps-grid  { grid-template-columns: 1fr 1fr; }
      .steps-grid::before { display: none; }
      .tiers-grid  { grid-template-columns: 1fr; }
      .who-grid    { grid-template-columns: 1fr 1fr; }
      .ref-testi-grid { grid-template-columns: 1fr; }
      .nav__links, .nav__cta { display: none; }
      .nav__toggle { display: flex; }
      .nav__mobile { display: block; }
    }
    @media (max-width: 520px) {
      .steps-grid { grid-template-columns: 1fr; }
      .who-grid   { grid-template-columns: 1fr; }
      .form-row   { grid-template-columns: 1fr; }
      .calc-result-grid { grid-template-columns: 1fr 1fr; }
      .form-card  { padding: 28px 20px; }
    }
  

/* ── Footer Bottom Bar (shared standard) ── */
.footer__bottom { background: rgb(251,247,237); border-top: none; padding: 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copyright { font-size: 13px; color: rgb(0,0,0); margin: 0; font-weight: 600; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer__legal li a { font-size: 12px; color: rgb(0,0,0); text-decoration: none; transition: all 0.25s ease; font-weight: 600; }
.footer__legal li a:hover { color: #0D3F3A; }
@media (max-width: 640px) {
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}
