/* VitaCheck Daily — Main Stylesheet
   Midnight #0f1f3d · Amber #f0a500 · Chalk #f8f8f4
   Fonts: Fraunces (display) + Plus Jakarta Sans (body)
   ====================================================== */

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

:root {
  --midnight:    #0f1f3d;
  --midnight-2:  #1a3158;
  --midnight-3:  #253f6e;
  --amber:       #f0a500;
  --amber-dark:  #c07d00;
  --amber-light: #fff8e6;
  --chalk:       #f8f8f4;
  --chalk-dark:  #ededea;
  --slate:       #64748b;
  --slate-light: #f1f5f9;
  --text:        #0d1926;
  --text-mid:    #334155;
  --text-soft:   #64748b;
  --bg:          #ffffff;
  --border:      #e2e8f0;
  --green:       #16a34a;
  --red:         #dc2626;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 6px rgba(15,31,61,0.06);
  --shadow:      0 4px 20px rgba(15,31,61,0.10);
  --shadow-lg:   0 14px 48px rgba(15,31,61,0.16);
  --trans:       0.2s ease;
  --font-head:   'Fraunces', serif;
  --font-body:   'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--amber-dark); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--midnight); }
ul { list-style: none; }
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* ── TYPE ──────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.18; color: var(--text); font-weight: 900; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 800; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.26rem 0.8rem; border-radius: 2px;
}
.kicker-amber   { background: var(--amber); color: var(--midnight); }
.kicker-midnight{ background: var(--midnight); color: rgba(255,255,255,0.75); }
.kicker-chalk   { background: var(--chalk-dark); color: var(--text-mid); border: 1px solid var(--border); }
.kicker-outline { background: transparent; color: var(--amber); border: 1.5px solid var(--amber); }
.kicker-white   { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.22); }

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 0.9rem 2.2rem; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: all var(--trans); text-align: center; white-space: nowrap;
}
.btn-amber { background: var(--amber); color: var(--midnight); box-shadow: 0 4px 14px rgba(240,165,0,0.35); }
.btn-amber:hover { background: var(--amber-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(240,165,0,0.42); }
.btn-midnight { background: var(--midnight); color: #fff; box-shadow: var(--shadow-sm); }
.btn-midnight:hover { background: var(--midnight-2); color: #fff; transform: translateY(-2px); }
.btn-outline-midnight { background: transparent; color: var(--midnight); border-color: var(--midnight); }
.btn-outline-midnight:hover { background: var(--midnight); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-lg   { padding: 1.1rem 2.8rem; font-size: 1.1rem; }
.btn-xl   { padding: 1.2rem 3.2rem; font-size: 1.15rem; border-radius: 50px; }
.btn-full { width: 100%; }

/* ── DISCLOSURE BAR ──────────────────────── */
.disc-bar { background: var(--amber); padding: 0.5rem 1.25rem; text-align: center; font-size: 0.77rem; color: var(--midnight); font-family: var(--font-body); font-weight: 500; }
.disc-bar strong { font-weight: 700; }
.disc-bar a { color: var(--midnight); font-weight: 700; text-decoration: underline; }

/* ── HEADER ────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 2px solid var(--chalk-dark); transition: all var(--trans); }
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 62px; }

.logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.logo-badge {
  background: var(--midnight); color: var(--amber);
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 900;
  padding: 0.25rem 0.6rem; border-radius: 4px; letter-spacing: -0.01em;
}
.logo-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 900; color: var(--midnight); letter-spacing: -0.02em; }
.logo-name span { color: var(--amber-dark); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 0; }
.main-nav a { font-size: 0.87rem; font-weight: 600; color: var(--text-mid); padding: 0.4rem 0.85rem; border-radius: 6px; transition: all var(--trans); }
.main-nav a:hover, .main-nav a.active { color: var(--midnight); background: var(--chalk); }
.header-cta { display: none; }
.burger { background: none; border: none; cursor: pointer; padding: 0.4rem; display: flex; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--trans); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav { display: none; position: fixed; inset: 0; background: var(--midnight); z-index: 999; padding: 5rem 2rem 2rem; flex-direction: column; gap: 0.4rem; }
.mob-nav.open { display: flex; }
.mob-nav a { color: rgba(255,255,255,0.7); font-size: 1.2rem; font-family: var(--font-head); font-weight: 900; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mob-nav a:hover { color: var(--amber); }

@media (min-width: 860px) { .main-nav { display: block; } .header-cta { display: inline-flex; } .burger { display: none; } }

/* ── HERO — bold split, midnight bg ──────── */
.hero { background: var(--midnight); overflow: hidden; position: relative; }
.hero-grid { display: grid; min-height: 85vh; position: relative; z-index: 1; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1fr 420px; } }

.hero-left { padding: 4.5rem 0 4rem; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.hero-issue-num { font-family: var(--font-head); font-size: 5rem; font-weight: 900; color: rgba(255,255,255,0.05); line-height: 1; margin-right: 0.5rem; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; font-size: clamp(2.4rem, 5.5vw, 4rem); }
.hero h1 .hi { color: var(--amber); }
.hero-intro { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 500px; margin-bottom: 2rem; line-height: 1.72; }
.hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats-row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-val { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--amber); line-height: 1; }
.hero-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 0.2rem; font-weight: 500; letter-spacing: 0.05em; }
.hero-stat-div { width: 1px; background: rgba(255,255,255,0.1); align-self: stretch; }

.hero-right { display: flex; align-items: flex-end; justify-content: center; padding: 2rem 0 0; position: relative; }
.hero-right::before { content: ''; position: absolute; bottom: 0; inset-x: 0; height: 55%; background: rgba(240,165,0,0.06); border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.hero-product-wrap { position: relative; z-index: 1; }
.hero-product-wrap img { max-height: 400px; filter: drop-shadow(0 -6px 30px rgba(240,165,0,0.25)); margin: 0 auto; }
.hero-tag {
  position: absolute; bottom: 2rem; left: -1.5rem;
  background: var(--amber); color: var(--midnight);
  border-radius: var(--radius-lg); padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lg); min-width: 130px;
}
.hero-tag .tag-val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; line-height: 1; }
.hero-tag .tag-lbl { font-size: 0.68rem; font-weight: 700; margin-top: 0.15rem; }

/* ── TICKER STRIP ──────────────────────────── */
.ticker { background: var(--chalk); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0.85rem 0; overflow: hidden; }
.ticker-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem 2rem; }
.ticker-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); white-space: nowrap; }
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.ticker-sep { color: var(--border); }

/* ── TESTING SECTION ───────────────────────── */
.testing-section { padding: 5rem 0; background: var(--bg); }
.testing-grid { display: grid; gap: 3.5rem; align-items: start; }
@media (min-width: 960px) { .testing-grid { grid-template-columns: 1fr 310px; } }

.testing-copy {}
.testing-copy h2 { margin-bottom: 1.25rem; }
.testing-copy p { color: var(--text-mid); line-height: 1.8; margin-bottom: 1.1rem; font-size: 0.97rem; }
.testing-copy h3 { margin: 2rem 0 0.8rem; }

.criteria-grid { display: grid; gap: 0.75rem; margin: 1.5rem 0; }
@media (min-width: 540px) { .criteria-grid { grid-template-columns: 1fr 1fr; } }
.criterion-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem; transition: all var(--trans); background: var(--bg);
}
.criterion-card:hover { border-color: var(--amber); box-shadow: var(--shadow-sm); }
.criterion-card .c-head { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.35rem; }
.criterion-card .c-num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; color: var(--amber); line-height: 1; }
.criterion-card .c-title { font-weight: 700; font-size: 0.9rem; color: var(--midnight); }
.criterion-card p { font-size: 0.82rem; color: var(--text-soft); margin: 0; line-height: 1.55; }
.criterion-card .c-verdict { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.5rem; font-size: 0.73rem; font-weight: 700; color: var(--green); }

.info-box { background: var(--amber-light); border: 1px solid #f5d882; border-left: 4px solid var(--amber); border-radius: var(--radius); padding: 1.1rem 1.35rem; margin: 1.5rem 0; font-size: 0.9rem; color: #7a5c00; line-height: 1.65; }

/* Sidebar */
.testing-sidebar { position: sticky; top: 82px; }
.sidebar-panel { background: var(--midnight); border-radius: var(--radius-xl); overflow: hidden; }
.sp-image-block { padding: 1.5rem 1.5rem 0; display: flex; justify-content: center; }
.sp-image-block img { max-width: 160px; filter: drop-shadow(0 4px 16px rgba(240,165,0,0.3)); }
.sp-body { padding: 1.25rem 1.5rem; }
.sp-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 900; color: #fff; text-align: center; margin-bottom: 0.3rem; }
.sp-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 1.25rem; }
.sp-rows { display: flex; flex-direction: column; gap: 0; }
.sp-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.82rem; }
.sp-row:last-child { border: none; }
.sp-row .k { color: rgba(255,255,255,0.4); }
.sp-row .v { color: #fff; font-weight: 600; }
.sp-row .v.amber { color: var(--amber); }
.sp-cta { padding: 0 1.5rem 1.5rem; }
.sp-note { text-align: center; font-size: 0.68rem; color: rgba(255,255,255,0.25); margin-top: 0.65rem; line-height: 1.5; }

/* ── COMPARISON TABLE ─────────────────────── */
.table-section { padding: 4.5rem 0; background: var(--chalk); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-xl); border: 1.5px solid var(--border); background: var(--bg); box-shadow: var(--shadow); }
table.compare { width: 100%; border-collapse: collapse; min-width: 580px; }
table.compare thead tr { background: var(--midnight); }
table.compare thead th { padding: 1rem 1.25rem; text-align: left; font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
table.compare thead th.highlight { background: var(--amber); color: var(--midnight); }
table.compare thead th.highlight .th-badge { display: block; font-size: 0.65rem; margin-top: 0.15rem; font-weight: 700; letter-spacing: 0.08em; }
table.compare tbody tr { border-bottom: 1px solid var(--chalk-dark); }
table.compare tbody tr:last-child { border-bottom: none; }
table.compare tbody tr:hover { background: var(--chalk); }
table.compare td { padding: 0.9rem 1.25rem; font-size: 0.88rem; color: var(--text-mid); vertical-align: middle; }
table.compare td.row-head { font-weight: 600; color: var(--text); font-size: 0.85rem; }
table.compare td.highlight { background: var(--amber-light); font-weight: 600; color: var(--midnight); }
table.compare .price-cell { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: var(--midnight); }
table.compare td.highlight .price-cell { color: var(--amber-dark); }
table.compare .yes { color: var(--green); font-weight: 700; }
table.compare .no  { color: var(--slate); }
table.compare .cta-cell { text-align: center; }
table.compare tfoot td { padding: 1.25rem; text-align: center; background: var(--chalk); }

/* ── BIG GUARANTEE ────────────────────────── */
.guarantee-section { padding: 4.5rem 0; background: var(--bg); }
.guarantee-layout { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 860px) { .guarantee-layout { grid-template-columns: 400px 1fr; } }

.guarantee-visual { text-align: center; }
.g-circle-outer { width: 220px; height: 220px; border-radius: 50%; background: var(--midnight); border: 4px solid var(--amber); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; position: relative; }
.g-circle-outer::after { content: ''; position: absolute; inset: -12px; border-radius: 50%; border: 1px dashed rgba(240,165,0,0.3); }
.g-circle-inner { text-align: center; }
.g-num { font-family: var(--font-head); font-size: 4.5rem; font-weight: 900; color: var(--amber); line-height: 1; }
.g-unit { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; }
.g-points { display: flex; flex-direction: column; gap: 0.6rem; }
.g-point { display: flex; align-items: center; gap: 0.6rem; font-size: 0.87rem; color: var(--text-mid); }
.g-point::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }

.guarantee-copy h2 { margin-bottom: 0.85rem; }
.guarantee-copy p { color: var(--text-mid); font-size: 0.97rem; line-height: 1.78; margin-bottom: 1rem; }
.guarantee-copy .caveat { font-size: 0.78rem; color: var(--text-soft); font-style: italic; margin-top: 1rem; }

/* ── FAQ ──────────────────────────────────── */
.faq-section { padding: 4.5rem 0; background: var(--chalk); }
.faq-max { max-width: 700px; margin: 0 auto; }
.faq-card { background: var(--bg); border-radius: var(--radius-lg); margin-bottom: 0.65rem; overflow: hidden; border: 1.5px solid var(--border); transition: border-color var(--trans); }
.faq-card:hover { border-color: var(--amber); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; padding: 1.15rem 1.4rem;
  text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-body); font-size: 0.93rem; font-weight: 700; color: var(--text);
  transition: background var(--trans);
}
.faq-q:hover { background: var(--chalk); }
.faq-ico { width: 28px; height: 28px; border-radius: 50%; background: var(--chalk); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--amber-dark); transition: all var(--trans); flex-shrink: 0; }
.faq-q.open .faq-ico { transform: rotate(45deg); background: var(--amber); color: var(--midnight); border-color: var(--amber); }
.faq-a { display: none; padding: 0 1.4rem 1.15rem; font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }
.faq-a.open { display: block; }
.faq-a a { color: var(--amber-dark); text-decoration: underline; }

/* ── FINAL CTA ────────────────────────────── */
.cta-section { padding: 5rem 0; background: var(--midnight); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.cta-layout { display: grid; gap: 3.5rem; align-items: center; position: relative; z-index: 1; }
@media (min-width: 860px) { .cta-layout { grid-template-columns: 1fr 380px; } }

.cta-left h2 { color: #fff; margin-bottom: 0.85rem; }
.cta-left p  { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.75; margin-bottom: 1.75rem; }
.cta-checklist { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; }
.cta-check { display: flex; align-items: center; gap: 0.65rem; font-size: 0.91rem; color: rgba(255,255,255,0.65); }
.cta-check .ico { width: 20px; height: 20px; border-radius: 50%; background: rgba(240,165,0,0.15); border: 1px solid rgba(240,165,0,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; color: var(--amber); flex-shrink: 0; }
.cta-legal { font-size: 0.74rem; color: rgba(255,255,255,0.28); margin-top: 1.25rem; line-height: 1.55; }

.cta-panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-xl); padding: 2.25rem; text-align: center; }
.cta-panel img { max-width: 180px; margin: 0 auto 1.25rem; filter: drop-shadow(0 5px 20px rgba(240,165,0,0.3)); }
.cta-panel h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.3rem; }
.cta-panel .sub { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-bottom: 1rem; }
.price-badge { background: var(--amber); color: var(--midnight); border-radius: var(--radius-lg); padding: 0.75rem 1rem; margin-bottom: 1.25rem; }
.price-badge .from { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.price-badge .amount { font-family: var(--font-head); font-size: 2.8rem; font-weight: 900; line-height: 1; }
.price-badge .per { font-size: 0.75rem; font-weight: 600; }
.cta-panel-note { font-size: 0.69rem; color: rgba(255,255,255,0.25); margin-top: 0.75rem; line-height: 1.55; }

/* ── FOOTER ─────────────────────────────────── */
.site-footer { background: #080e1c; color: rgba(255,255,255,0.45); padding-top: 3.5rem; }
.footer-cols { display: grid; gap: 2.5rem; padding-bottom: 2.75rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
@media (min-width: 640px) { .footer-cols { grid-template-columns: 1.7fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-head); font-size: 1.1rem; font-weight: 900; color: #fff; margin-bottom: 0.6rem; }
.footer-brand span { color: var(--amber); }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin-bottom: 0.7rem; font-style: italic; }
.footer-desc { font-size: 0.83rem; line-height: 1.68; }
.footer-col h5 { color: rgba(255,255,255,0.6); font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.f-links { display: flex; flex-direction: column; gap: 0.5rem; }
.f-links a { font-size: 0.84rem; color: rgba(255,255,255,0.35); transition: color var(--trans); }
.f-links a:hover { color: var(--amber); }
.f-contact { display: flex; flex-direction: column; gap: 0.65rem; }
.f-contact li { font-size: 0.84rem; }
.f-contact a { color: rgba(255,255,255,0.35); transition: color var(--trans); }
.f-contact a:hover { color: var(--amber); }
.footer-bottom { padding: 1.4rem 0; }
.fb-inner { display: flex; flex-direction: column; gap: 0.6rem; }
@media (min-width: 640px) { .fb-inner { flex-direction: row; justify-content: space-between; align-items: flex-start; } }
.f-copy { font-size: 0.78rem; }
.f-disc { font-size: 0.73rem; color: rgba(255,255,255,0.22); line-height: 1.6; max-width: 620px; }

/* ── COOKIE ──────────────────────────────────── */
.ck-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #080e1c; border-top: 1px solid rgba(240,165,0,0.2); padding: 0.9rem 1.25rem; z-index: 9999; display: none; }
.ck-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ck-inner p { color: rgba(255,255,255,0.6); font-size: 0.82rem; flex: 1; min-width: 200px; }
.ck-inner a { color: var(--amber); }
.ck-btns { display: flex; gap: 0.6rem; }

/* ── MISC ─────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

.policy-pg { padding: 3.5rem 0 5rem; }
.policy-pg h1 { margin-bottom: 0.4rem; }
.policy-pg .upd { color: var(--text-soft); font-size: 0.82rem; margin-bottom: 2.5rem; }
.policy-body { max-width: 740px; }
.policy-body h2 { font-size: 1.2rem; margin: 2rem 0 0.65rem; color: var(--midnight); }
.policy-body p, .policy-body li { color: var(--text-mid); line-height: 1.8; margin-bottom: 0.9rem; font-size: 0.94rem; }
.policy-body ul { list-style: disc; padding-left: 1.5rem; }
.policy-body a { color: var(--amber-dark); text-decoration: underline; }
