/* ─── TOKENS ──────────────────────────────────────────────── */
    :root {
      --forest:    #1E4D35;
      --garden:    #2D6A4F;
      --moss:      #52B788;
      --sprout:    #95D5B2;
      --pale:      #D8F3DC;
      --parchment: #F6FBF7;
      --gold:      #F4C430;
      --gold-dk:   #C89F14;
      --gold-text: #7A5800;
      --gold-pale: #FFF9E3;
      --ink:       #111C16;
      --stone:     #3D524A;
      --mist:      #8AA898;
      --fog:       #E4EEE8;
      --white:     #FFFFFF;
      --danger:    #E24B4A;

      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body:    'DM Sans', system-ui, sans-serif;

      --r-sm:  6px;
      --r-md:  12px;
      --r-lg:  20px;
      --r-xl:  28px;
      --r-pill:999px;
    }

    /* ─── 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(--ink);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font-family: inherit; }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

    /* ─── NAV ─────────────────────────────────────────────────── */
    .nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--fog);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 62px;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 9px;
      font-family: var(--font-display);
      font-size: 21px;
      color: var(--garden);
    }
    .nav-logo-mark {
      width: 30px; height: 30px;
      background: var(--garden);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .nav-logo-mark svg { width: 18px; height: 18px; }
    .nav-links {
      display: flex; align-items: center; gap: 28px;
      list-style: none;
    }
    .nav-links a { font-size: 14px; color: var(--stone); transition: color 0.15s; }
    .nav-links a:hover { color: var(--garden); }
    .nav-links .creator-link { color: var(--mist); font-size: 13px; }
    .nav-demo {
      background: var(--garden);
      color: var(--white) !important;
      padding: 9px 20px;
      border-radius: var(--r-pill);
      font-weight: 500;
      transition: background 0.15s, transform 0.1s;
    }
    .nav-demo:hover { background: var(--forest) !important; transform: translateY(-1px); }
    .nav-mob { display: none; background: var(--garden); color: var(--white); padding: 7px 16px; border-radius: var(--r-pill); font-size: 13px; font-weight: 500; }

    /* ─── HERO ────────────────────────────────────────────────── */
    .hero {
      padding: 80px 24px 88px;
      background: var(--parchment);
      border-bottom: 1px solid var(--fog);
      overflow: hidden;
      position: relative;
    }
    .hero::after {
      content: '';
      position: absolute; right: -120px; bottom: -120px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(82,183,136,0.10) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--pale);
      color: var(--garden);
      font-size: 12px; font-weight: 600;
      padding: 5px 12px;
      border-radius: var(--r-pill);
      margin-bottom: 20px;
      letter-spacing: 0.04em;
    }
    .hero-tag-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--garden);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }
    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(36px, 4.5vw, 54px);
      line-height: 1.1;
      color: var(--forest);
      margin-bottom: 22px;
    }
    .hero-headline em {
      font-style: italic;
      color: var(--garden);
    }
    .hero-sub {
      font-size: 18px;
      line-height: 1.65;
      color: var(--stone);
      max-width: 500px;
      margin-bottom: 36px;
    }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--garden);
      color: var(--white) !important;
      padding: 14px 26px;
      border-radius: var(--r-pill);
      font-weight: 600; font-size: 15px;
      border: none; cursor: pointer;
      transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
    }
    .btn-primary:hover { background: var(--forest); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(45,106,79,0.28); }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--white);
      color: var(--garden);
      padding: 14px 26px;
      border-radius: var(--r-pill);
      font-size: 15px; font-weight: 500;
      border: 1.5px solid var(--moss);
      cursor: pointer;
      transition: background 0.15s;
    }
    .btn-secondary:hover { background: var(--pale); }
    .hero-logos {
      display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    }
    .hero-logos-label { font-size: 12px; color: var(--mist); margin-right: 4px; white-space: nowrap; }
    .logo-pill {
      background: var(--white);
      border: 1px solid var(--fog);
      border-radius: var(--r-sm);
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 600;
      color: var(--stone);
    }

    /* ─── HERO DASHBOARD MOCKUP ───────────────────────────────── */
    .hero-mockup {
      background: var(--white);
      border-radius: var(--r-xl);
      border: 1px solid var(--fog);
      box-shadow: 0 24px 64px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
      overflow: hidden;
    }
    .mockup-bar {
      background: var(--forest);
      padding: 10px 16px;
      display: flex; align-items: center; gap: 8px;
    }
    .mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
    .mockup-title { font-size: 12px; color: rgba(255,255,255,0.6); margin-left: 6px; }
    .mockup-body { padding: 18px; }
    .mockup-kpis {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 8px; margin-bottom: 14px;
    }
    .mockup-kpi {
      background: var(--parchment);
      border-radius: var(--r-md);
      padding: 10px 12px;
    }
    .mockup-kpi-val { font-size: 20px; font-weight: 600; color: var(--garden); line-height: 1; }
    .mockup-kpi-lbl { font-size: 10px; color: var(--mist); margin-top: 2px; }
    .mockup-section-label { font-size: 10px; font-weight: 600; color: var(--mist); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
    .mockup-creator-row {
      display: flex; align-items: center; gap: 10px;
      padding: 8px 10px;
      border-radius: var(--r-md);
      border: 1px solid var(--fog);
      margin-bottom: 6px;
    }
    .mockup-creator-row:hover { background: var(--parchment); }
    .mc-face {
      width: 32px; height: 32px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 600; color: var(--white);
      flex-shrink: 0;
    }
    .mc-name { font-size: 13px; font-weight: 500; color: var(--ink); filter: blur(4px); user-select: none; -webkit-user-select: none; }
    .mc-niche { font-size: 11px; color: var(--mist); }
    .mc-stats { margin-left: auto; text-align: right; }
    .mc-reach { font-size: 12px; font-weight: 600; color: var(--forest); }
    .mc-eng   { font-size: 10px; color: var(--mist); }
    .mc-score {
      background: var(--pale); color: var(--garden);
      font-size: 10px; font-weight: 700;
      padding: 2px 7px; border-radius: var(--r-pill);
      margin-left: 8px; flex-shrink: 0;
    }
    .mockup-cta-row {
      margin-top: 12px;
      background: var(--garden);
      border-radius: var(--r-md);
      padding: 11px 14px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .mockup-cta-text { font-size: 12px; color: rgba(255,255,255,0.85); }
    .mockup-cta-btn {
      background: var(--gold); color: var(--gold-text);
      font-size: 11px; font-weight: 700;
      padding: 5px 12px; border-radius: var(--r-pill);
      white-space: nowrap;
    }

    /* ─── TRUST BAR ───────────────────────────────────────────── */
    .trust-bar {
      background: var(--white);
      border-bottom: 1px solid var(--fog);
      padding: 18px 24px;
    }
    .trust-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: 10px;
    }
    .trust-icon {
      width: 34px; height: 34px; border-radius: 50%;
      background: var(--pale);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .trust-icon svg { width: 17px; height: 17px; stroke: var(--garden); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .trust-text { font-size: 13px; font-weight: 500; color: var(--stone); }
    .trust-text span { color: var(--garden); }
    .trust-divider { width: 1px; height: 28px; background: var(--fog); }

    /* ─── SECTION SHARED ──────────────────────────────────────── */
    .section-eyebrow {
      font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--moss); margin-bottom: 10px;
    }
    .section-headline {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 38px);
      line-height: 1.2; color: var(--forest); margin-bottom: 14px;
    }
    .section-sub {
      font-size: 16px; color: var(--stone);
      line-height: 1.65; max-width: 540px;
    }

    /* ─── HOW IT WORKS ────────────────────────────────────────── */
    .how { padding: 88px 24px; background: var(--parchment); }
    .how-inner { max-width: 1100px; margin: 0 auto; }
    .how-header { margin-bottom: 52px; }
    .how-timeline {
      display: grid; grid-template-columns: repeat(4, 1fr);
      position: relative;
    }
    .how-timeline::before {
      content: '';
      position: absolute; top: 28px; left: 14%; right: 14%;
      height: 2px;
      background: linear-gradient(90deg, var(--pale), var(--moss), var(--pale));
      z-index: 0;
    }
    .how-step { padding: 0 16px 0 0; position: relative; z-index: 1; }
    .how-step-bullet {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--moss);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      transition: background 0.2s;
    }
    .how-step:hover .how-step-bullet { background: var(--pale); }
    .how-step-bullet svg { width: 24px; height: 24px; stroke: var(--garden); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
    .how-step-title { font-size: 15px; font-weight: 600; color: var(--forest); margin-bottom: 7px; }
    .how-step-desc { font-size: 13px; color: var(--stone); line-height: 1.6; }
    .how-step-time {
      display: inline-block; margin-top: 10px;
      background: var(--pale); color: var(--garden);
      font-size: 11px; font-weight: 600;
      padding: 3px 10px; border-radius: var(--r-pill);
      letter-spacing: 0.03em;
    }

    /* ─── CAMPAIGN CALCULATOR ─────────────────────────────────── */
    .calculator { padding: 88px 24px; background: var(--white); }
    .calculator-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: start;
    }
    .calc-controls { display: flex; flex-direction: column; gap: 24px; }
    .calc-group label {
      display: block; font-size: 13px; font-weight: 600;
      color: var(--stone); margin-bottom: 8px;
      text-transform: uppercase; letter-spacing: 0.04em;
    }
    .calc-slider {
      width: 100%; height: 4px;
      -webkit-appearance: none; appearance: none;
      background: var(--fog); border-radius: 2px; outline: none;
      cursor: pointer;
    }
    .calc-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--garden);
      border: 3px solid var(--white);
      box-shadow: 0 0 0 1px var(--moss);
      cursor: pointer;
    }
    .calc-slider::-moz-range-thumb {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--garden); border: 3px solid var(--white);
      box-shadow: 0 0 0 1px var(--moss); cursor: pointer;
    }
    .calc-val {
      font-size: 22px; font-weight: 600; color: var(--garden);
      margin-top: 6px;
    }
    .calc-select {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid var(--fog); border-radius: var(--r-md);
      font-size: 14px; color: var(--ink);
      background: var(--parchment); cursor: pointer;
      transition: border-color 0.15s;
    }
    .calc-select:focus { outline: none; border-color: var(--moss); }
    .calc-results {
      background: var(--forest);
      border-radius: var(--r-xl);
      padding: 32px;
      color: var(--white);
      position: sticky; top: 80px;
    }
    .calc-results-title {
      font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--sprout); margin-bottom: 20px;
    }
    .calc-result-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .calc-result-row:last-of-type { border-bottom: none; }
    .crr-label { font-size: 13px; color: rgba(255,255,255,0.6); }
    .crr-val { font-size: 18px; font-weight: 600; color: var(--white); }
    .crr-val.gold { color: var(--gold); }
    .calc-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 8px 0; }
    .calc-guarantee {
      margin-top: 20px; padding: 14px;
      background: rgba(255,255,255,0.06);
      border-radius: var(--r-md);
      border: 1px solid rgba(255,255,255,0.1);
    }
    .calc-guarantee-title { font-size: 12px; font-weight: 600; color: var(--gold); margin-bottom: 4px; }
    .calc-guarantee-text { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; }
    .calc-cta {
      display: block; width: 100%; margin-top: 16px;
      background: var(--gold); color: var(--gold-text);
      padding: 13px; border-radius: var(--r-pill);
      font-size: 14px; font-weight: 700;
      text-align: center; border: none; cursor: pointer;
      transition: background 0.15s;
    }
    .calc-cta:hover { background: var(--gold-dk); color: var(--white); }

    /* ─── CASE STUDIES ────────────────────────────────────────── */
    .cases { padding: 88px 24px; background: var(--parchment); }
    .cases-inner { max-width: 1100px; margin: 0 auto; }
    .cases-header { margin-bottom: 48px; }
    .cases-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .case-card {
      background: var(--white);
      border-radius: var(--r-xl);
      border: 1px solid var(--fog);
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); }
    .case-header {
      padding: 20px 20px 0;
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 14px;
    }
    .case-logo {
      width: 44px; height: 44px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 700; color: var(--white);
      flex-shrink: 0;
    }
    .case-brand { font-size: 15px; font-weight: 600; color: var(--ink); }
    .case-niche { font-size: 12px; color: var(--mist); }
    .case-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0;
      border-top: 1px solid var(--fog);
      border-bottom: 1px solid var(--fog);
      margin-bottom: 16px;
    }
    .case-stat {
      padding: 12px 20px;
      border-right: 1px solid var(--fog);
    }
    .case-stat:nth-child(even) { border-right: none; }
    .case-stat-val {
      font-family: var(--font-display);
      font-size: 24px; color: var(--garden); line-height: 1;
    }
    .case-stat-lbl { font-size: 11px; color: var(--mist); margin-top: 2px; }
    .case-quote {
      padding: 0 20px 20px;
      font-size: 13px; color: var(--stone);
      line-height: 1.6; font-style: italic;
    }
    .case-quote::before { content: '"'; }
    .case-quote::after  { content: '"'; }
    .case-author {
      padding: 14px 20px;
      border-top: 1px solid var(--fog);
      display: flex; align-items: center; gap: 10px;
    }
    .case-author-face {
      width: 30px; height: 30px; border-radius: 50%;
      background: var(--moss);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700; color: var(--white);
    }
    .case-author-name { font-size: 12px; font-weight: 600; color: var(--ink); }
    .case-author-role { font-size: 11px; color: var(--mist); }
    .cases-more {
      margin-top: 32px; text-align: center;
    }

    /* ─── CREATOR NETWORK ─────────────────────────────────────── */
    .network { padding: 88px 24px; background: var(--white); }
    .network-inner { max-width: 1100px; margin: 0 auto; }
    .network-header { margin-bottom: 48px; }
    .network-filters {
      display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
    }
    .filter-btn {
      padding: 7px 16px;
      border: 1.5px solid var(--fog);
      border-radius: var(--r-pill);
      background: var(--white);
      font-size: 13px; color: var(--stone);
      cursor: pointer; transition: all 0.15s;
    }
    .filter-btn:hover { border-color: var(--moss); color: var(--garden); }
    .filter-btn.active { background: var(--garden); border-color: var(--garden); color: var(--white); }
    .creator-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .creator-card {
      background: var(--parchment);
      border-radius: var(--r-lg);
      padding: 16px;
      border: 1px solid var(--fog);
      transition: background 0.15s, transform 0.15s;
    }
    .creator-card:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
    .cc-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 700; color: var(--white);
      margin-bottom: 10px;
    }
    .cc-handle { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 2px; filter: blur(4px); user-select: none; -webkit-user-select: none; }
    .cc-niche { font-size: 11px; color: var(--mist); margin-bottom: 10px; }
    .cc-row {
      display: flex; justify-content: space-between;
      padding: 4px 0; font-size: 11px;
      border-bottom: 1px solid var(--fog);
    }
    .cc-row:last-child { border-bottom: none; }
    .cc-row-label { color: var(--mist); }
    .cc-row-val { font-weight: 600; color: var(--forest); }
    .cc-score {
      display: inline-block; margin-top: 10px;
      background: var(--pale); color: var(--garden);
      font-size: 11px; font-weight: 700;
      padding: 3px 10px; border-radius: var(--r-pill);
    }
    .network-cta-row {
      margin-top: 32px;
      background: var(--parchment);
      border-radius: var(--r-xl);
      padding: 28px 32px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px; flex-wrap: wrap;
    }
    .network-cta-text h3 { font-size: 18px; font-weight: 600; color: var(--forest); margin-bottom: 4px; }
    .network-cta-text p { font-size: 14px; color: var(--stone); }

    /* ─── PRICING ─────────────────────────────────────────────── */
    .pricing { padding: 88px 24px; background: var(--forest); }
    .pricing-inner { max-width: 1100px; margin: 0 auto; }
    .pricing-header { margin-bottom: 48px; }
    .pricing-header .section-headline { color: var(--white); }
    .pricing-header .section-sub { color: rgba(255,255,255,0.6); }
    .pricing-header .section-eyebrow { color: var(--sprout); }
    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px; align-items: start;
    }
    .plan-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--r-xl);
      padding: 28px;
      transition: background 0.2s;
    }
    .plan-card:hover { background: rgba(255,255,255,0.09); }
    .plan-card.featured {
      background: var(--white);
      border-color: var(--white);
      position: relative;
    }
    .plan-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--gold); color: var(--gold-text);
      font-size: 11px; font-weight: 700;
      padding: 3px 14px; border-radius: var(--r-pill);
      white-space: nowrap;
    }
    .plan-name { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
    .plan-card.featured .plan-name { color: var(--mist); }
    .plan-price {
      font-family: var(--font-display);
      font-size: 42px; line-height: 1; color: var(--white); margin-bottom: 4px;
    }
    .plan-card.featured .plan-price { color: var(--forest); }
    .plan-period { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
    .plan-card.featured .plan-period { color: var(--mist); }
    .plan-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .plan-card.featured .plan-desc { color: var(--stone); border-bottom-color: var(--fog); }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
    .plan-feature {
      display: flex; align-items: flex-start; gap: 9px;
      font-size: 13px; color: rgba(255,255,255,0.7);
    }
    .plan-card.featured .plan-feature { color: var(--stone); }
    .plan-feature-check { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
    .plan-feature-check svg { width: 16px; height: 16px; stroke: var(--moss); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    .plan-card.featured .plan-feature-check svg { stroke: var(--garden); }
    .plan-cta {
      display: block; width: 100%; padding: 12px;
      border-radius: var(--r-pill); font-size: 14px; font-weight: 600;
      text-align: center; cursor: pointer; border: none;
      transition: all 0.15s;
    }
    .plan-cta.ghost {
      background: rgba(255,255,255,0.08);
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.15);
    }
    .plan-cta.ghost:hover { background: rgba(255,255,255,0.15); }
    .plan-cta.primary { background: var(--garden); color: var(--white); }
    .plan-cta.primary:hover { background: var(--forest); }
    .plan-cta.gold { background: var(--gold); color: var(--gold-text); }
    .plan-cta.gold:hover { background: var(--gold-dk); color: var(--white); }
    .pricing-note {
      margin-top: 24px; text-align: center;
      font-size: 13px; color: rgba(255,255,255,0.4);
    }
    .pricing-note strong { color: rgba(255,255,255,0.7); }

    /* ─── TESTIMONIALS ────────────────────────────────────────── */
    .testimonials { padding: 88px 24px; background: var(--white); }
    .testimonials-inner { max-width: 1100px; margin: 0 auto; }
    .testimonials-header { margin-bottom: 48px; }
    .testi-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .testi-card {
      border: 1px solid var(--fog);
      border-radius: var(--r-xl);
      padding: 28px;
      transition: box-shadow 0.2s;
    }
    .testi-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
    .testi-card.featured { border-color: var(--moss); border-width: 2px; }
    .testi-stars {
      display: flex; gap: 3px; margin-bottom: 14px;
    }
    .testi-stars svg { width: 16px; height: 16px; fill: var(--gold); stroke: var(--gold-dk); stroke-width: 1; }
    .testi-quote {
      font-size: 15px; color: var(--stone); line-height: 1.7;
      margin-bottom: 20px; font-style: italic;
    }
    .testi-quote::before { content: '"'; }
    .testi-quote::after  { content: '"'; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-face {
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 700; color: var(--white);
      flex-shrink: 0;
    }
    .testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
    .testi-role { font-size: 12px; color: var(--mist); }
    .testi-logo {
      margin-left: auto;
      font-size: 13px; font-weight: 700; color: var(--mist);
    }

    /* ─── DEMO CTA ────────────────────────────────────────────── */
    .demo { padding: 100px 24px; background: var(--parchment); }
    .demo-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 440px;
      gap: 64px; align-items: center;
    }
    .demo-text .section-sub { margin-bottom: 28px; }
    .demo-guarantee {
      display: flex; align-items: flex-start; gap: 14px;
      background: var(--pale); border-radius: var(--r-lg);
      padding: 16px; margin-top: 24px;
    }
    .demo-guarantee-icon { flex-shrink: 0; }
    .demo-guarantee-icon svg { width: 22px; height: 22px; stroke: var(--garden); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .demo-guarantee-text { font-size: 13px; color: var(--stone); line-height: 1.55; }
    .demo-guarantee-text strong { color: var(--forest); font-weight: 600; }
    .demo-form {
      background: var(--white);
      border-radius: var(--r-xl);
      border: 1px solid var(--fog);
      padding: 32px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    }
    .demo-form-title { font-family: var(--font-display); font-size: 22px; color: var(--forest); margin-bottom: 4px; }
    .demo-form-sub { font-size: 13px; color: var(--mist); margin-bottom: 22px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-group { margin-bottom: 14px; }
    .form-label { display: block; font-size: 12px; font-weight: 600; color: var(--stone); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.04em; }
    .form-input {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid var(--fog); border-radius: var(--r-md);
      font-size: 14px; color: var(--ink); background: var(--parchment);
      transition: border-color 0.15s;
    }
    .form-input:focus { outline: none; border-color: var(--moss); background: var(--white); }
    .form-select {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid var(--fog); border-radius: var(--r-md);
      font-size: 14px; color: var(--ink); background: var(--parchment);
      appearance: none; cursor: pointer;
      transition: border-color 0.15s;
    }
    .form-select:focus { outline: none; border-color: var(--moss); }
    .form-submit {
      width: 100%; padding: 14px;
      background: var(--garden); color: var(--white);
      border: none; border-radius: var(--r-pill);
      font-size: 15px; font-weight: 600; cursor: pointer;
      transition: background 0.15s, transform 0.12s;
      margin-bottom: 10px;
    }
    .form-submit:hover { background: var(--forest); transform: translateY(-1px); }
    .form-legal { font-size: 11px; color: var(--mist); text-align: center; line-height: 1.5; }
    .form-legal a { color: var(--garden); text-decoration: underline; }

    /* ─── FAQ ─────────────────────────────────────────────────── */
    .faq { padding: 88px 24px; background: var(--white); }
    .faq-inner { max-width: 720px; margin: 0 auto; }
    .faq-header { margin-bottom: 40px; }
    .faq-item { border-bottom: 1px solid var(--fog); }
    .faq-q {
      width: 100%; background: none; border: none;
      padding: 20px 0; text-align: left;
      font-size: 15px; font-weight: 600; color: var(--forest);
      cursor: pointer; display: flex; align-items: center;
      justify-content: space-between; gap: 16px;
    }
    .faq-q:hover { color: var(--garden); }
    .faq-chevron { width: 20px; height: 20px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-a { font-size: 14px; color: var(--stone); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s; }
    .faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

    /* ─── FOOTER ──────────────────────────────────────────────── */
    .footer { background: var(--ink); padding: 48px 24px; }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
    }
    .footer-brand { }
    .footer-logo-text { font-family: var(--font-display); font-size: 20px; color: var(--white); margin-bottom: 10px; }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.55; max-width: 220px; }
    .footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
    .footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
    .footer-col-links a:hover { color: var(--white); }
    .footer-bottom {
      max-width: 1100px; margin: 32px auto 0;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; flex-wrap: wrap;
      font-size: 12px; color: rgba(255,255,255,0.3);
    }
    .footer-bottom a { color: rgba(255,255,255,0.4); }
    .footer-bottom a:hover { color: var(--white); }

    /* ─── SCROLL REVEAL ───────────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ─── RESPONSIVE ──────────────────────────────────────────── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-mob { display: block; }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-mockup { display: none; }
      .how-timeline { grid-template-columns: 1fr 1fr; row-gap: 32px; }
      .how-timeline::before { display: none; }
      .calculator-inner { grid-template-columns: 1fr; }
      .calc-results { position: static; }
      .cases-grid { grid-template-columns: 1fr; }
      .creator-grid { grid-template-columns: 1fr 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .plan-card.featured { order: -1; }
      .testi-grid { grid-template-columns: 1fr; }
      .demo-inner { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 540px) {
      .how-timeline { grid-template-columns: 1fr; }
      .creator-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .trust-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
      .trust-divider { display: none; }
    }
/* ════════════════════════════════════════════════════════════════
   WHITE-LABEL: brand color override
   The :root vars below are repeated here (after the base block)
   so a UAE-side dev can override --garden/--forest/--moss etc. by
   appending a small override block, OR by changing the PHP-injected
   <style> block in the template (see template's <head> output,
   driven by SG_BRAND_PRIMARY_COLOR). This comment marks the
   intended override point — no action needed unless rebranding.
   ════════════════════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════════════════════
   RTL SUPPORT (Arabic)
   Activated when <html dir="rtl"> / <body class="sg-rtl"> is set
   by the template based on sg_current_lang(). Mirrors flex/grid
   direction, text-align, and spacing for the sections that need it.
   Uses logical properties where practical; explicit mirrors where
   Tailwind-esque utility classes aren't logical-property-aware.
   ════════════════════════════════════════════════════════════════ */

.sg-rtl {
  direction: rtl;
  text-align: right;
}

/* Font stack: prefer a proper Arabic-supporting face for AR content.
   DM Sans/DM Serif Display don't cover Arabic glyphs, so we layer
   Noto Kufi Arabic (enqueued only when lang=ar) ahead of them. */
.sg-rtl {
  font-family: 'Noto Kufi Arabic', 'DM Sans', system-ui, sans-serif;
}
.sg-rtl .hero-headline,
.sg-rtl .section-headline,
.sg-rtl .cta-headline,
.sg-rtl .plan-price {
  font-family: 'Noto Kufi Arabic', 'DM Serif Display', Georgia, serif;
}

/* Nav */
.sg-rtl .nav-inner { flex-direction: row-reverse; }
.sg-rtl .nav-links { flex-direction: row-reverse; }
.sg-rtl .nav-logo { flex-direction: row-reverse; }

/* Hero */
.sg-rtl .hero-inner { direction: rtl; }
.sg-rtl .hero-btns { flex-direction: row-reverse; justify-content: flex-end; }
.sg-rtl .hero-logos { flex-direction: row-reverse; justify-content: flex-end; }
.sg-rtl .hero-trust { flex-direction: row-reverse; }
.sg-rtl .hero-trust-faces { flex-direction: row-reverse; }
.sg-rtl .hero-trust-face { margin-right: 0; margin-left: -8px; }
.sg-rtl .hero-trust-face:first-child { margin-left: 0; }
.sg-rtl .btn-primary svg,
.sg-rtl .btn-secondary { transform: scaleX(-1); }
.sg-rtl .btn-primary { flex-direction: row-reverse; }

/* Mockup card stays LTR internally (it's a UI screenshot-style visual,
   not running text) — explicitly force LTR so numbers/charts don't flip */
.sg-rtl .hero-mockup { direction: ltr; text-align: left; }

/* Trust bar */
.sg-rtl .trust-inner { flex-direction: row-reverse; }
.sg-rtl .trust-item { flex-direction: row-reverse; }

/* How it works */
.sg-rtl .how-timeline::before { background: linear-gradient(270deg, var(--pale), var(--moss), var(--pale)); }

/* Calculator */
.sg-rtl .calc-result-row { flex-direction: row-reverse; }
.sg-rtl .calc-guarantee { text-align: right; }

/* Case studies / network / pricing cards: grid direction doesn't need
   flipping (CSS grid auto-flows correctly under dir:rtl), but internal
   flex rows inside cards do */
.sg-rtl .case-header { flex-direction: row-reverse; }
.sg-rtl .case-stats { direction: rtl; }
.sg-rtl .case-author { flex-direction: row-reverse; }
.sg-rtl .cc-row { flex-direction: row-reverse; }
.sg-rtl .network-cta-row { flex-direction: row-reverse; }

/* Pricing */
.sg-rtl .plan-feature { flex-direction: row-reverse; }
.sg-rtl .plan-badge { left: auto; right: 50%; transform: translateX(50%); }

/* Testimonials */
.sg-rtl .testi-author { flex-direction: row-reverse; }
.sg-rtl .testi-logo { margin-left: 0; margin-right: auto; }
.sg-rtl .testi-stars { flex-direction: row-reverse; }

/* Demo form */
.sg-rtl .form-row { direction: rtl; }
.sg-rtl .form-select { background-position: left 14px center; }

/* FAQ */
.sg-rtl .faq-q { flex-direction: row-reverse; }
.sg-rtl .faq-chevron { transform: none; }
.sg-rtl .faq-item.open .faq-chevron { transform: rotate(180deg); }

/* Footer */
.sg-rtl .footer-inner { direction: rtl; }
.sg-rtl .footer-bottom { flex-direction: row-reverse; }

/* Language switcher pill (new in UAE template) */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--fog);
  border-radius: var(--r-pill);
  overflow: hidden;
  font-size: 12px;
}
.lang-switch a {
  padding: 5px 12px;
  color: var(--mist);
  font-weight: 500;
}
.lang-switch a.active {
  background: var(--garden);
  color: var(--white);
}

/* Network attribution disclosure strip */
.network-attribution {
  margin-top: 16px;
  font-size: 12px;
  color: var(--mist);
  text-align: center;
  line-height: 1.6;
  padding: 12px 20px;
  background: var(--parchment);
  border-radius: var(--r-md);
}
