/* ============================================================
   FORGE — shared design system
   Editorial (Myhra) layout & type language, Forge brand palette.
   Used by every page: index, guides, privacy, mentions-legales, support.
   ============================================================ */

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

:root {
  /* Brand action color — constant across themes (dark button text on bright cyan reads well on both) */
  --brand:      #00E5C3;
  --brand-text: #06110F;

  /* Dark theme (default) — from DineDash/DesignSystem.swift (Aurora palette) */
  --cyan:    #00E5C3;
  --violet:  #A78BFA;
  --coral:   #FB923C;
  --bg:      #07090E;
  --surface: #101820;
  --sf2:     #172232;
  --border:  rgba(255,255,255,0.07);
  --brd2:    rgba(255,255,255,0.13);
  --text:    #EFF6FF;
  --muted:   #7C93A8;
  --subtle:  #3A5570;
  --nav-bg:  rgba(7,9,14,0.82);

  color-scheme: dark;
}

:root[data-theme="light"] {
  /* Light theme — same brand family, darkened for AA contrast on white */
  --cyan:    #00786B;
  --violet:  #7C3AED;
  --coral:   #C2410C;
  --bg:      #FBFAF7;
  --surface: #F2F0EA;
  --sf2:     #E8E5DC;
  --border:  rgba(15,20,15,0.09);
  --brd2:    rgba(15,20,15,0.16);
  --text:    #12181A;
  --muted:   #57666B;
  --subtle:  #8A9598;
  --nav-bg:  rgba(251,250,247,0.82);

  color-scheme: light;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  transition: background 0.25s ease, color 0.25s ease;
}

.serif { font-family: 'Fraunces', serif; }

/* ── EYEBROW (editorial small-caps label) ── */
.eyebrow, .page-eye, .section-label, .toc-label, .other-guides-label,
.step-video-label, .step-image-label {
  font-family: 'Fraunces', serif;
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan);
  display: block;
}
.eyebrow-dot, .section-label::before, .step-video-label::before, .step-image-label::before,
.response-time::before { display: none; }

/* Color modifiers — echo the app's macro colors (cyan=fat/training, coral=carbs/nutrition, violet=protein/AI) */
.c-cyan   { color: var(--cyan) !important; }
.c-coral  { color: var(--coral) !important; }
.c-violet { color: var(--violet) !important; }

/* ── NAV ── */
nav, body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 44px;
  background: var(--nav-bg, rgba(7,9,14,0.82));
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 9px;
}
.nav-logo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px rgba(0,229,195,0.7);
  flex-shrink: 0;
}
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-center, .nav-links { display: flex; gap: 32px; }
.nav-center a, .nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s; cursor: pointer;
}
.nav-center a:hover, .nav-links a:hover,
.nav-links a.active, .nav-center a.active { color: var(--cyan); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: var(--brand-text);
  padding: 11px 24px;
  text-decoration: none; font-weight: 600; font-size: 0.83rem;
  transition: opacity 0.15s, transform 0.15s; cursor: pointer;
}
.nav-cta:hover { opacity: 0.86; transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; }

/* ── THEME TOGGLE ── */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; flex-shrink: 0;
  border: 1px solid var(--border); background: transparent; color: var(--text);
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
  padding: 0;
}
.theme-toggle:hover { border-color: var(--brd2); color: var(--cyan); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="light"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="light"] .theme-toggle .icon-moon { display: block; }

/* ── DIVIDER ── */
.divider { border-top: 1px solid var(--border); margin-top: 76px; }

/* ── UNDERLINED TEXT LINKS ── */
.btn-text, .feat-link, .strip-link, .og-arrow, .toc-list a {
  color: var(--text);
  text-decoration: underline; text-underline-offset: 5px;
  text-decoration-color: var(--border);
  font-size: 0.9rem; cursor: pointer;
  transition: text-decoration-color 0.2s, color 0.2s;
}
.btn-text:hover, .feat-row:hover .feat-link, .strip-item:hover .strip-link,
.other-guides-grid a:hover .og-arrow, .toc-list a:hover {
  text-decoration-color: currentColor;
}

/* ── FLAT BUTTON ── */
.btn-dl, .cta-btn, .email-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand); color: var(--brand-text);
  padding: 15px 30px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s; cursor: pointer;
  border: none;
}
.btn-dl:hover, .cta-btn:hover, .email-btn:hover { background: #33F0D3; transform: translateY(-1px); }
.btn-dl svg, .cta-btn svg, .email-btn svg { width: 17px; height: 17px; }

/* ============================================================
   HOMEPAGE — hero, feature rows, strip, privacy band, cta
   ============================================================ */

.hero {
  position: relative;
  padding: 150px 48px 100px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero .eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05; letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 900px;
  margin-bottom: 28px;
}
.hero h1 em, h1 em, .cta h2 em, .contact-card h2 em, .guide-cta h2 em {
  font-style: italic;
  text-transform: none;
  color: var(--cyan);
}
.hero-sub, .page-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.75;
  max-width: 460px; margin-bottom: 44px;
}
.hero-btns { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }

/* Phone mockup shows the real app UI — always dark, regardless of site theme */
.hero-frame { margin-top: 76px; width: 100%; max-width: 1040px; display: flex; justify-content: center; gap: 4px; }
.hero-frame .phone-photo {
  width: 300px; background: #0A0F18; border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden; color: #EFF6FF;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.phone-photo-inner { padding: 34px 16px 16px; }
.pp-status { display: flex; justify-content: space-between; font-size: 0.6rem; color: #EFF6FF; margin-bottom: 20px; }
.pp-title { font-family: 'Fraunces', serif; text-align: center; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px; color: #EFF6FF; }
.pp-ring-wrap { display: flex; justify-content: center; margin-bottom: 18px; }
.pp-ring { width: 128px; height: 128px; }
.pp-macros { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.pp-macro { border: 1px solid rgba(255,255,255,0.08); padding: 9px 6px; text-align: center; }
.pp-macro-val { font-size: 0.78rem; font-weight: 500; display: block; font-family: 'Fraunces', serif; color: #EFF6FF; }
.pp-macro-lbl { font-size: 0.56rem; color: #7C93A8; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-top: 3px; }
.pp-meals { display: flex; flex-direction: column; gap: 7px; }
.pp-meal { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 8px 2px; font-size: 0.7rem; color: #EFF6FF; }
.pp-meal-cal { color: #7C93A8; }

.feat-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: center;
  max-width: 1180px; margin: 0 auto;
  padding: 110px 48px;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
}
.feat-row:last-of-type { border-bottom: none; }
.feat-row.reverse { direction: rtl; }
.feat-row.reverse > * { direction: ltr; }
.feat-media {
  aspect-ratio: 4/5; background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  color: var(--muted);
}
.feat-media svg { width: 76px; height: 76px; stroke: currentColor; opacity: 0.85; }
.feat-label {
  font-family: 'Fraunces', serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 22px; display: block;
}
.feat-h {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase; line-height: 1.15;
  margin-bottom: 22px;
}
.feat-body { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 28px; max-width: 440px; }

.strip {
  max-width: 1180px; margin: 0 auto;
  padding: 90px 48px 110px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.strip-item { text-decoration: none; color: inherit; }
.strip-item .eyebrow { margin-bottom: 14px; }
.strip-h { font-family: 'Fraunces', serif; font-size: 1.3rem; text-transform: uppercase; margin-bottom: 12px; }
.strip-p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; margin-bottom: 16px; }

.privacy {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 110px 48px;
}
.privacy-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 90px; align-items: start;
}
.priv-h { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(1.9rem, 3.2vw, 2.8rem); text-transform: uppercase; line-height: 1.12; margin-bottom: 20px; }
.priv-body { color: var(--muted); font-size: 0.95rem; line-height: 1.85; max-width: 420px; }
.priv-list { display: flex; flex-direction: column; }
.priv-item { padding: 26px 0; border-top: 1px solid var(--border); }
.priv-item:last-child { border-bottom: 1px solid var(--border); }
.priv-item-title { font-family: 'Fraunces', serif; font-size: 1.05rem; text-transform: uppercase; margin-bottom: 8px; }
.priv-item-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.7; max-width: 460px; }

.cta { padding: 130px 48px; text-align: center; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(2.1rem, 4vw, 3.4rem); text-transform: uppercase; line-height: 1.1; margin-bottom: 22px; }
.cta p { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 46px; }

/* ============================================================
   GUIDE PAGES — breadcrumb, hero, toc, numbered steps
   ============================================================ */

main { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; padding: 130px 24px 60px; }

.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 40px; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span.sep { margin: 0 8px; color: var(--subtle); }
.breadcrumb span.current { color: var(--text); }

.guide-hero { margin-bottom: 80px; }
.guide-hero .eyebrow { margin-bottom: 28px; }
.guide-hero h1, .page-header h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.06; letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.guide-intro { font-size: 1.05rem; color: var(--muted); line-height: 1.75; max-width: 640px; }

.toc { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.toc-label { margin-bottom: 18px; }
.toc-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px 28px; }
.toc-list a { display: flex; gap: 10px; align-items: baseline; font-size: 0.94rem; text-decoration-color: transparent; }
.toc-list a:hover { color: var(--cyan); }
.toc-list a span.num { font-family: 'Fraunces', serif; color: var(--cyan); font-weight: 500; font-size: 0.82rem; min-width: 18px; }

.step {
  display: grid; grid-template-columns: 76px 1fr; gap: 32px;
  padding: 56px 0; border-top: 1px solid var(--border);
}
.step:first-of-type { border-top: none; padding-top: 24px; }
.step-num { font-family: 'Fraunces', serif; font-size: 2.4rem; font-weight: 400; color: var(--cyan); line-height: 1; padding-top: 4px; }
.step-path {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}
.step h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  line-height: 1.2; text-transform: uppercase; letter-spacing: 0;
  margin-bottom: 16px; font-weight: 400; color: var(--text);
}
.step p { font-size: 0.98rem; color: var(--muted); margin-bottom: 18px; line-height: 1.75; }
.step-list { list-style: none; margin: 18px 0; }
.step-list li { position: relative; padding-left: 26px; margin-bottom: 12px; font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.step-list li::before { content: ''; position: absolute; left: 0; top: 11px; width: 14px; height: 1px; background: var(--cyan); opacity: 0.7; }
.step-list li strong { color: var(--text); font-weight: 500; }

.step-video, .step-image { margin-top: 26px; max-width: 320px; border: 1px solid var(--border); overflow: hidden; background: #000; position: relative; }
.step-image { max-width: 400px; }
.step-image img { width: 100%; height: auto; display: block; }
.step-image.is-transparent { background: transparent; border: none; max-width: 320px; overflow: visible; }
.step-image.is-transparent img { filter: drop-shadow(0 22px 32px rgba(0,0,0,0.55)); }
.step-video video { width: 100%; height: auto; display: block; background: #000; }
.step-video-label, .step-image-label { margin: 16px 0 10px; }

.tip { margin-top: 22px; padding: 16px 20px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tip-text { font-size: 0.92rem; color: var(--text); opacity: 0.9; line-height: 1.7; }
.tip-text::before { content: 'Astuce — '; color: var(--cyan); font-weight: 500; }
.tip-text strong { color: var(--cyan); font-weight: 500; }

.note { margin-top: 18px; padding: 14px 20px; border-left: 2px solid var(--violet); font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.note strong { color: var(--violet); font-weight: 500; }

.other-guides { margin-top: 100px; padding-top: 60px; border-top: 1px solid var(--border); }
.other-guides-label { text-align: center; margin-bottom: 36px; }
.other-guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--border); }
.other-guides-grid a {
  display: block; position: relative; padding: 26px 28px;
  background: var(--bg); color: var(--text); text-decoration: none;
  font-family: 'Fraunces', serif; font-size: 1.02rem; text-transform: uppercase;
  transition: background 0.2s;
}
.other-guides-grid a:hover { background: var(--surface); }
.other-guides-grid a .og-arrow { float: right; font-size: 0.9rem; text-decoration: none; font-family: 'DM Sans', sans-serif; text-transform: none; }

.guide-cta { position: relative; z-index: 1; margin-top: 110px; padding: 60px 0 60px; text-align: center; border-top: 1px solid var(--border); }
.guide-cta-inner { max-width: 600px; margin: 0 auto; }
.guide-cta h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  text-transform: uppercase; line-height: 1.1; margin-bottom: 24px;
}
.guide-cta p { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ============================================================
   PRIVACY / MENTIONS LÉGALES
   ============================================================ */

.page-header { margin-bottom: 56px; }
.page-header .page-eye { margin-bottom: 18px; }

.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; margin-bottom: 48px; }
.policy-box { padding: 0; }
.iubenda-embed, .iubenda-embed * { color: var(--text) !important; font-family: 'DM Sans', sans-serif !important; }

.addendum { margin-top: 36px; padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.addendum-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.addendum-icon { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.addendum-icon svg { width: 18px; height: 18px; color: var(--cyan); }
.addendum h2 { font-family: 'Fraunces', serif; font-size: 1.15rem; text-transform: uppercase; color: var(--cyan); }
.addendum p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }
.addendum a { color: var(--cyan); text-decoration: underline; text-underline-offset: 4px; }

/* mentions-legales: reuse .policy-box as flat container */
main .policy-box:has(.legal-section) { border-top: 1px solid var(--border); padding-top: 8px; }
.legal-section { padding: 36px 0; border-bottom: 1px solid var(--border); }
.legal-section:first-of-type { padding-top: 8px; }
.legal-section:last-of-type { border-bottom: none; }
.legal-section h2 { font-family: 'Fraunces', serif; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 14px; }
.legal-section p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--text); font-weight: 500; }
.legal-section a { color: var(--cyan); text-decoration: underline; text-underline-offset: 4px; }

dl.legal-list { margin-top: 16px; display: flex; flex-direction: column; }
dl.legal-list > div { display: flex; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
dl.legal-list > div:first-child { border-top: 1px solid var(--border); }
dl.legal-list dt { flex: 0 0 220px; color: var(--muted); font-weight: 400; padding-right: 16px; }
dl.legal-list dd { color: var(--text); font-weight: 300; flex: 1; }
dl.legal-list dd a { color: var(--cyan); text-decoration: underline; text-underline-offset: 4px; }

.updated { font-size: 0.8rem; color: var(--subtle); margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }

/* ============================================================
   SUPPORT — FAQ + contact
   ============================================================ */

.faq-section { margin-bottom: 80px; }
.faq-section .section-label { margin-bottom: 30px; }

details { border-bottom: 1px solid var(--border); transition: border-color 0.2s; }
details:first-of-type { border-top: 1px solid var(--border); }
details[open] { border-color: var(--brd2); }
summary {
  padding: 24px 4px; cursor: pointer; font-weight: 400; font-size: 1.02rem;
  color: var(--text); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
  font-family: 'Fraunces', serif;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--cyan); }
summary::after {
  content: '+'; font-size: 1.6rem; font-weight: 300; color: var(--muted); flex-shrink: 0;
  width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
details[open] summary::after { transform: rotate(45deg); color: var(--cyan); }
details[open] summary { color: var(--text); }
.answer { padding: 0 4px 28px; font-size: 0.94rem; color: var(--muted); line-height: 1.8; }
.answer strong { color: var(--text); font-weight: 500; }
.answer code {
  font-family: 'DM Mono', 'SF Mono', ui-monospace, monospace;
  font-size: 0.85rem; color: var(--cyan);
}

.contact-card {
  position: relative; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 56px 0; display: flex; flex-direction: column; align-items: flex-start; gap: 22px;
}
.contact-card h2 { font-family: 'Fraunces', serif; font-size: clamp(1.7rem, 2.8vw, 2.2rem); text-transform: uppercase; line-height: 1.15; font-weight: 400; }
.contact-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; max-width: 480px; }
.response-time { font-size: 0.84rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 44px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.f-logo { font-family: 'Fraunces', serif; font-size: 1.1rem; text-transform: uppercase; color: var(--muted); }
.f-links { display: flex; gap: 30px; flex-wrap: wrap; }
.f-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; cursor: pointer; }
.f-links a:hover { color: var(--text); }
.f-copy { font-size: 0.76rem; color: var(--subtle); width: 100%; text-align: center; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  nav, body > nav { padding: 18px 22px; }
  .nav-center, .nav-links { display: none; }
  .nav-right { gap: 14px; }
  .hero { padding: 100px 24px 70px; }
  .hero-frame { display: none; }
  .feat-row { grid-template-columns: 1fr; gap: 40px; padding: 70px 24px; }
  .feat-row.reverse { direction: ltr; }
  .strip { grid-template-columns: 1fr; padding: 60px 24px 80px; gap: 48px; }
  .privacy { padding: 70px 24px; }
  .privacy-inner { grid-template-columns: 1fr; gap: 44px; }
  .cta { padding: 90px 24px; }
  footer { padding: 32px 24px; }
  main { padding: 110px 20px 40px; }
  .step { grid-template-columns: 1fr; gap: 14px; padding: 40px 0; }
  .step-num { font-size: 1.8rem; }
  .policy-grid { grid-template-columns: 1fr; gap: 32px; }
  dl.legal-list > div { flex-direction: column; gap: 4px; }
  dl.legal-list dt { flex: none; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
}
