/* ==========================================================================
   EVERHEALTH — store design system.
   Apple-grade restraint: bone canvas, charcoal ink, one sage accent.
   Shared by the storefront, checkout, confirmation and policy pages.
   ========================================================================== */

:root {
  --bone:      #f6f5f1;
  --bone-2:    #efeee8;
  --paper:     #ffffff;
  --ink:       #16181a;
  --ink-soft:  #3a3d40;
  --muted:     #6d7074;
  --line:      rgba(22, 24, 26, 0.10);
  --line-2:    rgba(22, 24, 26, 0.06);
  --sage:      #47624e;
  --sage-deep: #38503f;
  --sage-tint: #eef1ec;
  --amber:     #b08356;
  --star:      #c9a34a;
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(22,24,26,.05), 0 2px 6px rgba(22,24,26,.04);
  --shadow:    0 6px 24px rgba(22,24,26,.08), 0 2px 8px rgba(22,24,26,.05);
  --shadow-lg: 0 24px 60px rgba(22,24,26,.16), 0 8px 24px rgba(22,24,26,.08);
  --ease:      cubic-bezier(.22,.61,.36,1);
  --spring:    cubic-bezier(.34,1.32,.5,1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "cv11" 1;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 16px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---------- type ---------- */
h1, h2, h3 { font-weight: 600; line-height: 1.08; letter-spacing: -.022em; color: var(--ink); }
.display { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 600; letter-spacing: -.032em; line-height: 1.02; }
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); letter-spacing: -.026em; }
.h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -.018em; }
.eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage);
}
.lede { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: var(--ink-soft); line-height: 1.62; }
.muted { color: var(--muted); }
.serif { font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-size: 1rem; font-weight: 550; letter-spacing: -.01em;
  padding: 15px 30px; border-radius: 999px; line-height: 1;
  transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), opacity .2s;
  will-change: transform;
}
.btn:active { transform: scale(.975); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #000; box-shadow: var(--shadow); transform: translateY(-1px); }
.btn-sage { background: var(--sage); color: #fff; }
.btn-sage:hover { background: var(--sage-deep); transform: translateY(-1px); }
.btn-ghost { background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: rgba(22,24,26,.24); transform: translateY(-1px); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 1.06rem; }

/* ---------- announcement + header ---------- */
.announce {
  background: var(--ink); color: #fff; text-align: center;
  font-size: .78rem; letter-spacing: .04em; font-weight: 500;
  padding: 9px 16px;
}
.announce b { font-weight: 650; }

header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,245,241,.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-2);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 650; letter-spacing: -.01em; font-size: 1.12rem; }
.brand .mark {
  width: 26px; height: 26px; border-radius: 7px; background: var(--sage);
  display: grid; place-items: center; color: #fff; font-weight: 700; font-size: .82rem; letter-spacing: 0;
}
.brand small { display:block; font-size:.54rem; letter-spacing:.22em; color:var(--muted); font-weight:600; margin-top:1px; text-transform:uppercase;}
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: .93rem; color: var(--ink-soft); font-weight: 500; position: relative; padding: 4px 0; }
.nav-links a::after {
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:1.5px; background:var(--ink);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.cart-btn { position: relative; display: inline-flex; align-items: center; gap: 7px; font-size: .93rem; font-weight: 500; }
.cart-btn .count {
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px; background: var(--ink); color: #fff;
  font-size: .7rem; font-weight: 650; display: inline-grid; place-items: center; line-height: 1;
  transform: scale(0); transition: transform .28s var(--spring);
}
.cart-btn .count.on { transform: scale(1); }
.menu-toggle { display: none; }
.mobile-menu { display: none; flex-direction: column; padding: 6px 24px 16px; background: rgba(246,245,241,.97); border-top: 1px solid var(--line-2); }
.mobile-menu a { padding: 13px 2px; font-size: 1rem; color: var(--ink-soft); border-bottom: 1px solid var(--line-2); }
.mobile-menu.on { display: flex; }
@media (min-width: 941px) { .mobile-menu { display: none !important; } }

/* ---------- hero ---------- */
.hero { padding: clamp(40px, 6vw, 78px) 0 clamp(30px, 4vw, 46px); }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero-copy .display { margin: 16px 0 18px; }
.hero-rating { display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--ink-soft); margin-bottom: 8px; }
.stars { display: inline-flex; gap: 2px; color: var(--star); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; align-items: center; }
.hero-price { font-size: 1.05rem; color: var(--ink-soft); }
.hero-price b { color: var(--ink); font-weight: 650; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; object-fit: cover;
}
.hero-badge {
  position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); font-size: .82rem; font-weight: 550;
  display: flex; align-items: center; gap: 9px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--sage); box-shadow: 0 0 0 4px var(--sage-tint); }

/* ---------- marquee trust strip ---------- */
.trust {
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
  background: var(--bone-2);
}
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 5vw, 60px); padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 550; letter-spacing: .01em; color: var(--ink-soft); }
.trust-item svg { color: var(--sage); flex: none; }

/* ---------- sections ---------- */
section.pad { padding: clamp(64px, 9vw, 128px) 0; }
.section-head { max-width: 640px; margin: 0 auto clamp(38px, 5vw, 62px); text-align: center; }
.section-head .h2 { margin: 14px 0 0; }
.section-head .lede { margin-top: 16px; }

/* benefits */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--sage-tint); color: var(--sage); display: grid; place-items: center; margin-bottom: 18px; }
.benefit h3 { font-size: 1.06rem; margin-bottom: 7px; }
.benefit p { font-size: .92rem; color: var(--muted); line-height: 1.55; }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 84px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split-copy .h2 { margin: 14px 0 18px; }
.check-list { list-style: none; margin-top: 22px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--ink-soft); }
.check-list svg { flex: none; color: var(--sage); margin-top: 3px; }

/* facts strip */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.fact { background: var(--paper); padding: 30px 22px; text-align: center; }
.fact .num { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 600; letter-spacing: -.03em; }
.fact .lbl { font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* buy block */
.buy { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.buy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.gallery { display: grid; gap: 12px; }
.gallery .main { border-radius: var(--radius); overflow: hidden; background: var(--bone-2); }
.gallery .main img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.thumbs button { border-radius: var(--radius-sm); overflow: hidden; border: 1.5px solid transparent; background: var(--bone-2); transition: border-color .2s; }
.thumbs button.active { border-color: var(--ink); }
.thumbs img { aspect-ratio: 1/1; object-fit: cover; }
.price-row { display: flex; align-items: baseline; gap: 12px; margin: 6px 0 4px; }
.price-now { font-size: 2rem; font-weight: 650; letter-spacing: -.03em; }
.price-was { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.price-save { font-size: .78rem; font-weight: 650; color: var(--sage); background: var(--sage-tint); padding: 4px 10px; border-radius: 999px; }
.variants { display: grid; gap: 12px; margin: 22px 0; }
.variant {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer; transition: border-color .2s, background .2s;
  position: relative;
}
.variant:hover { border-color: rgba(22,24,26,.28); }
.variant.sel { border-color: var(--ink); background: #fbfbf9; }
.variant .radio { width: 20px; height: 20px; border-radius: 999px; border: 1.5px solid var(--line); flex: none; display: grid; place-items: center; }
.variant.sel .radio { border-color: var(--ink); }
.variant.sel .radio::after { content:""; width: 10px; height: 10px; border-radius: 999px; background: var(--ink); }
.variant .v-main { flex: 1; }
.variant .v-title { font-weight: 600; font-size: .98rem; }
.variant .v-sub { font-size: .82rem; color: var(--muted); }
.variant .v-price { text-align: right; font-weight: 600; }
.variant .v-price small { display: block; font-size: .74rem; color: var(--muted); font-weight: 500; }
.variant .tag { position: absolute; top: -9px; right: 16px; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--sage); color: #fff; padding: 3px 9px; border-radius: 999px; }
.buy-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 18px; font-size: .84rem; color: var(--muted); }
.buy-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.review .stars { margin-bottom: 12px; }
.review p { font-size: .95rem; color: var(--ink-soft); line-height: 1.6; }
.review .who { margin-top: 16px; display: flex; align-items: center; gap: 11px; }
.review .av { width: 38px; height: 38px; border-radius: 999px; background: var(--sage-tint); color: var(--sage); display: grid; place-items: center; font-weight: 650; font-size: .9rem; }
.review .who b { font-size: .88rem; font-weight: 600; }
.review .who span { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.verified { color: var(--sage); font-size: .72rem; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

/* stack (supporting products) */
.stack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card .pc-media { background: var(--bone-2); }
.product-card .pc-media img { aspect-ratio: 1/1; object-fit: cover; }
.product-card .pc-body { padding: 20px 22px 24px; }
.product-card .pc-body h3 { font-size: 1.05rem; }
.product-card .pc-body .pc-sub { font-size: .84rem; color: var(--muted); margin: 3px 0 14px; }
.product-card .pc-foot { display: flex; align-items: center; justify-content: space-between; }
.product-card .pc-price { font-weight: 650; }
.add-mini { font-size: .84rem; font-weight: 600; padding: 9px 16px; border-radius: 999px; background: var(--ink); color: #fff; transition: background .2s, transform .18s var(--ease); }
.add-mini:hover { background: #000; transform: translateY(-1px); }

/* faq */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 4px; font-size: 1.06rem; font-weight: 550; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 22px; height: 22px; position: relative; transition: transform .3s var(--ease); }
.faq summary .pm::before, .faq summary .pm::after { content:""; position: absolute; background: var(--ink); border-radius: 2px; }
.faq summary .pm::before { top: 10px; left: 3px; right: 3px; height: 2px; }
.faq summary .pm::after { left: 10px; top: 3px; bottom: 3px; width: 2px; transition: transform .3s var(--ease); }
.faq details[open] summary .pm::after { transform: scaleY(0); }
.faq .ans { padding: 0 4px 24px; color: var(--ink-soft); font-size: .98rem; line-height: 1.65; max-width: 92%; }

/* guarantee band */
.band { background: var(--sage); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 68px); text-align: center; }
.band .h2 { color: #fff; }
.band p { color: rgba(255,255,255,.86); max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }
.band .btn { margin-top: 28px; }
.band .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.band .btn-ghost:hover { background: rgba(255,255,255,.2); }

/* ---------- footer ---------- */
footer.site { border-top: 1px solid var(--line); background: var(--bone-2); padding: clamp(52px, 7vw, 78px) 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand p { color: var(--muted); font-size: .9rem; margin-top: 14px; max-width: 280px; }
.foot-col h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 600; }
.foot-col a { display: block; font-size: .92rem; color: var(--ink-soft); padding: 6px 0; transition: color .2s; }
.foot-col a:hover { color: var(--ink); }
.newsletter { display: flex; gap: 8px; margin-top: 14px; max-width: 300px; }
.newsletter input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 12px 16px; background: var(--paper); }
.newsletter input:focus { outline: none; border-color: var(--ink); }
.newsletter button { flex: none; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); }
.foot-bottom .pays { display: flex; gap: 8px; align-items: center; opacity: .8; }
.foot-bottom .pays span { font-size: .68rem; font-weight: 700; letter-spacing: .04em; border: 1px solid var(--line); border-radius: 5px; padding: 3px 7px; color: var(--ink-soft); }

/* ---------- cart drawer ---------- */
.scrim { position: fixed; inset: 0; background: rgba(22,24,26,.42); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; z-index: 90; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.scrim.on { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--bone);
  z-index: 100; transform: translateX(100%); transition: transform .42s var(--ease);
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
.drawer.on { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 1.15rem; }
.drawer-close { width: 34px; height: 34px; border-radius: 999px; display: grid; place-items: center; transition: background .2s; }
.drawer-close:hover { background: var(--bone-2); }
.drawer-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty svg { color: var(--line); margin-bottom: 16px; }
.line { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-2); }
.line img { width: 74px; height: 74px; border-radius: 10px; object-fit: cover; background: var(--bone-2); flex: none; }
.line .l-main { flex: 1; min-width: 0; }
.line .l-title { font-weight: 600; font-size: .94rem; }
.line .l-sub { font-size: .8rem; color: var(--muted); margin: 2px 0 10px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; font-size: 1rem; color: var(--ink-soft); transition: background .15s; }
.qty button:hover { background: var(--bone-2); }
.qty span { min-width: 26px; text-align: center; font-size: .9rem; font-weight: 600; }
.line .l-price { text-align: right; font-weight: 600; font-size: .94rem; }
.line .l-rm { display: block; margin-top: 10px; font-size: .76rem; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.line .l-rm:hover { color: var(--ink); }
.drawer-foot { border-top: 1px solid var(--line); padding: 20px 24px 24px; background: var(--bone); }
.subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.subtotal .s-lbl { font-size: 1rem; }
.subtotal .s-val { font-size: 1.3rem; font-weight: 650; letter-spacing: -.02em; }
.drawer-foot .fine { font-size: .8rem; color: var(--muted); margin-bottom: 16px; }
.free-ship { font-size: .82rem; color: var(--sage); font-weight: 550; display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ---------- checkout / forms ---------- */
.co-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 0; min-height: 100vh; }
.co-main { padding: clamp(30px, 5vw, 64px) clamp(24px, 5vw, 70px); }
.co-main .inner { max-width: 520px; margin-left: auto; }
.co-aside { background: var(--bone-2); border-left: 1px solid var(--line); padding: clamp(30px, 5vw, 64px) clamp(24px, 5vw, 56px); }
.co-aside .inner { max-width: 420px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 550; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field select { width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 14px 15px; background: var(--paper); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-tint); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; }
.co-step { font-size: .78rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); margin: 30px 0 14px; }
.co-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-2); align-items: center; }
.co-line img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; background: var(--paper); }
.co-line .cl-badge { position: relative; }
.co-line .cl-badge .n { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 999px; background: var(--muted); color: #fff; font-size: .74rem; font-weight: 650; display: grid; place-items: center; }
.co-line .cl-main { flex: 1; }
.co-line .cl-title { font-weight: 600; font-size: .92rem; }
.co-line .cl-sub { font-size: .8rem; color: var(--muted); }
.co-line .cl-price { font-weight: 600; font-size: .92rem; }
.co-tot { padding-top: 18px; }
.co-tot .row { display: flex; justify-content: space-between; font-size: .94rem; color: var(--ink-soft); padding: 5px 0; }
.co-tot .row.grand { font-size: 1.2rem; font-weight: 650; color: var(--ink); border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; }
.co-secure { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); margin-top: 18px; }
.card-input { position: relative; }
.card-input .brands { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: flex; gap: 5px; opacity: .7; }
.card-input .brands span { font-size: .6rem; font-weight: 700; border: 1px solid var(--line); border-radius: 4px; padding: 2px 5px; }
.co-back { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); margin-bottom: 30px; }
.co-back:hover { color: var(--ink); }

/* confirmation */
.confirm { max-width: 620px; margin: 0 auto; padding: clamp(50px, 8vw, 100px) 24px; text-align: center; }
.confirm .tick { width: 68px; height: 68px; border-radius: 999px; background: var(--sage); color: #fff; display: grid; place-items: center; margin: 0 auto 26px; animation: pop .5s var(--spring); }
@keyframes pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.confirm-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-top: 30px; text-align: left; box-shadow: var(--shadow-sm); }
.confirm-card .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .94rem; }
.confirm-card .row.grand { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-weight: 650; font-size: 1.08rem; }

/* legal pages */
.legal { max-width: 780px; margin: 0 auto; padding: clamp(40px, 6vw, 80px) 24px clamp(60px, 8vw, 100px); }
.legal h1 { font-size: clamp(2rem, 4vw, 2.9rem); letter-spacing: -.03em; margin-bottom: 10px; }
.legal .updated { color: var(--muted); font-size: .88rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.3rem; margin: 38px 0 12px; }
.legal p, .legal li { color: var(--ink-soft); font-size: .98rem; line-height: 1.72; margin-bottom: 14px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .split, .buy-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .reviews-grid, .stack-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .co-wrap { grid-template-columns: 1fr; }
  .co-aside { order: -1; border-left: none; border-bottom: 1px solid var(--line); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
}
@media (max-width: 560px) {
  .benefits { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .foot-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
