*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    .material-icons-outlined,
    [class*="material-icons"],
    .feature-ic > span, .audience-ic > span, .value-ic > span,
    .info-row .ic > span, .step-ic > span, .hero-card .ic > span,
    .prod-icon > span, .cat-icon > span,
    .stt > span, .flow-arrow > span, .nav-cta .material-icons-outlined,
    .audience li::before, .faq-item summary::after {
      font-family: 'Material Icons Outlined' !important;
      font-weight: normal; font-style: normal;
      font-feature-settings: 'liga';
      -webkit-font-feature-settings: 'liga';
      font-variant-ligatures: discretionary-ligatures;
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      letter-spacing: normal;
      text-transform: none;
      display: inline-block;
      white-space: nowrap;
      direction: ltr;
    }
    :root {
      --navy: #0a2540;
      --navy-deep: #061a2e;
      --navy-soft: #14365a;
      --lime: #c4ff61;
      --lime-deep: #a8e646;
      --light-blue: #8ecae6;
      --cream: #fef8f0;
      --cream-deep: #f7eedf;
      --dark-green: #2d6a4f;
      --green-soft: #e8f3ec;
      --ink: #0e1a2b;
      --ink-mid: #3b4858;
      --ink-soft: #6b7888;
      --line: #e6e1d6;
      --line-soft: #f0ebe0;
      --white: #ffffff;
      --max: 1200px;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; color: var(--navy); letter-spacing: -0.02em; }
    h1 { font-weight: 800; }
    h2 { font-weight: 700; }
    h3 { font-weight: 600; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font-family: inherit; cursor: pointer; }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal.d1 { transition-delay: .08s; }
    .reveal.d2 { transition-delay: .16s; }
    .reveal.d3 { transition-delay: .24s; }
    .reveal.d4 { transition-delay: .32s; }

    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

    /* ───────── NAV ───────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0);
      backdrop-filter: blur(0);
      border-bottom: 1px solid transparent;
      transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease, box-shadow .3s ease;
    }
    .nav.scrolled {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line-soft);
      box-shadow: 0 2px 20px rgba(10,37,64,0.04);
    }
    .nav-inner {
      max-width: var(--max); margin: 0 auto; height: 76px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 28px;
    }
    .brand { display: flex; align-items: center; gap: 12px; }
    .brand-mark {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--navy); display: flex; align-items: center; justify-content: center;
      overflow: hidden; padding: 3px;
      border: 2px solid var(--lime);
      box-shadow: 0 4px 14px rgba(10,37,64,0.18);
    }
    .brand-mark img { width: 100%; height: 100%; object-fit: contain; }
    .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
    .brand-name { font-family: 'Poppins'; font-weight: 800; font-size: 19px; color: var(--navy); letter-spacing: -0.02em; }
    .brand-sub { font-size: 11px; color: var(--ink-soft); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }

    .nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
    .nav-links a {
      font-size: 14.5px; font-weight: 500; color: var(--ink-mid);
      transition: color .2s ease; position: relative; padding: 6px 0;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--navy); }
    .nav-links a.active::after {
      content: ""; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
      background: var(--lime-deep); border-radius: 2px;
    }
    .nav-cta {
      background: var(--navy); color: white; border: none;
      padding: 9px 16px; border-radius: 999px;
      gap: 2px;
      font-family: 'Poppins'; font-weight: 600; font-size: 13px;
      letter-spacing: 0.01em;
      transition: all .2s ease;
    }
    .nav-cta-icon {
      font-size: 13px;
      line-height: 1;
      color: var(--lime);
      flex-shrink: 0;
    }
    .nav-cta:hover { background: var(--navy-soft); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(10,37,64,0.25); }

    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
    .hamburger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s ease; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ───────── HERO ───────── */
    .hero {
      position: relative; padding: 160px 28px 100px;
      background: linear-gradient(180deg, #fbf6ec 0%, #ffffff 100%);
      overflow: hidden;
    }
    .hero-blob {
      position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.45; z-index: 0;
    }
    .blob-1 { top: -120px; right: -100px; width: 480px; height: 480px; background: rgba(196,255,97,0.55); }
    .blob-2 { bottom: -180px; left: -120px; width: 420px; height: 420px; background: rgba(142,202,230,0.45); }
    .hero-grid {
      max-width: var(--max); margin: 0 auto; position: relative; z-index: 1;
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
    }
    .pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: white; border: 1px solid var(--line);
      padding: 7px 14px; border-radius: 100px;
      font-size: 12.5px; font-weight: 600; color: var(--navy);
      letter-spacing: 0.02em;
    }
    .pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime-deep); box-shadow: 0 0 0 4px rgba(196,255,97,0.3); }
    .hero h1 {
      font-size: clamp(40px, 5.4vw, 64px); line-height: 1.05; margin: 22px 0 22px;
      letter-spacing: -0.03em;
    }
    .hero h1 .accent { color: var(--dark-green); }
    .hero h1 .underline {
      background-image: linear-gradient(transparent 65%, rgba(196,255,97,0.6) 65%);
      background-repeat: no-repeat; padding: 0 4px;
    }
    .hero p.lead {
      font-size: 18px; color: var(--ink-mid); max-width: 520px;
      margin-bottom: 36px; line-height: 1.65;
    }
    .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: 10px;
      font-family: 'Poppins'; font-weight: 600; font-size: 15px;
      border: none; transition: all .2s ease;
    }
    .btn-primary {
      background: var(--navy); color: white;
      box-shadow: 0 8px 24px rgba(10,37,64,0.2);
    }
    .btn-primary:hover { transform: translateY(-2px); background: var(--navy-soft); box-shadow: 0 12px 30px rgba(10,37,64,0.3); }
    .btn-ghost {
      background: transparent; color: var(--navy);
      border: 1.5px solid var(--navy);
    }
    .btn-ghost:hover { background: var(--navy); color: white; }
    .btn-lime {
      background: var(--lime); color: var(--navy);
      box-shadow: 0 8px 24px rgba(196,255,97,0.4);
    }
    .btn-lime:hover { transform: translateY(-2px); background: var(--lime-deep); }

    /* Hero visual — illustrated card stack */
    .hero-visual {
      position: relative; aspect-ratio: 1/1; max-width: 480px; margin-left: auto;
    }
    .hero-card {
      position: absolute; background: white; border-radius: 16px;
      border: 1px solid var(--line); box-shadow: 0 18px 48px rgba(10,37,64,0.10);
      padding: 18px; display: flex; align-items: center; gap: 12px;
    }
    .hero-card .ic {
      width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Material Icons Outlined'; font-size: 24px;
    }
    .hero-card .ic.lime { background: var(--lime); color: var(--navy); }
    .hero-card .ic.green { background: var(--green-soft); color: var(--dark-green); }
    .hero-card .ic.blue { background: rgba(142,202,230,0.25); color: #1d6f96; }
    .hero-card .ic.navy { background: var(--navy); color: var(--lime); }
    .hero-card .lbl { font-family: 'Poppins'; font-weight: 600; font-size: 14px; color: var(--navy); }
    .hero-card .sub { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
    .hero-c1 { top: 4%; left: 0; animation: float 6s ease-in-out infinite; }
    .hero-c2 { top: 24%; right: 0; animation: float 6s ease-in-out infinite .8s; }
    .hero-c3 { bottom: 28%; left: 8%; animation: float 6s ease-in-out infinite 1.6s; }
    .hero-c4 { bottom: 4%; right: 4%; animation: float 6s ease-in-out infinite 2.4s; }
    .hero-center {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 140px; height: 140px; border-radius: 50%;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 20px 50px rgba(10,37,64,0.3);
      border: 6px solid var(--lime);
    }
    .hero-center img { width: 78%; height: 78%; object-fit: contain; }
    @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

    /* ───────── SECTIONS ───────── */
    section { padding: 100px 28px; }
    .section-inner { max-width: var(--max); margin: 0 auto; }
    .section-bg-cream { background: var(--cream); }
    .section-bg-navy { background: var(--navy); color: white; }
    .section-bg-navy h2, .section-bg-navy h3 { color: white; }

    .eyebrow {
      display: inline-block; font-family: 'Poppins'; font-weight: 600;
      font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--dark-green); margin-bottom: 14px;
    }
    .section-bg-navy .eyebrow { color: var(--lime); }
    .section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
    .section-head.left { margin-left: 0; text-align: left; }
    .section-head h2 { font-size: clamp(32px, 4vw, 46px); line-height: 1.12; margin-bottom: 18px; }
    .section-head p { font-size: 17px; color: var(--ink-mid); line-height: 1.65; }
    .section-bg-navy .section-head p { color: rgba(255,255,255,0.75); }

    /* ───────── ACRONYMS ───────── */
    .acronym-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
      max-width: 880px; margin: 0 auto;
    }
    .acronym {
      background: white; border: 1px solid var(--line); border-radius: 16px;
      padding: 32px 28px; display: flex; gap: 20px; align-items: flex-start;
      transition: all .3s ease;
    }
    .acronym:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,37,64,0.08); border-color: var(--lime-deep); }
    .acronym-key {
      flex-shrink: 0;
      font-family: 'Poppins'; font-weight: 800; font-size: 26px; color: white;
      background: var(--navy); width: 72px; height: 72px;
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
      letter-spacing: -0.02em;
    }
    .acronym-key.alt { background: var(--dark-green); }
    .acronym h3 { font-size: 18px; margin-bottom: 6px; }
    .acronym p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

    /* ───────── FEATURE CARDS ───────── */
    .feature-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .feature {
      background: white; border: 1px solid var(--line); border-radius: 16px;
      padding: 32px 28px; transition: all .3s ease;
    }
    .feature:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(10,37,64,0.08); border-color: var(--line-soft); }
    .feature-ic {
      width: 52px; height: 52px; border-radius: 12px;
      background: var(--green-soft); color: var(--dark-green);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Material Icons Outlined'; font-size: 28px;
      margin-bottom: 22px;
    }
    .feature-ic.lime { background: var(--lime); color: var(--navy); }
    .feature-ic.blue { background: rgba(142,202,230,0.25); color: #1d6f96; }
    .feature-ic.cream { background: var(--cream-deep); color: #8a6a2e; }
    .feature h3 { font-size: 19px; margin-bottom: 10px; }
    .feature p { color: var(--ink-mid); font-size: 14.5px; line-height: 1.65; }

    /* ───────── FLOW (How it works) ───────── */
    .flow-rail {
      position: relative; max-width: 1000px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr; gap: 0;
      align-items: stretch;
    }
    .flow-node {
      background: white; border: 1px solid var(--line); border-radius: 14px;
      padding: 22px 18px; text-align: center;
    }
    .flow-node.bad { border-color: rgba(255,107,53,0.3); background: #fff8f4; }
    .flow-node.good { border-color: rgba(45,106,79,0.25); background: var(--green-soft); }
    .flow-node .step-ic {
      width: 48px; height: 48px; border-radius: 12px; margin: 0 auto 12px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Material Icons Outlined'; font-size: 26px;
      background: var(--navy); color: var(--lime);
    }
    .flow-node.bad .step-ic { background: #ff6b35; color: white; }
    .flow-node.good .step-ic { background: var(--dark-green); color: white; }
    .flow-node h4 { font-family: 'Poppins'; font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
    .flow-node p { font-size: 12.5px; color: var(--ink-soft); }
    .flow-arrow {
      display: flex; align-items: center; justify-content: center;
      color: #b4b9c2;
      font-family: 'Material Icons Outlined'; font-size: 28px;
    }
    .flow-summary {
      margin-top: 36px; padding: 22px 28px;
      background: white; border: 1px dashed var(--line);
      border-radius: 12px; display: flex; gap: 32px; justify-content: center;
      flex-wrap: wrap;
    }
    .flow-stat .lbl { font-size: 12px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
    .flow-stat .val { font-family: 'Poppins'; font-weight: 800; font-size: 26px; color: var(--navy); margin-top: 4px; }
    .flow-stat.bad .val { color: #d65a2a; }
    .flow-stat.good .val { color: var(--dark-green); }

    /* ───────── AUDIENCE SPLIT ───────── */
    .audience-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .audience {
      position: relative; padding: 38px 32px;
      border-radius: 20px; overflow: hidden;
      transition: all .35s ease;
    }
    .audience:hover { transform: translateY(-6px); }
    .audience.farmers { background: linear-gradient(160deg, #f4fbe9 0%, #e7f6cf 100%); }
    .audience.artisans { background: linear-gradient(160deg, #f0f7ed 0%, #d8ebd0 100%); }
    .audience.buyers { background: linear-gradient(160deg, #ecf6fb 0%, #d6ebf5 100%); }
    .audience-ic {
      width: 56px; height: 56px; border-radius: 14px; background: white;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Material Icons Outlined'; font-size: 30px; color: var(--navy);
      margin-bottom: 20px;
      box-shadow: 0 6px 18px rgba(10,37,64,0.08);
    }
    .audience h3 { font-size: 22px; margin-bottom: 10px; }
    .audience p { color: var(--ink-mid); margin-bottom: 22px; font-size: 14.5px; line-height: 1.6; }
    .audience ul { list-style: none; margin-bottom: 26px; }
    .audience li {
      font-size: 13.5px; color: var(--ink); padding: 6px 0;
      display: flex; align-items: flex-start; gap: 8px;
    }
    .audience li::before {
      content: "check"; font-family: 'Material Icons Outlined'; font-size: 16px;
      color: var(--dark-green); margin-top: 1px;
    }
    .audience .btn { padding: 11px 22px; font-size: 14px; }

    /* ───────── STORIES ───────── */
    .stories-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
    }
    .story {
      background: white; border: 1px solid var(--line); border-radius: 18px;
      padding: 32px; transition: all .3s ease;
    }
    .story:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,37,64,0.08); }
    .story-quote {
      font-family: 'Poppins'; font-weight: 500; font-size: 17px;
      color: var(--navy); line-height: 1.55; margin-bottom: 24px;
      letter-spacing: -0.01em;
    }
    .story-quote::before {
      content: "\201C"; font-family: 'Poppins'; font-size: 56px; color: var(--lime-deep);
      line-height: 0; vertical-align: -16px; margin-right: 4px; font-weight: 700;
    }
    .story-byline { display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid var(--line-soft); }
    .story-avatar {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--cream); border: 2px solid var(--lime);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Poppins'; font-weight: 700; color: var(--navy); font-size: 17px;
    }
    .story-name { font-family: 'Poppins'; font-weight: 600; font-size: 14.5px; color: var(--navy); }
    .story-role { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }

    /* ───────── VALUES (3-up navy) ───────── */
    .values-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .value {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px; padding: 32px 28px;
      transition: all .3s ease;
    }
    .value:hover { background: rgba(255,255,255,0.07); border-color: var(--lime-deep); }
    .value-ic {
      width: 50px; height: 50px; border-radius: 12px;
      background: rgba(196,255,97,0.15); color: var(--lime);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Material Icons Outlined'; font-size: 26px;
      margin-bottom: 22px;
    }
    .value h3 { font-size: 19px; margin-bottom: 10px; }
    .value p { color: rgba(255,255,255,0.72); font-size: 14.5px; line-height: 1.65; }

    /* ───────── FAQ ───────── */
    .faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: white; border: 1px solid var(--line); border-radius: 12px;
      overflow: hidden; transition: all .25s ease;
    }
    .faq-item[open] { border-color: var(--lime-deep); box-shadow: 0 8px 24px rgba(10,37,64,0.06); }
    .faq-item summary {
      padding: 22px 26px; cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      font-family: 'Poppins'; font-weight: 600; font-size: 16px; color: var(--navy);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: "add"; font-family: 'Material Icons Outlined'; font-size: 22px;
      color: var(--ink-soft); transition: transform .25s ease;
    }
    .faq-item[open] summary::after { content: "remove"; color: var(--dark-green); }
    .faq-item .a { padding: 0 26px 22px; color: var(--ink-mid); font-size: 14.5px; line-height: 1.7; }

    /* ───────── CONTACT ───────── */
    .contact-wrap {
      display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px;
      max-width: 1080px; margin: 0 auto;
    }
    .contact-card {
      background: white; border: 1px solid var(--line); border-radius: 18px;
      padding: 40px;
    }
    .contact-card h3 { font-size: 22px; margin-bottom: 22px; }
    .form-row { margin-bottom: 16px; }
    .form-row label {
      display: block; font-family: 'Poppins'; font-weight: 600; font-size: 12.5px;
      color: var(--navy); margin-bottom: 7px; letter-spacing: 0.04em; text-transform: uppercase;
    }
    .form-row input, .form-row textarea {
      width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 9px;
      font-family: 'DM Sans'; font-size: 15px; color: var(--ink); background: white;
      transition: all .2s ease;
    }
    .form-row input:focus, .form-row textarea:focus {
      outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(10,37,64,0.08);
    }
    .form-row textarea { resize: vertical; min-height: 110px; }
    .info-block {
      background: var(--navy); color: white; border-radius: 18px; padding: 40px;
      display: flex; flex-direction: column; gap: 26px;
      background-image: radial-gradient(circle at 100% 0%, rgba(196,255,97,0.18), transparent 50%);
    }
    .info-block h3 { color: white; font-size: 22px; }
    .info-row { display: flex; gap: 16px; align-items: flex-start; }
    .info-row .ic {
      width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
      background: rgba(196,255,97,0.15); color: var(--lime);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Material Icons Outlined'; font-size: 22px;
    }
    .info-row .lbl { font-family: 'Poppins'; font-weight: 600; font-size: 12.5px; color: var(--lime); letter-spacing: 0.06em; text-transform: uppercase; }
    .info-row .val { font-size: 15px; color: rgba(255,255,255,0.92); margin-top: 4px; }
    .info-row .val a { color: rgba(255,255,255,0.92); border-bottom: 1px solid rgba(255,255,255,0.3); }

    /* ───────── FOOTER ───────── */
    footer.foot {
      background: var(--navy-deep); color: rgba(255,255,255,0.7);
      padding: 60px 28px 32px;
    }
    .foot-inner { max-width: var(--max); margin: 0 auto; }
    .foot-grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
      padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .foot-brand-name { font-family: 'Poppins'; font-weight: 800; font-size: 20px; color: white; margin-bottom: 6px; }
    .foot-tag { font-size: 14px; line-height: 1.6; max-width: 320px; }
    .foot-col h4 { font-family: 'Poppins'; font-weight: 600; font-size: 13px; color: white; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
    .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .foot-col a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color .2s ease; }
    .foot-col a:hover { color: var(--lime); }
    .foot-base {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5);
      flex-wrap: wrap; gap: 10px;
    }

    /* ───────── PRIVACY ───────── */
    .privacy-card {
      background: white; border: 1px solid var(--line); border-radius: 16px;
      padding: 32px 28px; position: relative; transition: all .3s ease;
    }
    .privacy-card:hover { border-color: var(--lime-deep); box-shadow: 0 14px 36px rgba(10,37,64,0.07); transform: translateY(-3px); }
    .privacy-card h3 { font-size: 18px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 2px solid var(--lime); display: inline-block; padding-right: 8px; }
    .privacy-card p { color: var(--ink-mid); font-size: 14.5px; line-height: 1.65; }
    .privacy-card p + p { margin-top: 8px; }
    .privacy-num {
      position: absolute; top: 24px; right: 24px;
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--cream); color: var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Poppins'; font-weight: 700; font-size: 13px;
      letter-spacing: 0.02em;
    }
    .p-list { list-style: none; margin-top: 4px; display: flex; flex-direction: column; gap: 8px; }
    .p-list li { font-size: 14px; color: var(--ink-mid); line-height: 1.6; padding-left: 22px; position: relative; }
    .p-list li::before {
      content: "check_circle"; font-family: 'Material Icons Outlined'; font-size: 15px;
      color: var(--dark-green); position: absolute; left: 0; top: 2px;
      font-feature-settings: 'liga'; -webkit-font-feature-settings: 'liga';
    }
    .right-chip {
      display: flex; gap: 12px; align-items: flex-start;
      background: white; border: 1px solid var(--line-soft); border-radius: 12px;
      padding: 14px 16px;
    }
    .right-chip .material-icons-outlined {
      width: 34px; height: 34px; border-radius: 9px;
      background: var(--green-soft); color: var(--dark-green);
      display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0;
      overflow: hidden; text-indent: 0;
    }
    .right-chip strong { display: block; font-family: 'Poppins'; font-weight: 600; font-size: 13.5px; color: var(--navy); margin-bottom: 2px; }
    .right-chip span:not(.material-icons-outlined) { font-size: 12.5px; color: var(--ink-soft); display: block; line-height: 1.4; }
    .privacy-contact {
      background: var(--navy) !important; color: white;
      border-color: var(--navy) !important;
      background-image: radial-gradient(circle at 100% 0%, rgba(196,255,97,0.15), transparent 50%) !important;
    }
    .privacy-contact h3 { color: white; border-bottom-color: var(--lime); }
    .info-pill { display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 14px 16px; }
    .info-pill .material-icons-outlined { width: 34px; height: 34px; border-radius: 9px; background: rgba(196,255,97,0.15); color: var(--lime); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; overflow: hidden; }
    .info-pill strong { display: block; font-family: 'Poppins'; font-weight: 600; font-size: 13.5px; color: white; margin-bottom: 2px; }
    .info-pill span:not(.material-icons-outlined) { font-size: 12px; color: rgba(255,255,255,0.65); display: block; }
    @media (max-width: 900px) {
      .privacy-grid { grid-template-columns: 1fr !important; }
      .privacy-card[style*="span 2"] { grid-column: span 1 !important; }
      .rights-grid, .contact-pills { grid-template-columns: 1fr !important; }
    }

    /* Scroll-to-top */
    .stt {
      position: fixed; bottom: 24px; right: 24px; z-index: 50;
      width: 46px; height: 46px; border-radius: 50%; border: none;
      background: var(--navy); color: var(--lime);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Material Icons Outlined'; font-size: 22px;
      box-shadow: 0 10px 24px rgba(10,37,64,0.25);
      opacity: 0; pointer-events: none;
      transition: all .3s ease;
    }
    .stt.show { opacity: 1; pointer-events: auto; }
    .stt:hover { transform: translateY(-3px); background: var(--navy-soft); }

    /* ───────── RESPONSIVE ───────── */
    @media (max-width: 980px) {
      .hero-grid { grid-template-columns: 1fr; gap: 48px; }
      .hero-visual { margin: 0 auto; max-width: 380px; }
      .feature-grid { grid-template-columns: 1fr 1fr; }
      .audience-grid { grid-template-columns: 1fr; }
      .stories-grid { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr; }
      .acronym-grid { grid-template-columns: 1fr; }
      .contact-wrap { grid-template-columns: 1fr; }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .flow-rail { grid-template-columns: 1fr; gap: 12px; }
      .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
      .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0;
        background: white; flex-direction: column; gap: 0; padding: 20px 28px;
        border-bottom: 1px solid var(--line); }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); width: 100%; }
      .nav-links a:last-of-type { border-bottom: none; }
      .hamburger { display: flex; }
      .nav-cta { display: none; }
    }
    @media (max-width: 600px) {
      section { padding: 70px 22px; }
      .hero { padding: 130px 22px 70px; }
      .feature-grid { grid-template-columns: 1fr; }
      .foot-grid { grid-template-columns: 1fr; }
      .contact-card, .info-block { padding: 28px; }
      .acronym { padding: 24px; flex-direction: column; gap: 14px; }
      .acronym-key { width: 60px; height: 60px; font-size: 22px; }
    }

    @media (max-width: 768px) {
      .nav-cta {
        font-size: 0.8rem;
        padding: 6px 14px;
      }
    }

    .woot--bubble-holder,
    .woot-widget-bubble {
      bottom: 20px !important;
      right: 82px !important;
    }
