/* ClarityBooks landing page styles.
   All styles are external (no inline style="" attributes) so the site can run
   under a strict Content-Security-Policy. */

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

:root {
  --ink: #0f0e0c;
  --cream: #f7f3ec;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --warm-gray: #6b6460;
  --card-bg: #ffffff;
  --border: #e2ddd6;
}

html { scroll-behavior: smooth; }

.hidden { display: none !important; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  background: rgba(247, 243, 236, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.logo span { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

/* ─── LANGUAGE TOGGLE ─── */
.lang-toggle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--ink); }
.lang-toggle b { color: var(--ink); font-weight: 700; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-light);
  color: #7a5c1a;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 2rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 4px 4px 0px var(--gold);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--ink);
}

.btn-primary.charter-cta { display: inline-block; margin-top: 1rem; }

.btn-ghost {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-guarantee {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-guarantee strong { color: var(--ink); font-weight: 500; }

/* ─── HERO CARD ─── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 8px 8px 0px var(--gold-light), 16px 16px 0px #e2ddd6;
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
}

.card-badge {
  background: #fdeccd;
  color: #8a6d1f;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.card-metric { margin-bottom: 1rem; }

.metric-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
  margin-bottom: 0.25rem;
}

.metric-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
}

.metric-value span {
  font-size: 0.8rem;
  color: #c0392b;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin-left: 0.3rem;
}
.metric-value span.good { color: #2e7d32; }

.bar-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.bar-item { display: flex; flex-direction: column; gap: 0.2rem; }

.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--warm-gray);
}
.bar-label b { color: var(--ink); font-weight: 500; }

.bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--gold);
  animation: grow 1.5s ease-out forwards;
  transform-origin: left;
}

@keyframes grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.bar-fill.green { background: #81c784; }
.bar-fill.red { background: #e57373; }
.bar-norm {
  position: absolute;
  top: -3px; bottom: -3px;
  width: 2px;
  background: var(--ink);
  opacity: 0.55;
}

/* width/position utilities (replace former inline styles, CSP-safe) */
.w-48 { width: 48%; }
.w-66 { width: 66%; }
.w-68 { width: 68%; }
.w-82 { width: 82%; }
.w-90 { width: 90%; }
.w-95 { width: 95%; }
.l-62 { left: 62%; }
.l-65 { left: 65%; }
.l-70 { left: 70%; }
.l-74 { left: 74%; }

.card-foot {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
  font-size: 0.74rem;
  color: var(--warm-gray);
  line-height: 1.5;
}
.card-foot b { color: var(--ink); font-weight: 500; }

/* ─── PROOF STRIP ─── */
.proof-strip {
  padding: 1.5rem 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--card-bg);
}

.proof-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  white-space: nowrap;
}

.proof-items { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  white-space: nowrap;
  color: var(--warm-gray);
}

.proof-icon { font-size: 1rem; }

/* ─── SECTIONS ─── */
.section {
  padding: 6rem 4rem;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ─── FOUNDER ─── */
.founder-section {
  padding: 6rem 4rem;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.founder-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 980px;
}
.founder-photo {
  width: 200px; height: 200px;
  border-radius: 4px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #7a5c1a;
  box-shadow: 8px 8px 0px var(--cream), 9px 9px 0px var(--border);
}
.founder-body .section-label { margin-bottom: 0.5rem; }
.founder-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.founder-quote em { font-style: italic; color: var(--gold); }
.founder-text { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.7; }
.founder-sig {
  margin-top: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
}
.founder-sig span { display: block; font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 0.8rem; color: var(--warm-gray); margin-top: 0.15rem; }

/* ─── DELIVERABLES ─── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.deliverable-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.deliverable-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.deliverable-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.deliverable-card:hover::after { transform: scaleX(1); }

.d-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.d-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.d-desc { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.6; }
.d-worth { margin-top: 0.9rem; font-size: 0.76rem; color: #7a5c1a; font-weight: 500; }

/* ─── BENCHMARK FEATURE ─── */
.benchmark-section {
  padding: 6rem 4rem;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.benchmark-section .section-label { color: var(--gold); }
.benchmark-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center; }
.benchmark-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.benchmark-section h2 em { font-style: italic; color: var(--gold); }
.benchmark-section p { font-size: 1rem; color: rgba(247,243,236,0.72); line-height: 1.75; margin-bottom: 1rem; }
.benchmark-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; }
.benchmark-list li { font-size: 0.92rem; color: rgba(247,243,236,0.85); display: flex; gap: 0.7rem; align-items: flex-start; }
.benchmark-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.bench-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 2rem;
}
.bench-row { margin-bottom: 1.4rem; }
.bench-row:last-child { margin-bottom: 0; }
.bench-top { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 0.4rem; color: rgba(247,243,236,0.7); }
.bench-top b { color: var(--cream); font-weight: 500; }
.bench-track { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; position: relative; }
.bench-you { position: absolute; top: 0; bottom: 0; border-radius: 4px; }
.bench-you.over { background: #e57373; }
.bench-you.ok { background: #81c784; }
.bench-mark { position: absolute; top: -4px; bottom: -4px; width: 2px; background: var(--gold); }
.bench-note { font-size: 0.72rem; color: rgba(247,243,236,0.5); margin-top: 0.35rem; }
.bench-cap { font-size: 0.72rem; color: rgba(247,243,236,0.45); margin-top: 1.5rem; line-height: 1.5; border-top: 1px dashed rgba(255,255,255,0.12); padding-top: 1rem; }

/* ─── GUARANTEE ─── */
.guarantee-section { padding: 5rem 4rem; position: relative; z-index: 1; }
.guarantee-box {
  background: var(--card-bg);
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 3rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 10px 10px 0px var(--gold-light);
}
.guarantee-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.guarantee-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700; line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.guarantee-box h2 em { font-style: italic; color: var(--gold); }
.guarantee-box p { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.7; max-width: 560px; margin: 0 auto; }

/* ─── HOW IT WORKS ─── */
.how-section { padding: 6rem 4rem; position: relative; z-index: 1; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step-card { position: relative; z-index: 1; text-align: center; }

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  color: var(--ink);
}

.step-card:hover .step-num { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.step-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-desc { font-size: 0.83rem; color: var(--warm-gray); line-height: 1.6; }

/* ─── PRICING ─── */
.pricing-section {
  padding: 6rem 4rem;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.pricing-section .section-label { color: var(--gold); }
.pricing-section .section-title { color: var(--cream); max-width: 100%; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan-price sup { font-size: 1.2rem; vertical-align: super; font-family: 'DM Sans', sans-serif; }

.plan-cadence { font-size: 0.8rem; color: rgba(247,243,236,0.5); margin-bottom: 1.5rem; }

.plan-desc {
  font-size: 0.88rem;
  color: rgba(247,243,236,0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.plan-features li {
  font-size: 0.85rem;
  color: rgba(247,243,236,0.8);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.plan-features li::before { content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
}

.btn-plan:hover { border-color: var(--gold); color: var(--gold); }

.btn-plan.featured-btn { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 600; }
.btn-plan.featured-btn:hover { background: #d4b05a; transform: translateY(-1px); }

/* ─── CHARTER / SOCIAL PROOF ─── */
.charter-section { padding: 6rem 4rem; background: var(--gold-light); position: relative; z-index: 1; }
.charter-box { max-width: 820px; }
.charter-section .section-title { max-width: 640px; }
.charter-section .section-intro { color: #5c4a1e; }
.charter-list { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.charter-item {
  display: flex; align-items: flex-start; gap: 0.9rem;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 4px; padding: 1.1rem 1.25rem;
}
.charter-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.charter-item p { font-size: 0.9rem; color: var(--ink); line-height: 1.55; }
.charter-item p span { color: var(--warm-gray); }

/* ─── FAQ ─── */
.faq-section { padding: 6rem 4rem; position: relative; z-index: 1; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3rem;
}

.faq-item { background: var(--card-bg); padding: 2rem; }
.faq-q { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; }
.faq-a { font-size: 0.85rem; color: var(--warm-gray); line-height: 1.65; }

/* ─── CTA FINAL ─── */
.cta-section { padding: 7rem 4rem; text-align: center; position: relative; z-index: 1; overflow: hidden; }

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.cta-section h2 em { font-style: italic; color: var(--gold); }

.cta-sub { font-size: 1rem; color: var(--warm-gray); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.6; }
.cta-note { font-size: 0.78rem; color: var(--warm-gray); margin-top: 1rem; }
.cta-note a { color: var(--ink); }

/* ─── DISCLAIMER ─── */
.disclaimer {
  padding: 2.5rem 4rem;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.disclaimer p {
  font-size: 0.74rem;
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.disclaimer strong { color: var(--ink); font-weight: 500; }

/* ─── FOOTER ─── */
footer {
  padding: 2rem 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-logo { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.75rem; color: var(--warm-gray); }
.footer-links { display: flex; gap: 1.25rem; font-size: 0.75rem; }
.footer-links a { color: var(--warm-gray); text-decoration: none; border-bottom: 1px solid var(--border); }
.footer-links a:hover { color: var(--ink); border-color: var(--ink); }

/* ─── FADE IN ─── */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp 0.7s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 3rem; }
  .hero-visual { display: none; }
  .section, .how-section, .faq-section, .cta-section, .charter-section,
  .benchmark-section, .guarantee-section, .founder-section { padding: 4rem 1.5rem; }
  .pricing-section { padding: 4rem 1.5rem; }
  .deliverables-grid, .pricing-grid { grid-template-columns: 1fr; }
  .benchmark-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .founder-photo { margin: 0 auto; }
  .guarantee-box { padding: 2rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .proof-strip { padding: 1.5rem; gap: 1rem; flex-wrap: wrap; }
  .disclaimer { padding: 2rem 1.5rem; }
  footer { flex-direction: column; gap: 0.75rem; text-align: center; padding: 2rem 1.5rem; }
}

/* ─── PRIVACY POLICY PAGE ─── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  z-index: 1;
}
.legal-page h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.legal-page .legal-updated { font-size: 0.8rem; color: var(--warm-gray); margin-bottom: 2rem; }
.legal-page h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin: 2.25rem 0 0.75rem; }
.legal-page p, .legal-page li { font-size: 0.92rem; color: #3d3a36; line-height: 1.75; margin-bottom: 0.9rem; }
.legal-page ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-page .draft-banner {
  background: #fdeccd;
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: #5c4a1e;
  margin-bottom: 2rem;
  line-height: 1.6;
}
