/* ==========================================================================
   Visivra® Official — Premium stylesheet
   Editorial serif headings (Fraunces) + Inter · midnight-navy & clarity-teal
   ========================================================================== */

:root {
  /* ---- Core palette (refined, layered) ---- */
  --blue: #4f86dc;
  --blue-bright: #79abf4;
  --blue-deep: #356fc4;
  --navy: #2c4f8a;
  --navy-900: #20396a;
  --blue-soft: #eef4fe;
  --blue-tint: #f6faff;

  /* champagne-gold luxury accent (kept as --aqua* so existing classes work) */
  --aqua: #c9a24e;
  --aqua-bright: #e6c878;
  --aqua-dark: #9a7526;

  /* ink & neutrals */
  --ink: #101d31;
  --ink-soft: #475670;
  --muted: #8793a8;
  --line: #e4ebf4;
  --line-soft: #eef2f8;

  /* surfaces */
  --bg: #ffffff;
  --bg-soft: #f8fbff;
  --bg-alt: #edf4fd;
  --white: #ffffff;
  --ok: #18a37a;

  /* radii */
  --radius: 20px;
  --radius-sm: 12px;

  /* elevation — soft, premium, low-opacity layered */
  --shadow-xs: 0 1px 2px rgba(10, 33, 72, .05);
  --shadow-sm: 0 1px 2px rgba(10, 33, 72, .04), 0 8px 22px rgba(10, 33, 72, .06);
  --shadow-md: 0 6px 16px rgba(10, 33, 72, .08), 0 22px 50px rgba(10, 33, 72, .10);
  --shadow-lg: 0 12px 28px rgba(7, 23, 52, .14), 0 40px 90px rgba(7, 23, 52, .20);
  --ring: 0 0 0 1px rgba(10, 33, 72, .06);

  --maxw: 1160px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg);
  line-height: 1.68; font-size: 17px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
::selection { background: rgba(43, 208, 225, .26); }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .16s ease; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; }
h1, h2 {
  font-family: var(--font-display); font-weight: 600; line-height: 1.08;
  letter-spacing: -.018em; font-optical-sizing: auto;
}
h3, h4 { font-family: var(--font); font-weight: 800; line-height: 1.2; letter-spacing: -.015em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.55rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.24rem; }
p { margin: 0 0 1rem; }
strong { font-weight: 700; color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: linear-gradient(165deg, #3a5f9e 0%, #25447c 100%); color: #d3e0f4; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 720px; line-height: 1.6; }
.center .lead { margin-left: auto; margin-right: auto; }

/* eyebrow with leading hairline */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; font-weight: 700;
  color: var(--aqua-dark); margin-bottom: 1.05rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .55; }
.center .eyebrow { justify-content: center; }
.section--navy .eyebrow { color: var(--aqua-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; padding: 15px 30px;
  border-radius: 999px; font-weight: 700; font-size: .98rem; letter-spacing: .005em;
  border: 1px solid transparent; cursor: pointer; transition: transform .18s ease, box-shadow .22s ease, background .2s ease, color .2s ease;
  text-decoration: none; line-height: 1; position: relative;
}
.btn--primary { background: linear-gradient(135deg, var(--blue-bright), var(--blue) 60%, var(--blue-deep)); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 10px 24px rgba(20, 62, 146, .30); }
.btn--primary:hover { color: #fff; text-decoration: none; transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 16px 32px rgba(20, 62, 146, .40); }
.btn--gold { background: linear-gradient(135deg, var(--aqua-bright), var(--aqua) 70%, var(--aqua-dark)); color: #04222b; box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 10px 26px rgba(18, 179, 200, .38); }
.btn--gold:hover { color: #04222b; text-decoration: none; transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 16px 34px rgba(18, 179, 200, .5); }
.btn--ghost { background: transparent; color: var(--blue); border-color: #c2d5f1; }
.btn--ghost:hover { background: var(--blue); color: #fff; text-decoration: none; border-color: var(--blue); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--blue-deep); box-shadow: var(--shadow-sm); }
.btn--white:hover { color: var(--blue-deep); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

/* ---------- Top bar / Header ---------- */
.topbar { background: linear-gradient(90deg, var(--navy-900), #2c4f8a, var(--navy-900)); color: #e2ecfb; font-size: .84rem; text-align: center; padding: 10px 16px; font-weight: 500; letter-spacing: .01em; }
.topbar strong { color: var(--aqua-bright); font-weight: 700; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(10, 33, 72, .07); background: rgba(255,255,255,.92); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.32rem; color: var(--navy); letter-spacing: -.02em; font-family: var(--font-display); font-weight: 600; }
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(150deg, var(--blue-bright), var(--blue) 50%, var(--blue-deep));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.18rem; font-family: var(--font);
  box-shadow: 0 6px 16px rgba(20, 62, 146, .34), inset 0 1px 0 rgba(255,255,255,.4);
  position: relative;
}
.brand .mark::after { content: ""; position: absolute; inset: 0; border-radius: 12px; border: 1px solid rgba(255,255,255,.18); }
.brand .mark .eye { display: block; }
.brand .reg { font-size: .5em; vertical-align: super; color: var(--muted); font-weight: 700; font-family: var(--font); }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-soft); font-weight: 600; font-size: .94rem; position: relative; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--aqua); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-links a:hover { color: var(--navy); text-decoration: none; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--navy); }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(160deg, #6699e6 0%, #4275c8 48%, #335fab 100%); color: #f1f6ff; padding: 84px 0 92px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(820px 440px at 80% 8%, rgba(243,222,168,.26), transparent 60%),
  radial-gradient(680px 520px at 8% 96%, rgba(190,214,250,.34), transparent 55%); pointer-events: none; }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 70%); -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 70%); }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 54px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: .4em; font-weight: 600; }
.hero h1 .hl { background: linear-gradient(100deg, #f5e2a6, #e6c878); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: #dbe7fb; margin-bottom: 1.7rem; font-size: 1.2rem; }
.hero .btn-row { margin-bottom: 1.6rem; }
.hero-rating { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: #cdddff; }
.hero-rating .stars { color: var(--aqua-bright); letter-spacing: 2px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1.5rem; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 8px 16px; font-size: .8rem; font-weight: 600; color: #eaf1ff; backdrop-filter: blur(6px); }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua-bright); box-shadow: 0 0 0 3px rgba(43,208,225,.25); }
.hero-visual { position: relative; text-align: center; }
.hero-visual::before { content: ""; position: absolute; left: 50%; top: 50%; width: 80%; aspect-ratio: 1; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(255,246,222,.40), rgba(255,246,222,0) 62%); filter: blur(6px); }
.hero-visual img { margin: 0 auto; position: relative; filter: drop-shadow(0 34px 54px rgba(0,0,0,.5)); max-width: 410px; }
.hero-pill { position: absolute; background: rgba(255,255,255,.96); color: var(--navy); border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow-md); font-size: .82rem; font-weight: 700; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.6); backdrop-filter: blur(4px); }
.hero-pill .ic { font-size: 1.25rem; }
.hero-pill--1 { top: 6%; left: -3%; }
.hero-pill--2 { bottom: 10%; right: -3%; }
.hero-pill small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; }

/* ---------- Trust strip ---------- */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.trust-strip .t { padding: 14px 22px; position: relative; }
.trust-strip .t + .t::before { content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: var(--line); }
.trust-strip .t .ico { font-size: 1.7rem; margin-bottom: 10px; display: inline-block; }
.trust-strip .t strong { display: block; font-size: .96rem; color: var(--ink); font-weight: 700; }
.trust-strip .t span { font-size: .82rem; color: var(--muted); }

.certs { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cert-chip { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 18px; font-weight: 600; font-size: .85rem; color: var(--blue-deep); box-shadow: var(--shadow-sm); }
.cert-chip .ic { font-size: 1.15rem; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats > div { position: relative; padding: 8px 0; }
.stats > div + div::before { content: ""; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: rgba(255,255,255,.12); }
.stats .num { font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 600; color: #fff; letter-spacing: -.02em; line-height: 1; }
.stats .num { background: linear-gradient(180deg, #fff, #f3e2b2); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stats .lbl { font-size: .82rem; color: #b8c8e6; text-transform: uppercase; letter-spacing: .12em; margin-top: 8px; }

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--aqua), var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #d6e2f2; }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-top: 0; }
.card .ico { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(150deg, var(--blue-bright), var(--blue-deep)); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 18px; color: #fff; box-shadow: 0 8px 18px rgba(20,62,146,.26), inset 0 1px 0 rgba(255,255,255,.4); position: relative; }
.card .ico::after { content: ""; position: absolute; inset: 0; border-radius: 16px; border: 1px solid rgba(255,255,255,.2); }
.card .step-n { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--aqua); color: #04222b; font-weight: 800; margin-bottom: 14px; }

/* feature columns with image */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); }
.media-card { background: linear-gradient(160deg, #5585d2, #335fab); border-radius: 26px; padding: 40px; display: grid; place-items: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.media-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(440px 340px at 68% 22%, rgba(255,246,222,.32), transparent 62%); }
.media-card::after { content: ""; position: absolute; inset: 0; opacity: .4; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 22px 22px; }
.media-card img { max-width: 300px; position: relative; z-index: 1; filter: drop-shadow(0 26px 42px rgba(0,0,0,.45)); }

/* ---------- Ingredient list ---------- */
.ingredient { display: grid; grid-template-columns: 66px 1fr; gap: 22px; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--line); }
.ingredient:last-child { border-bottom: 0; }
.ingredient .emblem { width: 66px; height: 66px; border-radius: 18px; background: linear-gradient(160deg, var(--blue-soft), #fff); color: var(--blue-deep); display: grid; place-items: center; font-size: 1.8rem; font-weight: 800; box-shadow: var(--shadow-xs), inset 0 0 0 1px var(--line); }
.ingredient h3 { margin: 0 0 .25rem; }
.ingredient .tag { font-size: .72rem; color: var(--aqua-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }

/* ---------- Table ---------- */
.tbl { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.tbl th, .tbl td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line-soft); font-size: .95rem; }
.tbl th { background: var(--blue-tint); color: var(--blue-deep); font-weight: 700; width: 40%; }
.tbl tr:last-child td, .tbl tr:last-child th { border-bottom: 0; }
.tbl tr:hover td { background: var(--bg-soft); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.checklist li { display: grid; grid-template-columns: 26px 1fr; gap: 13px; align-items: start; }
.checklist .ck { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(150deg, var(--aqua-bright), var(--aqua-dark)); color: #fff; display: grid; place-items: center; font-size: .78rem; font-weight: 800; margin-top: 3px; box-shadow: 0 3px 8px rgba(18,179,200,.34); }

/* ---------- Reviews ---------- */
.stars { color: var(--aqua); letter-spacing: 2px; font-size: 1rem; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .24s ease, box-shadow .24s ease; position: relative; }
.review::before { content: "\201C"; position: absolute; top: 10px; right: 22px; font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--blue-soft); }
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review p { position: relative; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.review .who .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(150deg, var(--blue-bright), var(--blue-deep)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .9rem; box-shadow: inset 0 1px 0 rgba(255,255,255,.35); }
.review .who .name { font-weight: 800; font-size: .94rem; }
.review .who .meta { font-size: .79rem; color: var(--muted); }
.verified { font-size: .75rem; color: var(--ok); font-weight: 700; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.plan { background: #fff; border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-md); position: relative; border: 1px solid var(--line); transition: transform .24s ease, box-shadow .24s ease; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan--featured { transform: scale(1.045); box-shadow: var(--shadow-lg); z-index: 2; border: 1px solid rgba(18,179,200,.5); }
.plan--featured:hover { transform: scale(1.045) translateY(-4px); }
.plan--featured::after { content: "★ Best Value"; position: absolute; top: 18px; right: -34px; transform: rotate(45deg); background: linear-gradient(135deg, var(--aqua-bright), var(--aqua-dark)); color: #04222b; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 42px; box-shadow: 0 4px 12px rgba(18,179,200,.4); }
.plan .head { background: linear-gradient(155deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; padding: 28px 24px; text-align: center; position: relative; }
.plan--featured .head { background: linear-gradient(155deg, #3a5f9e, #25447c); }
.plan .head .tier { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: -.01em; }
.plan--featured .head .tier { color: var(--aqua-bright); }
.plan .head .bottles { font-size: 1.65rem; font-weight: 800; margin-top: 6px; font-family: var(--font); }
.plan .head .supply { font-size: .88rem; opacity: .85; }
.plan .body { padding: 30px 26px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.plan .shot { height: 138px; object-fit: contain; margin: 0 auto 18px; filter: drop-shadow(0 14px 22px rgba(10,33,72,.16)); }
.plan .per { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--navy); line-height: 1; }
.plan .per .cur { font-size: 1.4rem; vertical-align: super; color: var(--aqua-dark); }
.plan .per small { font-size: .84rem; font-weight: 600; color: var(--muted); font-family: var(--font); }
.plan .save { display: inline-block; background: linear-gradient(135deg, rgba(43,208,225,.18), rgba(18,179,200,.14)); color: var(--aqua-dark); font-weight: 800; font-size: .82rem; padding: 7px 18px; border-radius: 999px; margin: 16px 0; border: 1px solid rgba(18,179,200,.28); }
.plan .guarantee { font-size: .78rem; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.plan .btn { width: 100%; justify-content: center; flex-direction: column; gap: 2px; padding: 15px; }
.plan .btn small { font-weight: 500; font-size: .76rem; opacity: .9; }
.plan .pay { display: flex; justify-content: center; gap: 6px; margin: 18px 0; flex-wrap: wrap; }
.plan .pay span { font-size: .58rem; font-weight: 700; background: var(--bg-soft); border: 1px solid var(--line); color: #5a6b85; border-radius: 5px; padding: 4px 7px; letter-spacing: .04em; }
.plan .total { font-weight: 800; color: var(--navy); font-size: 1.04rem; margin-top: auto; }
.plan .total s { color: var(--muted); font-weight: 500; }
.plan .ship { font-size: .8rem; font-weight: 700; color: var(--blue); margin-top: 8px; }
.plan .ship--free { background: linear-gradient(135deg, var(--blue-bright), var(--blue)); color: #fff; border-radius: 8px; padding: 6px; display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 2px 26px; margin-bottom: 13px; box-shadow: var(--shadow-xs); transition: box-shadow .2s ease, border-color .2s ease; }
.faq details[open] { box-shadow: var(--shadow-sm); border-color: #d6e2f2; }
.faq summary { cursor: pointer; font-weight: 700; padding: 18px 0; list-style: none; position: relative; padding-right: 36px; color: var(--navy); font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--blue-soft); color: var(--aqua-dark); font-size: 1.1rem; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.faq details[open] summary::after { content: "\2212"; background: var(--aqua); color: #fff; }
.faq details p { padding-bottom: 18px; margin: 0; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(150deg, #5585d2, #2f57a0); color: #fff; border-radius: 28px; padding: 66px 48px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(620px 320px at 82% 0%, rgba(255,246,222,.32), transparent 60%); }
.cta-band::after { content: ""; position: absolute; inset: 0; opacity: .4; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 24px 24px; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #dbe7fb; max-width: 600px; margin: 0 auto 1.7rem; }

/* ---------- Section heading highlight ---------- */
.hl-bar { display: inline-block; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; padding: 10px 26px; border-radius: 12px; font-family: var(--font-display); font-weight: 600; letter-spacing: .01em; box-shadow: 0 10px 24px rgba(20,62,146,.26); font-size: 1.5rem; }

/* ---------- Knowledge / prose block ---------- */
.knowledge { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-sm); position: relative; }
.knowledge::before { content: ""; position: absolute; left: 0; top: 28px; bottom: 28px; width: 3px; border-radius: 3px; background: linear-gradient(180deg, var(--aqua), var(--blue)); }
.knowledge h3 { color: var(--navy); margin-top: 1.5em; }
.knowledge h3:first-child { margin-top: 0; }
.knowledge p { color: var(--ink-soft); }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(160deg, #5585d2, #2f57a0); color: #e6eefc; padding: 76px 0 58px; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(680px 320px at 85% 10%, rgba(255,246,222,.22), transparent 60%); }
.page-hero .wrap { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: #dbe7fb; }
.page-hero .crumb { font-size: .8rem; color: #c2d6f5; margin-bottom: 14px; letter-spacing: .02em; }
.page-hero .crumb a { color: #c2d6f5; }
.page-hero .crumb a:hover { color: #fff; }

/* ---------- Prose (legal/content) ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 1.9em; color: var(--navy); font-size: clamp(1.5rem, 2.6vw, 1.95rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .55em; }
.prose .updated { color: var(--muted); font-size: .9rem; }

/* ---------- Disclaimer ---------- */
.disclaimer { background: linear-gradient(160deg, var(--blue-tint), #fff); border: 1px solid #d5e3f8; border-radius: var(--radius-sm); padding: 20px 24px; font-size: .85rem; color: #3a4a66; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, #2b4d88, #20396a); color: #aebfdc; padding: 72px 0 32px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; font-family: var(--font); }
.site-footer a { color: #93a6c9; display: block; margin-bottom: 10px; transition: color .16s ease, padding .16s ease; }
.site-footer a:hover { color: var(--aqua-bright); text-decoration: none; padding-left: 4px; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand .mark { box-shadow: none; }
.footer-contact p { margin: 0 0 7px; color: #8294b5; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; font-size: .79rem; line-height: 1.65; color: #6c7fa3; }
.footer-legal p { margin: 0 0 10px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 18px; color: #6c7fa3; }

/* ---------- Reveal on scroll ---------- */
.reveals-on .reveal { opacity: 0; transform: translateY(20px); }
.reveals-on .reveal.is-in { opacity: 1; transform: none; transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .grid-4, .trust-strip, .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .price-grid { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 20px 24px; gap: 16px; box-shadow: var(--shadow-md); }
  .nav-links.open a { color: var(--ink); }
  .trust-strip .t + .t::before { display: none; }
}
@media (max-width: 560px) {
  .grid-2, .grid-4, .trust-strip, .stats, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .ingredient { grid-template-columns: 1fr; }
  .knowledge { padding: 28px; }
  .cta-band { padding: 48px 26px; }
  .hero { padding: 60px 0 68px; }
  .hero-pill { display: none; }
  .stats > div + div::before, .trust-strip .t + .t::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveals-on .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover, .review:hover, .plan:hover { transform: none; }
}
