/* =============================================
   VIRIDA — Botanical Men's Health
   "Analysis Sheet" clinical-botanical identity
   ============================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* ink / botanical greens */
    --ink:        #16352a;   /* deep forest — primary text & dark sections */
    --ink-2:      #234a3b;
    --moss:       #3d6b52;
    --sage:       #6b8a6f;
    --sage-soft:  #aebdac;

    /* paper / surfaces */
    --paper:      #fbfcfa;   /* cool near-white page */
    --paper-2:    #f1f4ef;   /* tinted panel */
    --paper-3:    #e6ebe3;
    --line:       #d3dbcf;   /* hairline */
    --line-2:     #c2ccbc;
    --white:      #ffffff;

    /* the one warm signal */
    --amber:      #b8862f;
    --amber-soft: #e7d9b6;
    --amber-bg:   #f7f0dd;

    --muted:      #5f7166;
    --muted-2:    #7d8c81;

    /* type */
    --display: 'Space Grotesk', 'Segoe UI', sans-serif;
    --body:    'Inter', 'Segoe UI', sans-serif;
    --mono:    'JetBrains Mono', ui-monospace, monospace;

    --maxw: 1080px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.62;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

/* shared eyebrow — the "lab-report row label" signature */
.eyebrow {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--amber);
}
.eyebrow.on-dark { color: var(--amber-soft); }
.eyebrow.on-dark::before { background: var(--amber-soft); }

/* shared section heading */
.s-head {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(27px, 3.6vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    max-width: 18ch;
}
.s-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.s-head.on-dark { color: var(--paper); }

.s-intro {
    font-size: 16.5px;
    color: var(--muted);
    max-width: 56ch;
    margin-top: 16px;
    line-height: 1.7;
}
.s-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
    background: var(--ink);
    color: var(--sage-soft);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    padding: 9px 20px;
}
.topbar b { color: var(--paper); font-weight: 500; }
.topbar .dot { color: var(--moss); }

/* =============================================
   HEADER (static, hairline — not sticky pill)
   ============================================= */
.site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: baseline;
    gap: 9px;
    text-decoration: none;
}
.brand-mark {
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.18em;
    color: var(--ink);
}
.brand-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
}
.nav {
    display: flex;
    gap: 30px;
}
.nav a {
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: 0.05em;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.18s;
}
.nav a:hover { color: var(--ink); }

.cta-link {
    font-family: var(--display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.01em;
    color: var(--paper);
    background: var(--ink);
    padding: 11px 22px;
    text-decoration: none;
    border: 1px solid var(--ink);
    transition: background 0.18s, color 0.18s;
}
.cta-link:hover { background: transparent; color: var(--ink); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 28px;
    text-decoration: none;
    border: 1px solid var(--ink);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.18s;
}
.btn svg { transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--ink-2); }

.btn-amber {
    background: var(--amber);
    border-color: var(--amber);
    color: #2a1f06;
}
.btn-amber:hover { background: #a5781f; border-color: #a5781f; }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-ghost-light {
    background: transparent;
    color: var(--paper);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn.lg { font-size: 16px; padding: 17px 34px; }

/* =============================================
   HERO  (asymmetric: copy left, spec panel right)
   ============================================= */
.hero {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}
.hero-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 600px;
}
.hero-copy {
    padding: 70px 56px 70px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-kicker {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
}
.hero-kicker .live {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--moss);
    box-shadow: 0 0 0 0 rgba(61,107,82,0.5);
    animation: ping 2.4s infinite;
}
@keyframes ping {
    0% { box-shadow: 0 0 0 0 rgba(61,107,82,0.45); }
    70% { box-shadow: 0 0 0 8px rgba(61,107,82,0); }
    100% { box-shadow: 0 0 0 0 rgba(61,107,82,0); }
}
.hero-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(38px, 5.4vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--ink);
}
.hero-title .accent {
    display: inline-block;
    color: var(--amber);
    position: relative;
}
.hero-title .accent::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 6px;
    height: 8px;
    background: var(--amber-soft);
    z-index: -1;
    opacity: 0.6;
}
.hero-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.72;
    max-width: 46ch;
    margin: 24px 0 30px;
}
.hero-checks {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 20px;
    margin-bottom: 16px;
}
.hero-checks li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
}
.tick {
    flex-shrink: 0;
    width: 17px; height: 17px;
    margin-top: 2px;
    border: 1.5px solid var(--moss);
    color: var(--moss);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800;
}
.hero-note {
    font-family: var(--mono);
    font-size: 11px;
    line-height: 1.6;
    color: var(--muted-2);
    margin-bottom: 30px;
    max-width: 52ch;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}
.hero-rating { display: flex; flex-direction: column; gap: 2px; }
.hero-rating .stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; }
.hero-rating span { font-family: var(--mono); font-size: 11.5px; color: var(--muted); }

/* hero spec panel */
.hero-panel {
    background: var(--ink);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-panel::before {
    /* faint grid texture */
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 36px 36px;
}
.hero-product {
    position: relative;
    z-index: 2;
    width: 290px;
    max-width: 80%;
    filter: drop-shadow(0 26px 50px rgba(0,0,0,0.55));
    animation: drift 5s ease-in-out infinite;
}
@keyframes drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.spec-chip {
    position: absolute;
    z-index: 3;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 12px 15px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}
.spec-chip .num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 24px;
    color: var(--ink);
    line-height: 1;
}
.spec-chip .lbl {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-top: 4px;
}
.spec-chip.c1 { top: 46px; left: 24px; }
.spec-chip.c2 { bottom: 130px; right: 22px; }
.spec-chip.c3 { bottom: 40px; left: 36px; }
.spec-chip .num .amb { color: var(--amber); }

/* =============================================
   INGREDIENTS  (analysis-sheet rows — signature)
   ============================================= */
.ingredients {
    background: var(--paper);
    padding: 90px 0;
}
.ing-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.ing-sheet {
    border-top: 1.5px solid var(--ink);
}
.ing-sheet-headrow {
    display: grid;
    grid-template-columns: 56px 1.4fr 1fr 92px;
    gap: 20px;
    padding: 12px 4px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-2);
    border-bottom: 1px solid var(--line);
}
.ing-row {
    display: grid;
    grid-template-columns: 56px 1.4fr 1fr 92px;
    gap: 20px;
    padding: 24px 4px;
    border-bottom: 1px solid var(--line);
    align-items: center;
    transition: background 0.18s;
}
.ing-row:hover { background: var(--paper-2); }
.ing-idx {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--amber);
    font-weight: 500;
}
.ing-name {
    font-family: var(--display);
    font-weight: 600;
    font-size: 19px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.ing-latin {
    font-family: var(--mono);
    font-size: 11.5px;
    font-style: normal;
    color: var(--sage);
    display: block;
    margin-top: 3px;
}
.ing-role { font-size: 14px; color: var(--muted); line-height: 1.55; }
.ing-dose {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 15px;
    color: var(--ink);
    text-align: right;
    white-space: nowrap;
}
.ing-dose small { display: block; font-size: 10px; color: var(--muted-2); letter-spacing: 0.04em; }
.ing-foot {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted-2);
    margin-top: 18px;
    line-height: 1.6;
}

/* =============================================
   PROBLEM / SYMPTOMS
   ============================================= */
.problem {
    background: var(--ink);
    color: var(--paper);
    padding: 90px 0;
}
.problem .s-intro { color: var(--sage-soft); }
.sym-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    margin-top: 46px;
}
.sym {
    background: var(--ink);
    padding: 30px 26px;
    transition: background 0.2s;
}
.sym:hover { background: var(--ink-2); }
.sym-no {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--amber-soft);
    letter-spacing: 0.08em;
}
.sym h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 18px;
    color: var(--paper);
    margin: 14px 0 9px;
}
.sym p { font-size: 14px; color: var(--sage-soft); line-height: 1.62; }
.callout {
    margin-top: 40px;
    border: 1px solid rgba(184,134,47,0.4);
    background: rgba(184,134,47,0.08);
    padding: 24px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.callout .ic {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--amber-soft);
    border: 1px solid rgba(184,134,47,0.5);
    padding: 5px 9px;
    white-space: nowrap;
    flex-shrink: 0;
}
.callout p { font-size: 15px; color: var(--paper); line-height: 1.65; }
.callout strong { color: var(--amber-soft); font-weight: 600; }

/* =============================================
   HOW IT WORKS  (3-step process — numbering is real)
   ============================================= */
.how { background: var(--paper); padding: 90px 0; }
.how-head { text-align: center; margin-bottom: 56px; }
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
}
.step {
    padding: 38px 30px;
    border-right: 1px solid var(--line);
    position: relative;
}
.step:last-child { border-right: none; }
.step-no {
    font-family: var(--display);
    font-weight: 700;
    font-size: 46px;
    color: var(--paper-3);
    line-height: 1;
    letter-spacing: -0.04em;
}
.step-tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber);
    margin: 18px 0 10px;
}
.step h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 11px;
}
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.66; }

/* =============================================
   SCIENCE / SOLUTION  (split, panel left this time)
   ============================================= */
.science { background: var(--paper-2); padding: 90px 0; }
.science-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}
.science-visual {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.science-visual img {
    width: 100%;
    max-width: 240px;
    filter: drop-shadow(0 18px 34px rgba(22,53,42,0.18));
}
.science-seal {
    position: absolute;
    bottom: -18px; right: -18px;
    background: var(--ink);
    color: var(--paper);
    padding: 14px 18px;
    display: flex; align-items: center; gap: 10px;
}
.science-seal svg { stroke: var(--amber-soft); flex-shrink: 0; }
.science-seal span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
}
.science-text p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.74;
    margin-top: 16px;
}
.science-stats {
    display: flex;
    margin-top: 32px;
    border: 1px solid var(--line);
    background: var(--white);
}
.sci-stat { flex: 1; padding: 22px 20px; border-right: 1px solid var(--line); }
.sci-stat:last-child { border-right: none; }
.sci-stat strong {
    font-family: var(--display);
    font-weight: 700;
    font-size: 30px;
    color: var(--ink);
    letter-spacing: -0.02em;
    display: block;
}
.sci-stat span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-top: 5px;
    display: block;
}
.sci-note { font-family: var(--mono); font-size: 11px; color: var(--muted-2); margin-top: 16px; }

/* =============================================
   CERTIFICATES (on main page)
   ============================================= */
.certs { background: var(--paper); padding: 90px 0; }
.certs-head { text-align: center; margin-bottom: 50px; }
.certs-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}
.cert-feature {
    border: 1px solid var(--line);
    background: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.cert-feature .doc-ic {
    width: 52px; height: 52px;
    border: 1px solid var(--line-2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.cert-feature .doc-ic svg { stroke: var(--moss); }
.cert-feature .tagrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
}
.cert-feature h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 23px;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.cert-feature p { font-size: 14.5px; color: var(--muted); line-height: 1.66; margin-bottom: auto; }
.cert-feature .acts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.cert-checklist {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.cl-item {
    background: var(--white);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.cl-item .k {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--amber);
    flex-shrink: 0;
}
.cl-item strong {
    font-family: var(--display);
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    display: block;
}
.cl-item span { font-size: 12.5px; color: var(--muted); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.reviews { background: var(--paper-2); padding: 90px 0; }
.reviews-head { margin-bottom: 14px; }
.reviews-disc { font-family: var(--mono); font-size: 11px; color: var(--muted-2); max-width: 70ch; margin-bottom: 40px; line-height: 1.6; }
.rev-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 22px;
}
.rev {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
}
.rev.feat { background: var(--ink); border-color: var(--ink); }
.rev-stars { color: var(--amber); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
.rev.feat .rev-stars { color: var(--amber-soft); }
.rev-text { font-size: 15px; color: var(--ink-2); line-height: 1.66; margin-bottom: 24px; }
.rev.feat .rev-text { color: var(--paper); font-size: 16px; }
.rev-by { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.rev-ava {
    width: 40px; height: 40px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    color: var(--moss);
}
.rev.feat .rev-ava { background: var(--ink-2); border-color: rgba(255,255,255,0.15); color: var(--amber-soft); }
.rev-meta strong { font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--ink); display: block; }
.rev.feat .rev-meta strong { color: var(--paper); }
.rev-meta span { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.rev.feat .rev-meta span { color: var(--sage-soft); }

/* =============================================
   ORDER
   ============================================= */
.order { background: var(--paper); padding: 90px 0; }
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.order-benefits { list-style: none; margin: 34px 0 0; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.order-benefits li {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
}
.ob-k {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--amber);
    border: 1px solid var(--line-2);
    padding: 6px 9px;
    flex-shrink: 0;
}
.ob-t strong { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--ink); display: block; margin-bottom: 3px; }
.ob-t span { font-size: 13.5px; color: var(--muted); }

.order-card {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 0;
}
.oc-head {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 26px 28px;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
}
.oc-head img { width: 64px; flex-shrink: 0; }
.oc-head h3 { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: 0.04em; color: var(--ink); }
.oc-head p { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.oc-price { display: flex; align-items: baseline; gap: 10px; margin-top: 8px; }
.oc-price .old { font-family: var(--mono); font-size: 13px; color: var(--muted-2); text-decoration: line-through; }
.oc-price .new { font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--ink); }
.oc-price .save { font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; background: var(--amber); color: #2a1f06; padding: 3px 7px; }

.order-form { padding: 26px 28px; }
.fg { margin-bottom: 16px; }
.fg label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 7px;
}
.fg input, .fg select {
    width: 100%;
    font-family: var(--body);
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line-2);
    padding: 12px 14px;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.fg input:focus, .fg select:focus {
    outline: none;
    border-color: var(--moss);
    box-shadow: 0 0 0 3px rgba(61,107,82,0.12);
}
.btn-order {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    font-size: 15px;
    padding: 16px;
}
.form-fine { font-family: var(--mono); font-size: 11px; color: var(--muted-2); margin-top: 14px; line-height: 1.6; }
.form-fine a { color: var(--moss); }
.pay-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 18px 28px;
    border-top: 1px solid var(--line);
}
.pay-row .p {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--muted);
    border: 1px solid var(--line);
    padding: 5px 11px;
}

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--ink); color: var(--paper); padding: 90px 0; }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 760px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.12); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 4px;
    text-align: left;
    font-family: var(--display);
    font-weight: 600;
    font-size: 17px;
    color: var(--paper);
    transition: color 0.18s;
}
.faq-q:hover { color: var(--amber-soft); }
.faq-q .qno { font-family: var(--mono); font-size: 12px; color: var(--amber-soft); font-weight: 400; flex-shrink: 0; }
.faq-q .arr { margin-left: auto; font-size: 18px; color: var(--sage); transition: transform 0.3s; line-height: 1; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-a.open { max-height: 320px; padding: 0 4px 26px 38px; }
.faq-a p { font-size: 15px; color: var(--sage-soft); line-height: 1.72; }
.faq-a a { color: var(--amber-soft); }

/* =============================================
   FINAL CTA
   ============================================= */
.final {
    background: var(--paper-2);
    padding: 84px 0;
    text-align: center;
}
.final-inner { max-width: 640px; margin: 0 auto; }
.final h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(26px, 3.6vw, 38px);
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 16px;
}
.final p { font-size: 16.5px; color: var(--muted); margin-bottom: 30px; }
.final-trust {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.final-trust span {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--muted);
    border: 1px solid var(--line);
    padding: 6px 12px;
}

/* =============================================
   SUBPAGE (privacy / voorwaarden / certificaten)
   ============================================= */
.subhero {
    background: var(--ink);
    color: var(--paper);
    padding: 64px 28px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.subhero::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 38px 38px;
}
.subhero-inner { max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 2; }
.subhero h1 {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(30px, 4.4vw, 46px);
    letter-spacing: -0.02em;
    color: var(--paper);
    margin-bottom: 10px;
}
.subhero p { color: var(--sage-soft); font-size: 15.5px; max-width: 60ch; }

.doc { max-width: 820px; margin: 0 auto; padding: 64px 28px; }
.doc-card { background: var(--white); border: 1px solid var(--line); padding: 48px; }
.doc-stamp {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--muted);
    border: 1px solid var(--line);
    background: var(--paper-2);
    padding: 7px 13px;
    display: inline-block;
    margin-bottom: 30px;
}
.doc-card h2 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 19px;
    color: var(--ink);
    margin: 34px 0 12px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--line);
    letter-spacing: -0.01em;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.doc-card h2:first-of-type { margin-top: 0; }
.doc-card h2 .hno { font-family: var(--mono); font-size: 12px; color: var(--amber); font-weight: 400; }
.doc-card p { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
.doc-card ul { padding-left: 0; list-style: none; margin-bottom: 14px; }
.doc-card li {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 9px;
    padding-left: 22px;
    position: relative;
}
.doc-card li::before {
    content: "—";
    position: absolute; left: 0;
    color: var(--amber);
    font-family: var(--mono);
}
.doc-card strong { color: var(--ink); font-weight: 600; }
.doc-card a { color: var(--moss); }
.doc-box {
    background: var(--amber-bg);
    border: 1px solid var(--amber-soft);
    padding: 24px 26px;
    margin: 24px 0;
}
.doc-box h3 { font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--ink); margin-bottom: 8px; }
.doc-box p { color: var(--ink-2); margin-bottom: 0; }
.back-link {
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: 0.04em;
    color: var(--moss);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.back-link:hover { color: var(--ink); }

/* =============================================
   FADE-IN
   ============================================= */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto !important; }
    .fade-in { opacity: 1; transform: none; transition: none; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; min-height: 0; }
    .hero-copy { padding: 56px 0 48px; }
    .hero-panel { min-height: 360px; }
    .sym-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .step { border-right: none; border-bottom: 1px solid var(--line); }
    .step:last-child { border-bottom: none; }
    .science-grid { grid-template-columns: 1fr; gap: 40px; }
    .certs-grid { grid-template-columns: 1fr; }
    .rev-grid { grid-template-columns: 1fr; }
    .order-grid { grid-template-columns: 1fr; gap: 38px; }
    .ing-sheet-headrow, .ing-row { grid-template-columns: 40px 1.3fr 80px; }
    .ing-role { display: none; }
}

@media (max-width: 560px) {
    .wrap, .header-inner, .hero-grid, .subhero-inner { padding-left: 20px; padding-right: 20px; }
    .nav { display: none; }
    .topbar { gap: 12px; font-size: 11px; }
    .topbar .sep, .topbar .x-hide { display: none; }
    .hero-checks { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(32px, 11vw, 44px); }
    .sym-grid { grid-template-columns: 1fr; }
    .doc-card { padding: 28px 22px; }
    .science-visual { padding: 30px; }
    .spec-chip.c2 { display: none; }
    .ing-sheet-headrow, .ing-row { grid-template-columns: 34px 1fr 76px; gap: 12px; }
    .oc-head { flex-direction: column; text-align: center; }
}
