
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green-light: #5fd38d;
      --green-mid: #3dba6e;
      --green-dark: #1a2e1a;
      --green-deep: #0d140d;
      --green-tint: #f0faf4;
      --green-border: #e0e8e0;
      --text-primary: #1a1a1a;
      --text-muted: #666;
      --text-faint: #999;
      --bg-page: #f5f7f5;
      --bg-white: #ffffff;
      --border-light: #e8ede8;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Sora', sans-serif;
      background: var(--bg-page);
      color: var(--text-primary);
      line-height: 1.6;
    }

    /* ─── NAV ─────────────────────────────────────── */
    .nav {
      background: var(--bg-white);
      border-bottom: 1px solid var(--border-light);
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo-box {
      background: var(--green-light);
      border-radius: 8px;
      padding: 5px 9px;
    }
    .nav-logo-ux { color: #fff; font-size: 18px; font-weight: 700; }
    .nav-logo-pay { color: var(--text-primary); font-size: 18px; font-weight: 400; margin-left: 6px; }

    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a { color: #444; font-size: 13.5px; text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--green-mid); }

    .nav-cta {
      background: var(--green-mid);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px 22px;
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Sora', sans-serif;
      text-decoration: none;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: #2fa85e; }

    /* ─── HERO ────────────────────────────────────── */
    .hero {
      background-image: url('hero-bg.jpeg');
      background-size: cover;
      background-position: center right;
      position: relative;
      overflow: hidden;
      padding: 80px 40px 60px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 60px;
      align-items: center;
      min-height: 540px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(10,20,10,0.82) 0%, rgba(15,30,15,0.72) 45%, rgba(20,40,20,0.42) 75%, rgba(26,46,26,0.15) 100%);
      z-index: 0;
    }
    .hero > div { position: relative; z-index: 1; }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(95,211,141,0.15);
      border: 1px solid rgba(95,211,141,0.3);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: 12px;
      color: var(--green-light);
      font-weight: 500;
      margin-bottom: 20px;
    }
    .hero-eyebrow-dot {
      width: 6px; height: 6px;
      background: var(--green-light);
      border-radius: 50%;
    }

    .hero h1 {
      font-size: 42px;
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 18px;
      letter-spacing: -1px;
    }
    .hero h1 span { color: var(--green-light); }

    .hero-sub {
      color: rgba(255,255,255,0.7);
      font-size: 16px;
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 420px;
    }

    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

    .btn-primary {
      background: #fff;
      color: var(--green-dark);
      border: none;
      border-radius: 10px;
      padding: 13px 28px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Sora', sans-serif;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-primary:hover { background: var(--green-tint); }

    .btn-secondary {
      background: var(--green-mid);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 13px 26px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      font-family: 'Sora', sans-serif;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-secondary:hover { background: #2fa85e; }

    .hero-stats { display: flex; gap: 0; margin-top: 36px; }
    .hero-stat { padding-right: 24px; }
    .hero-stat-num { font-size: 26px; font-weight: 700; color: var(--green-light); }
    .hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; font-weight: 300; }
    .hero-stat-divider { width: 1px; background: rgba(255,255,255,0.12); margin-right: 24px; }

    /* ─── PHONE MOCKUP ────────────────────────────── */
    .phone-frame {
      width: 220px;
      background: #0a0a0a;
      border-radius: 36px;
      border: 2px solid rgba(95,211,141,0.2);
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.55);
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .phone-status-bar {
      background: #0a0a0a;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 16px 4px;
    }
    .phone-time { font-size: 11px; font-weight: 600; color: #fff; }
    .phone-icons { font-size: 9px; color: #fff; opacity: 0.7; }

    .phone-user-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px 8px;
    }
    .phone-user-left { display: flex; align-items: center; gap: 8px; }
    .phone-avatar {
      width: 30px; height: 30px;
      background: #222;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .phone-user-name { font-size: 8.5px; font-weight: 600; color: #fff; line-height: 1.3; }
    .phone-user-balance { font-size: 10px; font-weight: 700; color: var(--green-light); }

    .phone-add-btn {
      background: #1e1e1e;
      border-radius: 18px;
      padding: 5px 10px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .phone-add-circle {
      width: 18px; height: 18px;
      border: 1.5px solid var(--green-light);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 8px;
      color: var(--green-light);
    }
    .phone-add-label { font-size: 8px; color: #fff; }
    .phone-add-label strong { display: block; font-size: 9px; font-weight: 700; }

    .phone-logo-center {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 36px 0 30px;
    }
    .phone-logo-box {
      background: var(--green-light);
      border-radius: 10px;
      padding: 7px 12px;
      margin-right: 4px;
    }
    .phone-logo-ux { font-size: 28px; font-weight: 700; color: #fff; letter-spacing: -1px; }
    .phone-logo-pay { font-size: 28px; font-weight: 400; color: #fff; }

    .phone-action-row {
      display: flex;
      justify-content: center;
      gap: 16px;
      padding: 0 20px 24px;
    }
    .phone-action-btn {
      width: 52px; height: 52px;
      background: #1e1e1e;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .phone-action-btn svg { width: 22px; height: 22px; stroke: #aaa; stroke-width: 1.5; fill: none; }

    .phone-buy {
      background: var(--green-light);
      margin: 0 14px 20px;
      border-radius: 8px;
      padding: 14px;
      text-align: center;
      font-size: 13px;
      font-weight: 700;
      color: #0a0a0a;
      letter-spacing: 1px;
      font-family: 'Sora', sans-serif;
    }
    .phone-spacer { height: 16px; background: #0a0a0a; }

    /* ─── PROOF BAR ───────────────────────────────── */
    .proof-bar {
      background: var(--bg-white);
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      padding: 20px 40px;
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .proof-label { font-size: 11px; color: var(--text-faint); font-weight: 500; white-space: nowrap; }
    .proof-stat { display: flex; align-items: baseline; gap: 6px; white-space: nowrap; }
    .proof-stat-n { font-size: 20px; font-weight: 700; color: var(--text-primary); }
    .proof-stat-l { font-size: 12px; color: #888; }
    .proof-divider { width: 1px; height: 28px; background: #e8e8e8; flex-shrink: 0; }

    /* ─── SECTIONS ────────────────────────────────── */
    section { padding: 64px 40px; }

    .section-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--green-mid);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }
    .section-title {
      font-size: 30px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .section-sub {
      font-size: 15px;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.7;
      max-width: 520px;
    }

    /* ─── HOW IT WORKS ────────────────────────────── */
    .section-white { background: var(--bg-white); }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .step { position: relative; }
    .step-connector {
      position: absolute;
      top: 18px; left: 36px; right: 0;
      height: 1px;
      background: #d8edd8;
    }
    .step:last-child .step-connector { display: none; }
    .step-num {
      width: 36px; height: 36px;
      background: var(--green-mid);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700; color: #fff;
      margin-bottom: 14px;
    }
    .step-icon {
      width: 40px; height: 40px;
      background: var(--green-tint);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 12px;
      font-size: 18px;
    }
    .step-title { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
    .step-desc { font-size: 13px; color: #777; font-weight: 300; line-height: 1.6; }

    /* ─── SOLUTIONS ───────────────────────────────── */
    .section-page { background: var(--bg-page); }

    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 40px;
    }
    .sol-card {
      background: var(--bg-white);
      border-radius: 14px;
      border: 1px solid var(--border-light);
      padding: 24px;
      transition: box-shadow 0.2s;
    }
    .sol-card:hover { box-shadow: 0 4px 20px rgba(61,186,110,0.08); }
    .sol-icon {
      width: 44px; height: 44px;
      background: var(--green-tint);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
      font-size: 20px;
    }
    .sol-title { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
    .sol-desc { font-size: 13.5px; color: #777; font-weight: 300; line-height: 1.65; margin-bottom: 14px; }
    .sol-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .sol-tag {
      background: var(--green-tint);
      color: #2a8a4e;
      font-size: 11px;
      font-weight: 500;
      padding: 3px 10px;
      border-radius: 20px;
    }

    /* ─── FEATURES ────────────────────────────────── */
    .section-dark { background: var(--green-dark); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 40px;
    }
    .feat-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 20px;
    }
    .feat-icon { font-size: 22px; margin-bottom: 12px; }
    .feat-title { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
    .feat-desc { color: rgba(255,255,255,0.5); font-size: 12.5px; font-weight: 300; line-height: 1.6; }

    /* ─── PRICING + ROI ───────────────────────────── */
    /* ─── PRICING + ROI ───────────────────────────── */
    .pricing-section { background: var(--bg-white); padding: 64px 40px; }
    .pricing-section-header { text-align: center; margin-bottom: 48px; }
    .pricing-section-header .section-label { text-align: center; }
    .pricing-section-header .section-title { text-align: center; }

    .pricing-layout {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      align-items: start;
      max-width: 1080px;
      margin: 0 auto;
    }

    /* shared card base */
    .p-card {
      background: var(--bg-white);
      border: 1.5px solid var(--green-border);
      border-radius: 16px;
      padding: 28px;
    }
    .p-card--featured { border: 2px solid var(--green-mid); }

    .card-eyebrow {
      display: inline-block;
      background: var(--green-tint);
      color: #2a8a4e;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 16px;
    }
    .card-title { font-size: 15px; font-weight: 600; color: var(--text-primary); margin-bottom: 16px; }

    /* pricing card */
    .price-big { font-size: 40px; font-weight: 700; color: var(--green-mid); line-height: 1; }
    .price-period { font-size: 13px; color: var(--text-faint); font-weight: 300; margin-top: 4px; margin-bottom: 6px; }
    .price-setup { font-size: 12px; color: #888; margin-bottom: 20px; }
    .feat-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
    .feat-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: #444; }
    .feat-check {
      width: 17px; height: 17px;
      background: var(--green-tint);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 9px;
      color: var(--green-mid);
    }
    .btn-pricing-demo {
      display: block;
      text-align: center;
      text-decoration: none;
      background: var(--green-mid);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 12px;
      width: 100%;
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Sora', sans-serif;
      margin-bottom: 9px;
      transition: background 0.2s;
      box-sizing: border-box;
    }
    .btn-pricing-demo:hover { background: #2fa85e; }
    .btn-pricing-roi {
      background: var(--bg-white);
      color: var(--green-dark);
      border: 2px solid var(--green-mid);
      border-radius: 10px;
      padding: 10px;
      width: 100%;
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Sora', sans-serif;
      transition: background 0.2s;
    }
    .btn-pricing-roi:hover { background: var(--green-tint); }

    /* calculator inputs card */
    .roi-field { margin-bottom: 14px; }
    .roi-label {
      font-size: 11.5px;
      color: #555;
      font-weight: 500;
      margin-bottom: 5px;
      display: flex;
      justify-content: space-between;
    }
    .roi-label span { font-weight: 700; color: var(--green-dark); }
    .roi-slider { width: 100%; accent-color: var(--green-mid); cursor: pointer; }

    /* results card */
    .results-dark {
      background: var(--green-dark);
      border-radius: 12px;
      padding: 18px;
      margin-bottom: 14px;
    }
    .results-section-label {
      font-size: 10px;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 12px;
      font-weight: 500;
    }
    .metrics-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 12px;
    }
    .metric-val { font-size: 18px; font-weight: 700; color: var(--green-light); }
    .metric-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; font-weight: 300; }
    .res-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 12px 0; }
    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 12px;
    }
    .compare-label { font-size: 9.5px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
    .compare-val-green { font-size: 15px; font-weight: 700; color: var(--green-light); }
    .compare-val-muted { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.5); }
    .compare-sub { font-size: 9.5px; color: rgba(255,255,255,0.3); margin-top: 1px; }
    .advantage-box {
      background: rgba(95,211,141,0.1);
      border: 1px solid rgba(95,211,141,0.2);
      border-radius: 8px;
      padding: 9px 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }
    .advantage-label { font-size: 10.5px; color: rgba(255,255,255,0.55); }
    .advantage-val { font-size: 14px; font-weight: 700; color: var(--green-light); }
    .payback-row { display: flex; justify-content: space-between; align-items: center; }
    .payback-label { font-size: 11px; color: rgba(255,255,255,0.45); }
    .payback-val { font-size: 13px; font-weight: 700; color: #fff; }
    .roi-disclaimer { font-size: 10px; color: #aaa; line-height: 1.5; font-weight: 300; }
    .ratio-card { background: rgba(95,211,141,0.08); border: 1px solid rgba(95,211,141,0.25); border-radius: 10px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; margin: 12px 0; }
    .ratio-label { font-size: 10.5px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
    .ratio-val { font-size: 22px; font-weight: 700; color: #5fd38d; }
    .ratio-sub { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 2px; }
    .ratio-right { text-align: right; }
    .ratio-explain { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.5; max-width: 140px; }
    .ratio-highlight { color: #5fd38d; font-weight: 600; }

    /* ─── CTA SECTION ─────────────────────────────── */
    .cta-section {
      background: var(--green-mid);
      padding: 64px 40px;
      text-align: center;
    }
    .cta-section h2 {
      font-size: 34px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .cta-section p {
      color: rgba(255,255,255,0.9);
      font-size: 16px;
      font-weight: 300;
      margin-bottom: 28px;
    }
    .cta-btns { display: flex; gap: 12px; justify-content: center; }

    .btn-cta-white {
      background: #fff;
      color: var(--green-dark);
      border: none;
      border-radius: 10px;
      padding: 13px 28px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Sora', sans-serif;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-cta-white:hover { background: var(--green-tint); }

    .btn-cta-dark {
      background: var(--green-dark);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 13px 28px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Sora', sans-serif;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-cta-dark:hover { background: #2a4d35; }

    /* ─── FOOTER ──────────────────────────────────── */
    .footer {
      background: #111a11;
      padding: 40px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
    }
    .footer-brand-desc {
      color: rgba(255,255,255,0.4);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.7;
      margin-top: 12px;
      max-width: 260px;
    }
    .footer-col h4 { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 14px; }
    .footer-col a {
      display: block;
      color: rgba(255,255,255,0.45);
      font-size: 13px;
      font-weight: 300;
      text-decoration: none;
      margin-bottom: 8px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--green-light); }

    .footer-bottom {
      background: var(--green-deep);
      padding: 16px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

    /* ─── PARTNER'S REPORT ───────────────────────────── */
    .report-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
    .report-callouts { display: flex; flex-direction: column; gap: 16px; }
    .report-callout { display: flex; align-items: flex-start; gap: 14px; }
    .report-callout-icon { width: 38px; height: 38px; background: #fff; border: 1px solid #e0e8e0; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
    .report-callout-title { font-size: 14px; font-weight: 600; color: #1a1a1a; margin-bottom: 3px; }
    .report-callout-desc { font-size: 12.5px; color: #888; font-weight: 300; line-height: 1.55; }
    .report-right { }
    .report-tabs { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
    .report-tab { background: #fff; border: 1.5px solid #e0e8e0; border-radius: 7px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: #666; cursor: pointer; font-family: 'Sora', sans-serif; transition: all 0.2s; }
    .report-tab.active { background: #3dba6e; border-color: #3dba6e; color: #fff; }
    .report-tab:hover:not(.active) { border-color: #3dba6e; color: #3dba6e; }
    .browser-frame { background: #fff; border-radius: 12px; border: 1px solid #e0e8e0; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
    .browser-topbar { background: #f5f5f5; border-bottom: 1px solid #eee; padding: 8px 12px; display: flex; align-items: center; gap: 5px; }
    .browser-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
    .browser-urlbar { background: #fff; border: 1px solid #e0e0e0; border-radius: 5px; padding: 3px 10px; font-size: 10px; color: #bbb; margin-left: 6px; flex: 1; max-width: 200px; }
    @media (max-width: 768px) { .report-layout { grid-template-columns: 1fr; } }

    /* ─── VIDEO SECTION ──────────────────────────────── */
    .section-video {
      background: #0d140d;
      padding: 64px 40px;
      text-align: center;
    }
    .video-embed {
      max-width: 860px;
      margin: 0 auto;
      border-radius: 12px;
      overflow: hidden;
    }

    /* ─── RESPONSIVE ──────────────────────────────── */
    @media (max-width: 768px) {
      .nav { padding: 0 20px; }
      .nav-links { display: none; }
      .hero { grid-template-columns: 1fr; padding: 48px 20px 40px; }
      .phone-frame { display: none; }
      .hero h1 { font-size: 30px; }
      .steps { grid-template-columns: 1fr 1fr; }
      .solutions-grid { grid-template-columns: 1fr; }
      .features-grid { grid-template-columns: 1fr 1fr; }
      .pricing-layout { grid-template-columns: 1fr; }
      .footer { grid-template-columns: 1fr; }
      section { padding: 48px 20px; }
      .proof-bar { padding: 16px 20px; gap: 16px; }
      .proof-divider { display: none; }
      .section-video { padding: 48px 20px; }
      .video-embed iframe { height: 220px; }
    }

    /* ─── COOKIE BANNER ──────────────────────────────── */
    .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #1a2e1a; border-top: 1px solid rgba(95,211,141,0.2); padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; z-index: 9999; }
    .cookie-banner.hidden { display: none; }
    .cookie-banner-left { display: flex; align-items: center; gap: 12px; }
    .cookie-banner-text { }
    .cookie-banner-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 2px; }
    .cookie-banner-desc { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.5; }
    .cookie-banner-desc a { color: #5fd38d; text-decoration: none; }
    .cookie-banner-btns { display: flex; gap: 8px; flex-shrink: 0; }
    .btn-cookie-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1.5px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 8px 16px; font-size: 12.5px; font-weight: 600; cursor: pointer; font-family: 'Sora', sans-serif; transition: all 0.2s; }
    .btn-cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
    .btn-cookie-accept { background: #3dba6e; color: #fff; border: none; border-radius: 8px; padding: 8px 16px; font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: 'Sora', sans-serif; transition: background 0.2s; }
    .btn-cookie-accept:hover { background: #2fa85e; }
    @media (max-width: 768px) { .cookie-banner { padding: 16px 20px; flex-direction: column; align-items: flex-start; } }
  