
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --mango: #F5A623;
      --mango-dark: #C07D0E;
      --mango-light: #FEF3DC;
      --green: #2D7A4F;
      --green-light: #EAF4EE;
      --ink: #1A1A1A;
      --ink-mid: #4A4A4A;
      --ink-muted: #767676;
      --surface: #FFFFFF;
      --surface-alt: #F8F7F4;
      --border: #E5E3DE;
      --radius: 10px;
    }

    html { font-size: 16px; scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
      color: var(--ink);
      background: var(--surface);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Layout ── */
    .container { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }
    .section { padding: 3.5rem 0; }
    .section + .section { border-top: 1px solid var(--border); }

    /* ── Breadcrumb ── */
    .breadcrumb {
      background: var(--surface-alt);
      border-bottom: 1px solid var(--border);
      padding: 0.65rem 0;
      font-size: 0.8rem;
      color: var(--ink-muted);
    }
    .breadcrumb a { color: var(--ink-muted); text-decoration: none; }
    .breadcrumb a:hover { color: var(--mango-dark); }
    .breadcrumb span { margin: 0 0.4rem; }

    /* ── Hero ── */
    .hero {
      padding: 3rem 0 2.5rem;
      border-bottom: 1px solid var(--border);
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mango-dark);
      background: var(--mango-light);
      padding: 0.3rem 0.8rem;
      border-radius: 99px;
      margin-bottom: 1.2rem;
    }
    .hero h1 {
      font-size: clamp(1.75rem, 4vw, 2.6rem);
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 1rem;
    }
    .hero h1 em { font-style: normal; color: var(--mango-dark); }
    .hero-sub {
      font-size: 1.05rem;
      color: var(--ink-mid);
      max-width: 620px;
      margin-bottom: 2rem;
    }

    /* Trust bar */
    .trust-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem 1.4rem;
      font-size: 0.82rem;
      color: var(--ink-mid);
      margin-bottom: 2rem;
    }
    .trust-item { display: flex; align-items: center; gap: 0.35rem; }
    .trust-item svg { color: var(--green); flex-shrink: 0; }

    /* CTA buttons */
    .btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .btn-primary {
      display: inline-block;
      background: var(--mango);
      color: #fff;
      font-weight: 600;
      font-size: 0.92rem;
      padding: 0.7rem 1.6rem;
      border-radius: var(--radius);
      text-decoration: none;
      transition: background 0.15s;
    }
    .btn-primary:hover { background: var(--mango-dark); }
    .btn-secondary {
      display: inline-block;
      background: transparent;
      color: var(--ink);
      font-weight: 500;
      font-size: 0.92rem;
      padding: 0.7rem 1.6rem;
      border-radius: var(--radius);
      border: 1.5px solid var(--border);
      text-decoration: none;
      transition: border-color 0.15s;
    }
    .btn-secondary:hover { border-color: var(--ink-mid); }

    /* ── Specs grid ── */
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .spec-cell {
      background: var(--surface);
      padding: 1.1rem 1.3rem;
    }
    .spec-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-bottom: 0.3rem;
    }
    .spec-val {
      font-size: 1rem;
      font-weight: 600;
      color: var(--ink);
    }

    /* ── Section headings ── */
    .section-heading {
      font-size: 1.45rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--ink);
      margin-bottom: 0.5rem;
    }
    .section-sub {
      font-size: 0.92rem;
      color: var(--ink-muted);
      margin-bottom: 2rem;
    }

    /* ── Why section — two-col ── */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
    }
    .why-card {
      background: var(--surface-alt);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.3rem 1.4rem;
    }
    .why-icon {
      width: 36px; height: 36px;
      background: var(--mango-light);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 0.85rem;
      color: var(--mango-dark);
      font-size: 1.1rem;
    }
    .why-card h3 {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.4rem;
    }
    .why-card p {
      font-size: 0.84rem;
      color: var(--ink-mid);
      line-height: 1.6;
    }

    /* ── Process steps ── */
    .process-steps { display: flex; flex-direction: column; gap: 0; }
    .process-step {
      display: flex;
      gap: 1.2rem;
      padding: 1.3rem 0;
      border-bottom: 1px solid var(--border);
    }
    .process-step:last-child { border-bottom: none; }
    .step-num {
      flex-shrink: 0;
      width: 32px; height: 32px;
      background: var(--ink);
      color: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      margin-top: 2px;
    }
    .step-body h3 {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.25rem;
    }
    .step-body p {
      font-size: 0.84rem;
      color: var(--ink-mid);
      line-height: 1.6;
    }

    /* ── Market section ── */
    .market-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
    .market-tag {
      background: var(--green-light);
      color: var(--green);
      font-size: 0.8rem;
      font-weight: 500;
      padding: 0.3rem 0.85rem;
      border-radius: 99px;
    }

    /* ── Certifications ── */
    .cert-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .cert-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--surface-alt);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0.6rem 1rem;
      font-size: 0.84rem;
      font-weight: 500;
      color: var(--ink);
    }
    .cert-badge svg { color: var(--green); }

    /* ── FAQ ── */
    .faq-list { display: flex; flex-direction: column; gap: 0; }
    details {
      border-bottom: 1px solid var(--border);
    }
    details:first-child { border-top: 1px solid var(--border); }
    summary {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--ink);
      padding: 1.1rem 0;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: '+';
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--ink-muted);
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    details[open] summary::after { content: '−'; }
    .faq-answer {
      font-size: 0.88rem;
      color: var(--ink-mid);
      line-height: 1.75;
      padding-bottom: 1.1rem;
      max-width: 680px;
    }

    /* ── CTA block ── */
    .cta-block {
      background: var(--ink);
      color: #fff;
      border-radius: 14px;
      padding: 2.5rem 2rem;
      text-align: center;
    }
    .cta-block h2 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }
    .cta-block p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.65);
      margin-bottom: 1.6rem;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }
    .btn-cta {
      display: inline-block;
      background: var(--mango);
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 0.8rem 2rem;
      border-radius: var(--radius);
      text-decoration: none;
    }
    .btn-cta:hover { background: var(--mango-dark); }

    /* ── Flavor profile table ── */
    .flavor-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
    .flavor-table th {
      text-align: left;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-muted);
      padding: 0.6rem 1rem;
      background: var(--surface-alt);
    }
    .flavor-table td {
      padding: 0.75rem 1rem;
      border-top: 1px solid var(--border);
      color: var(--ink-mid);
      vertical-align: top;
    }
    .flavor-table td:first-child { font-weight: 600; color: var(--ink); width: 35%; }

    /* ── Responsive ── */
    @media (max-width: 600px) {
      .section { padding: 2.5rem 0; }
      .hero { padding: 2rem 0 2rem; }
      .hero h1 { font-size: 1.65rem; }
      .specs-grid { grid-template-columns: 1fr 1fr; }
      .cta-block { padding: 2rem 1.25rem; }
    }

    /* ── Utility ── */
    .mt-2 { margin-top: 2rem; }
    .prose p { margin-bottom: 0.9rem; font-size: 0.92rem; color: var(--ink-mid); line-height: 1.75; }
    .prose p:last-child { margin-bottom: 0; }
  