:root {
  --paper: #F5F4EE;
  --paper-raised: #FFFFFF;
  --cream: #FAF9F5;
  --beige: #E8E7DF;
  --ink: #0B1420;
  --ink-muted: #5B6470;
  --accent: #028192;
  --accent-soft: #E3F2F3;
  --accent-ink: #FFFFFF;
  --card-bg: #FFFFFF;
  --line: #E7E9E1;
  --radius: 20px;

  --navy: #081828;
  --navy-raised: #10293D;
  --navy-line: rgba(255, 255, 255, 0.09);
  --navy-ink: #F2F6F5;
  --navy-ink-muted: #9FB2BE;

  --good: #1E7A55;
  --good-soft: #E3F1E9;

  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  --shadow-card: 0 1px 2px rgba(11, 20, 32, 0.05), 0 8px 24px rgba(11, 20, 32, 0.07);
  --shadow-card-hover: 0 4px 10px rgba(11, 20, 32, 0.07), 0 16px 36px rgba(11, 20, 32, 0.1);
  --glow-navy: 0 0 70px rgba(2, 129, 146, 0.16);

  --role-1: #3f7a72;
  --role-2: #a8763e;
  --role-3: #a14b3a;
  --role-4: #3d5a78;
  --role-5: #6b3550;

  --terracotta: #b5602f;

  --dur-fast: 300ms;
  --dur-base: 450ms;
  --dur-slow: 700ms;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --w-narrow: 720px;
  --w-wide: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.16;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

p { line-height: 1.65; margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
em { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

.container { width: 100%; max-width: var(--w-wide); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--w-narrow); }

section { padding: 96px 0; position: relative; }

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .container { padding: 0 18px; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title { font-size: clamp(27px, 4vw, 38px); }
.section-lede { color: var(--ink-muted); font-size: 17px; max-width: 58ch; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  padding: 17px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 1px 2px rgba(2,129,146,.2), 0 10px 24px rgba(2,129,146,.22); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(2,129,146,.25), 0 16px 32px rgba(2,129,146,.3); }
.btn-primary:active { transform: translateY(0); }


.btn-on-navy-solid { background: #fff; color: var(--navy); }
.btn-on-navy-solid:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.25); }

.btn-block { width: 100%; }

/* ---------- reveal-on-scroll ---------- */

.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal { transform: translateY(20px); }
.reveal-left { transform: translateX(-26px); }
.reveal-right { transform: translateX(26px); }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .faq-a { transition: none !important; }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}

/* ---------- header ---------- */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  padding: 18px 0;
  transition: background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { background: rgba(245, 244, 238, 0.88); backdrop-filter: blur(10px); border-color: var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.brand { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff; text-decoration: none; transition: color var(--dur-fast) var(--ease); }
.site-header.is-scrolled .brand { color: var(--navy); }
.site-header .btn { padding: 11px 20px; font-size: 14px; }

/* ---------- hero ---------- */

.hero { background: var(--navy); color: var(--navy-ink); padding: 168px 0 110px; position: relative; overflow: hidden; }
@media (max-width: 640px) { .hero { padding: 130px 0 64px; } }
.hero::before {
  content: ''; position: absolute; inset: -20% -10% auto -10%; height: 70%;
  background: radial-gradient(ellipse at 30% 0%, rgba(2,129,146,.28), transparent 60%);
  pointer-events: none;
}
.hero-lines { position: absolute; inset: 0; pointer-events: none; opacity: .5; overflow: hidden; }
.hero-inner { position: relative; max-width: 1220px; }

.hero-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; width: 100%; max-width: 480px; margin: 0 auto; }
}

.hero-visual .photo-card { aspect-ratio: 3 / 2; min-height: 0; }

.hero .eyebrow { color: #6fd6de; }
.hero h1 { font-size: clamp(32px, 4.6vw, 48px); color: #fff; max-width: 16ch; }
.hero h1 em { color: #bfe9ec; }
.hero .section-lede { color: var(--navy-ink-muted); font-size: 17.5px; max-width: 50ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-fineprint { margin-top: 22px; font-size: 13.5px; color: var(--navy-ink-muted); max-width: 46ch; }

/* photo placeholder (no real photography available yet) */

.photo-card {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  background:
    radial-gradient(circle at 30% 20%, rgba(2,129,146,.35), transparent 55%),
    linear-gradient(155deg, #12324a 0%, #0c2136 55%, #081828 100%);
  border: 1px solid var(--navy-line);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.photo-chip {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--navy); border: 1px solid var(--navy-line);
  border-radius: 14px; padding: 14px 18px; box-shadow: 0 10px 24px rgba(0,0,0,.35);
  max-width: 260px;
}
.photo-chip .chip-label { display: block; font-size: 12px; color: var(--navy-ink-muted); margin-bottom: 4px; }
.photo-chip .chip-value { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 15px; }

/* ---------- fit (antes de continuar) ---------- */

.fit { background: var(--cream); }
.fit-header { max-width: 620px; margin: 0 auto 48px; }
.fit-header .section-lede { margin: 0 auto; }

.fit-body { display: grid; grid-template-columns: 2.1fr 1fr; gap: 28px; align-items: start; }

.fit-positive-title {
  font-family: var(--font-head); font-weight: 800; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
  margin: 0 0 18px;
}

.fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }

.fit-card {
  background: var(--card-bg); border: 1px solid var(--line); border-top: 3px solid var(--accent);
  border-radius: 14px; padding: 22px 20px;
}
.fit-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.fit-num { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--accent); }
.fit-card .icon { width: 20px; height: 20px; color: var(--accent); opacity: 0.55; display: flex; }
.fit-card .icon svg { width: 100%; height: 100%; }
.fit-card h4 { font-size: 15.5px; margin-bottom: 8px; }
.fit-card p { font-size: 13.5px; color: var(--ink-muted); margin: 0 0 8px; }
.fit-card p:last-child { margin-bottom: 0; }

.fit-common {
  margin: 22px 0 0; font-size: 15.5px; color: var(--ink-muted); line-height: 1.6; max-width: 62ch;
}
.fit-common strong { color: var(--ink); font-weight: 700; }

.fit-negative {
  background: var(--beige); border-left: 4px solid var(--terracotta);
  border-radius: 0 14px 14px 0; padding: 26px 24px;
}
.fit-negative h4 { font-size: 15.5px; margin-bottom: 16px; }
.fit-negative ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.fit-negative li { position: relative; padding-left: 18px; font-size: 13.5px; color: var(--ink-muted); line-height: 1.55; }
.fit-negative li::before { content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }

.fit-closing {
  background: var(--navy); color: #fff; text-align: center;
  border-radius: 18px; padding: 38px 32px; margin-top: 40px;
}
.fit-closing p { margin: 0; font-size: clamp(18px, 2.3vw, 21px); line-height: 1.55; }
.fit-closing-highlight { display: block; margin-top: 6px; font-family: var(--font-serif); font-style: italic; font-weight: 500; color: #6fd6de; }

.fit-continue-wrap { text-align: center; margin: 28px auto 0; }
.fit-continue { color: var(--accent); font-weight: 700; font-size: 15px; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px) {
  .fit-body { grid-template-columns: 1fr; }
  .fit-negative { border-radius: 14px; }
}

@media (max-width: 700px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* ---------- flow (como o plano e criado) ---------- */

.flow { background: var(--paper); }
.flow-header { max-width: 640px; margin: 0 auto 8px; }
.flow-header .section-lede { margin: 0 auto; }

.flow-timeline {
  position: relative;
  max-width: 700px;
  margin: 56px auto 48px;
}
.flow-timeline::before {
  content: '';
  position: absolute;
  left: 23px; top: 6px; bottom: 6px; width: 2px;
  background: var(--line);
}

.flow-item { position: relative; display: flex; gap: 24px; padding-bottom: 36px; }
.flow-item:last-child { padding-bottom: 0; }

.flow-item--1, .flow-item--2, .flow-item--3 { --flow-color: var(--accent); }
.flow-item--4, .flow-item--5, .flow-item--6 { --flow-color: var(--terracotta); }

.flow-marker {
  position: relative; z-index: 1; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--flow-color, var(--accent));
}
.flow-marker-num { font-family: var(--font-head); font-weight: 800; font-size: 14.5px; color: var(--flow-color, var(--accent)); }

.flow-content { padding-top: 5px; }
.flow-content h3 { font-size: 17px; margin-bottom: 4px; }
.flow-tag { display: block; font-family: var(--font-head); font-weight: 700; font-size: 12.5px; color: var(--flow-color, var(--accent)); margin-bottom: 6px; }
.flow-content p { font-size: 14.5px; color: var(--ink-muted); margin: 0; max-width: 46ch; }

.flow-divider {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 12px;
  padding: 2px 0 30px 70px; margin-top: -14px;
}
.flow-divider span {
  font-family: var(--font-head); font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted);
}

.flow-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 34px 38px;
}
.flow-banner-icon {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
}
.flow-banner-icon svg { width: 24px; height: 24px; color: #fff; }
.flow-banner-text h3 { color: #fff; font-size: 18.5px; margin-bottom: 8px; }
.flow-banner-text p { color: var(--navy-ink-muted); font-size: 14.5px; margin: 0; }
.flow-banner-quote {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 18px; color: #fff; margin: 0;
  border-left: 1px solid var(--navy-line); padding-left: 28px; max-width: 26ch;
}

.flow-ai-note {
  margin: 20px 0 0; font-size: 13px; line-height: 1.6; color: var(--ink-muted);
  max-width: 70ch;
}
.flow-ai-note strong { color: var(--ink); font-weight: 700; }

@media (max-width: 980px) {
  .flow-banner { grid-template-columns: auto 1fr; }
  .flow-banner-quote { grid-column: 1 / -1; border-left: none; border-top: 1px solid var(--navy-line); padding-left: 0; padding-top: 20px; max-width: none; }
}

@media (max-width: 620px) {
  .flow-banner { grid-template-columns: 1fr; text-align: center; }
  .flow-banner-icon { margin: 0 auto; }
  .flow-timeline { max-width: none; }
  .flow-timeline::before { left: 19px; }
  .flow-item { gap: 16px; padding-bottom: 30px; }
  .flow-marker { width: 38px; height: 38px; }
  .flow-marker-num { font-size: 13px; }
  .flow-divider { padding-left: 54px; }
}

/* ---------- doubt-cost (imagem em largura total) ---------- */

.doubt-cost { position: relative; min-height: 680px; display: flex; align-items: stretch; overflow: hidden; background: var(--navy); }
.doubt-cost-media { position: absolute; inset: 0; z-index: 0; }
.doubt-cost-media img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; }
.doubt-cost::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(8,24,40,.96) 34%, rgba(8,24,40,.74) 55%, rgba(8,24,40,.18) 78%, rgba(8,24,40,0) 100%);
}
.doubt-cost-copy {
  position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center;
  max-width: 620px; padding: 100px 6vw 100px 24px; margin-left: max(24px, calc((100% - 1160px) / 2));
  color: var(--navy-ink);
}
@media (min-width: 1220px) { .doubt-cost-copy { padding-left: 0; } }
.doubt-cost-copy .eyebrow { color: #6fd6de; }
.doubt-cost-copy h2 { color: #fff; font-size: clamp(28px, 4vw, 38px); max-width: 18ch; margin-bottom: 20px; }
.doubt-cost-copy p { color: var(--navy-ink-muted); font-size: 16px; max-width: 48ch; }

.doubt-cost-quotes { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.doubt-cost-quotes p {
  font-family: var(--font-serif); font-style: italic; font-size: 17px; color: #eaf6f6;
  border-left: 2px solid var(--accent); padding-left: 16px; margin: 0; max-width: 44ch;
}

.doubt-cost-emphasis {
  font-family: var(--font-serif); font-weight: 500; font-size: 19px; line-height: 1.4;
  color: #fff; max-width: 42ch; margin-top: 8px;
}

@media (max-width: 860px) {
  .doubt-cost { flex-direction: column; min-height: 0; }
  .doubt-cost-media { position: static; height: 320px; flex-shrink: 0; }
  .doubt-cost::before { display: none; }
  .doubt-cost-copy { max-width: none; padding: 40px 22px 56px; margin-left: 0; background: var(--navy); }
}

/* ---------- doubt-futures (dois futuros possiveis) ---------- */

.doubt-futures { background: var(--paper); }
.doubt-futures-header { max-width: 660px; margin: 0 auto 48px; }
.doubt-futures-header .section-title { margin: 0 auto; }

.doubt-futures-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: stretch; }
@media (max-width: 800px) { .doubt-futures-grid { grid-template-columns: 1fr; } }

.doubt-future { padding: 32px; border-radius: 18px; }
.doubt-future h3 { font-size: 18px; margin-bottom: 14px; }
.doubt-future p { font-size: 15px; margin-bottom: 12px; }
.doubt-future p:last-child { margin-bottom: 0; }

.doubt-future--before { background: transparent; border: 1px solid var(--line); color: var(--ink-muted); }
.doubt-future--before h3 { color: var(--ink); }

.doubt-future--after {
  background: var(--paper-raised); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-card-hover); color: var(--ink);
}
.doubt-future--after h3 { color: var(--navy); }

.doubt-futures-note {
  text-align: center; margin: 40px auto 0; max-width: 60ch;
  font-family: var(--font-serif); font-style: italic; font-size: 18px; line-height: 1.5; color: var(--navy);
}

/* ---------- doubt-decision (fechamento emocional) ---------- */

.doubt-decision {
  background: linear-gradient(180deg, #081828 0%, #0c2438 100%); color: var(--navy-ink);
  text-align: center; padding: 130px 0; position: relative; overflow: hidden;
}
@media (max-width: 640px) { .doubt-decision { padding: 80px 0; } }
.doubt-decision::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(2,129,146,.2), transparent 60%); }
.doubt-decision > .container { position: relative; }
.doubt-decision .eyebrow { color: #6fd6de; }
.doubt-decision h2 { color: #fff; font-size: clamp(26px, 4.4vw, 38px); }
.doubt-decision-highlight { color: #6fd6de; }
.doubt-decision .section-lede { color: var(--navy-ink-muted); margin: 0 auto 24px; }
.doubt-decision-serif {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2.6vw, 25px); color: #fff; margin: 0 auto 32px; max-width: 34ch;
}
.doubt-decision-fineprint { margin-top: 18px; font-size: 13px; color: var(--navy-ink-muted); }
@media (max-width: 640px) { .doubt-decision .btn { width: 100%; } }

/* ---------- 5 possibilities ---------- */

.method { background: var(--paper); }
.method-header { max-width: 660px; margin: 0 auto 48px; text-align: center; }
.method-header .section-lede { margin: 0 auto; }

.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .role-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .role-grid { grid-template-columns: 1fr; } }

.role-card {
  background: var(--card-bg); border: 1px solid var(--line); border-top: 4px solid var(--role-color, var(--accent));
  border-radius: 14px; padding: 26px 24px;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.role-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.role-card .num { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--role-color, var(--accent)); display: block; margin-bottom: 18px; }
.role-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.role-card p { font-size: 14px; color: var(--ink-muted); margin: 0; }
.method-note { margin-top: 24px; font-size: 14.5px; color: var(--ink-muted); text-align: center; max-width: 60ch; margin-left: auto; margin-right: auto; }

/* ---------- o que voce recebe ---------- */

.recebe { background: var(--navy); color: var(--navy-ink); }
.recebe .eyebrow { color: #6fd6de; }
.recebe .section-title { color: #fff; }
.recebe .section-lede { color: var(--navy-ink-muted); }

.recebe-header { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; margin-bottom: 8px; }
@media (max-width: 900px) { .recebe-header { grid-template-columns: 1fr; gap: 28px; } }

.recebe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 40px 0 48px; }
@media (max-width: 700px) { .recebe-grid { grid-template-columns: 1fr; } }
.recebe-card { background: var(--navy-raised); border: 1px solid var(--navy-line); border-radius: 16px; padding: 26px; }
.recebe-card .num { font-family: var(--font-head); font-weight: 800; font-size: 13px; color: #6fd6de; display: block; margin-bottom: 14px; }
.recebe-card h4 { font-size: 16.5px; color: #fff; margin-bottom: 8px; }
.recebe-card p { font-size: 14.5px; color: var(--navy-ink-muted); margin: 0; }

.recebe-quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(22px, 3vw, 28px); color: #eaf6f6; text-align: center; max-width: 720px; margin: 0 auto; }

.recebe-cta { text-align: center; margin: 32px auto 0; }

/* ---------- pra quem e ---------- */

.who { background: var(--paper); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
@media (max-width: 800px) { .who-grid { grid-template-columns: 1fr; } }
.who-card { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.who-card .eyebrow { font-size: 11px; }
.who-card h4 { font-size: 17px; margin-bottom: 6px; }
.who-card p { color: var(--ink-muted); font-size: 14.5px; margin: 0; }

.who-split { display: grid; grid-template-columns: 1fr 1fr; margin-top: 24px; background: var(--navy); border-radius: 18px; overflow: hidden; }
@media (max-width: 700px) { .who-split { grid-template-columns: 1fr; } }
.who-split > div { padding: 30px 32px; }
.who-split > div:first-child { border-right: 1px solid var(--navy-line); }
@media (max-width: 700px) { .who-split > div:first-child { border-right: none; border-bottom: 1px solid var(--navy-line); } }
.who-split .eyebrow { color: #6fd6de; font-size: 11px; }
.who-split p { color: var(--navy-ink-muted); font-size: 15px; margin: 0; }

/* ---------- comparison table ---------- */

.compare { background: var(--paper-raised); }
.compare-table-wrap { margin-top: 36px; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); }
table.compare-table { width: 100%; border-collapse: collapse; }
table.compare-table thead th {
  background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px;
  text-align: left; padding: 18px 24px;
}
table.compare-table td { padding: 16px 24px; font-size: 15px; border-top: 1px solid var(--line); line-height: 1.5; }
table.compare-table td.no { color: var(--ink-muted); }
table.compare-table td.yes { font-weight: 600; color: var(--ink); }
table.compare-table .mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; margin-right: 12px;
  vertical-align: middle; position: relative; top: -1px;
}
table.compare-table .mark svg { width: 12px; height: 12px; }
table.compare-table td.no .mark { background: var(--line); color: var(--ink-muted); }
table.compare-table td.yes .mark { background: var(--accent); color: #fff; }
table.compare-table .label { display: inline; }

/* ---------- creator ---------- */

.creator { background: var(--paper); }
.creator-grid { display: grid; grid-template-columns: 96px 1fr; gap: 40px; max-width: 820px; margin: 0 auto; }
@media (max-width: 640px) { .creator-grid { grid-template-columns: 1fr; text-align: center; } }
.creator-avatar {
  width: 96px; height: 96px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 30px;
  border: 3px solid var(--accent-soft); flex-shrink: 0; overflow: hidden;
}
.creator-avatar img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 640px) { .creator-avatar { margin: 0 auto; } }
.creator-lead { color: var(--accent); font-weight: 700; font-family: var(--font-head); font-size: 15.5px; }
.creator-text p { color: var(--ink-muted); font-size: 15px; }
.creator-pullquote {
  font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--ink);
  border-left: 2px solid var(--accent); padding-left: 18px; margin: 22px 0 14px;
}
@media (max-width: 640px) { .creator-pullquote { border-left: none; border-top: 2px solid var(--accent); padding-left: 0; padding-top: 14px; } }
/* ---------- security ---------- */

.security { background: var(--beige); }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .security-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .security-grid { grid-template-columns: 1fr; } }
.security-item .num { font-family: var(--font-head); font-weight: 800; color: var(--accent); font-size: 13px; display: block; margin-bottom: 10px; }
.security-item h4 { font-size: 15px; margin-bottom: 6px; }
.security-item p { color: var(--ink-muted); font-size: 14px; margin: 0; }
.security-item.is-guarantee .num { color: var(--good); }
.security-item.is-guarantee h4 { color: var(--good); }

/* ---------- faq ---------- */

.faq { background: var(--paper-raised); }
.faq-list { max-width: 760px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: var(--card-bg); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 19px 22px; background: transparent; border: none; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--ink); cursor: pointer;
}
.faq-q .plus { flex-shrink: 0; color: var(--accent); font-size: 20px; line-height: 1; transition: transform var(--dur-fast) var(--ease); }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-base) var(--ease); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 22px 20px; color: var(--ink-muted); font-size: 15px; }

/* ---------- guarantee badge ---------- */

.guarantee-badge {
  display: flex; align-items: center; gap: 16px;
  background: var(--good-soft); border: 1.5px dashed rgba(30,122,85,.45);
  border-radius: 14px; padding: 16px 20px; text-align: left; margin: 22px 0;
}
.guarantee-badge .icon-wrap {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: var(--good); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(30,122,85,.3);
}
.guarantee-badge .icon { width: 21px; height: 21px; }
.guarantee-badge strong { display: block; color: var(--good); font-family: var(--font-head); font-size: 14.5px; margin-bottom: 3px; }
.guarantee-badge span.detail { font-size: 13.5px; color: var(--ink-muted); }

/* ---------- offer ---------- */

.offer { background: var(--navy); color: var(--navy-ink); position: relative; overflow: hidden; }
.offer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 15%, rgba(2,129,146,.22), transparent 55%); pointer-events: none;
}
.offer .eyebrow { color: #6fd6de; }
.offer .section-title { color: #fff; }

.offer-card {
  position: relative; max-width: 600px; margin: 40px auto 0; background: var(--paper-raised);
  border-radius: 22px; padding: 40px 40px 0; box-shadow: var(--glow-navy); text-align: left;
  overflow: hidden;
}
.offer-card .eyebrow { color: var(--accent); font-size: 11.5px; }
.offer-top { padding-bottom: 30px; }
.offer-price-row, .offer-cash, .offer-fineprint, .offer-card > .btn { text-align: center; }
.offer-includes { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.offer-includes li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink); }
.offer-includes li::before { content: ''; position: absolute; left: 0; top: 6px; width: 15px; height: 15px; border-radius: 50%; background: var(--accent); }

.offer-action {
  background: var(--paper); border-top: 1px solid var(--line);
  margin: 0 -40px; padding: 28px 40px 36px; border-radius: 0 0 22px 22px;
}
@media (max-width: 640px) {
  .offer-card { padding: 28px 22px 0; }
  .offer-action { margin: 0 -22px; padding-left: 22px; padding-right: 22px; }
}

.offer-price-row { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-top: 4px; }
.offer-price-row .label { font-size: 15px; color: var(--ink-muted); }
.offer-price-row .value {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -0.01em;
  font-size: clamp(38px, 6vw, 48px);
  background: linear-gradient(135deg, var(--navy) 20%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--navy);
}
.offer-price-row .value .currency { font-size: 0.4em; font-weight: 700; margin-right: 3px; }
.offer-price-row .value .cents { font-size: 0.52em; font-weight: 700; }
.offer-cash { text-align: center; font-size: 14px; color: var(--ink-muted); margin-bottom: 6px; }

.guarantee-badge.in-offer { margin: 20px 0 22px; }

.offer-fineprint { text-align: center; margin-top: 16px; font-size: 13px; color: var(--ink-muted); }
/* ---------- shared centered-narrow container ---------- */

.closing-inner { position: relative; max-width: 640px; margin: 0 auto; }

/* ---------- footer ---------- */

.site-footer { background: var(--navy); color: var(--navy-ink-muted); border-top: 1px solid var(--navy-line); padding: 28px 0; font-size: 13px; text-align: center; }
.site-footer a { color: var(--navy-ink-muted); text-decoration: underline; }
