/* ============================================================
   TIPO GRIS — sistema de diseño
   Marca: fondo oscuro · acento rojo · titulares condensados
   Tipografía: Oswald (display) · Inter (texto)
   ============================================================ */

:root {
  --bg:         #0a0a0a;
  --surface:    #141414;
  --surface-2:  #1c1c1c;
  --border:     #2a2a2a;
  --red:        #cc1f1f;
  --red-bright: #e53535;
  --grey:       #9ca3af;
  --grey-light: #d1d5db;
  --white:      #f5f5f5;

  --line:        rgba(245, 245, 245, 0.10);
  --line-strong: rgba(245, 245, 245, 0.18);

  --font-display: "Oswald", "Helvetica Neue", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --radius: 6px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; letter-spacing: 0.005em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; color: var(--white); }
.accent { color: var(--red-bright); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red-bright);
  margin: 0 0 1.2rem;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.86rem;
  padding: 0.95em 1.7em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); background: var(--red-bright); border-color: var(--red-bright); box-shadow: 0 12px 28px -12px rgba(204,31,31,0.6); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 0.6em 1.15em; font-size: 0.76rem; }
.btn--lg { padding: 1.1em 2.1em; font-size: 0.96rem; }
.btn--block { display: flex; width: 100%; }
.btn--accent { --btn-bg: var(--red); --btn-fg: #fff; border-color: var(--red); }
.btn--accent:hover { --btn-bg: var(--red-bright); border-color: var(--red-bright); }
/* Light button: solid white on dark */
.btn--light { --btn-bg: var(--white); --btn-fg: var(--bg); border-color: var(--white); }
.btn--light:hover { --btn-bg: #fff; border-color: #fff; box-shadow: 0 12px 28px -12px rgba(0,0,0,0.6); }
/* Ghost button: outline that fills red on hover */
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 0.6em; }
.brand__mark {
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(204,31,31,0.20);
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.brand__name span { color: var(--red-bright); }
.brand__name--lg { font-size: 2rem; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--red); transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px;
  align-items: center; justify-content: center; margin-left: auto;
  background: none; border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer;
}
.nav__toggle span { width: 20px; height: 2px; background: var(--white); transition: 0.25s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none; flex-direction: column; gap: 4px; padding: 16px 24px 24px;
  border-bottom: 1px solid var(--border); background: var(--surface);
}
.nav__mobile.open { display: flex; }
.nav__mobile a { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; padding: 12px 0; border-bottom: 1px solid var(--border); }
.nav__mobile .btn { margin-top: 12px; border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--white);
  padding: clamp(70px, 11vw, 130px) 0 0;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("/assets/hero.jpeg") center 30% / cover no-repeat;
  opacity: 0.9;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.9) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.5) 100%);
}
.hero__glow {
  position: absolute; top: -25%; right: -10%; width: 60vw; height: 60vw; max-width: 780px; max-height: 780px;
  background: radial-gradient(circle, rgba(204,31,31,0.30), transparent 62%);
  filter: blur(20px); pointer-events: none; z-index: 1;
}
.hero__inner { position: relative; z-index: 2; max-width: 900px; padding-bottom: clamp(50px, 7vw, 90px); }
.hero .eyebrow { color: var(--red-bright); }
.hero__title {
  font-size: clamp(2.9rem, 9vw, 6.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.98;
  margin-bottom: 0.4em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero__lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 24ch;
  margin-bottom: 1em;
  color: var(--white);
}
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--grey-light); max-width: 56ch; margin-bottom: 2em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.6em; }
.hero__proof { margin-bottom: 2em; }
.proof__yt {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--font-display); font-size: 0.92rem; letter-spacing: 0.04em;
  color: var(--grey-light); text-transform: uppercase;
}
.proof__yt svg { color: var(--red-bright); flex: none; }
.proof__yt strong { color: #fff; font-weight: 700; }
.proof__yt em { font-style: normal; color: var(--red-bright); font-weight: 600; }
.hero__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.5;
  max-width: 54ch;
  margin: 0;
  padding-left: 1.1em;
  border-left: 3px solid var(--red);
  color: var(--grey-light);
}
.hero__quote cite { display: block; margin-top: 0.6em; font-style: normal; font-family: var(--font-display); font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); }

/* Marquee ticker */
.marquee {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 16px 0; background: var(--surface);
}
.marquee__track {
  display: flex; gap: 3.5rem; white-space: nowrap; width: max-content;
  animation: slide 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.84rem; font-weight: 600; color: var(--grey-light); display: inline-flex; gap: 0.6em;
}
.marquee__track span::first-letter { color: var(--red-bright); }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============================================================
   TU CUERPO CAMBIA
   ============================================================ */
.change { padding: clamp(70px, 10vw, 130px) 0; background: var(--bg); }
.change__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px);
  align-items: start; margin-bottom: clamp(50px, 7vw, 90px);
}
.change__lead h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); text-transform: uppercase; }
.change__body p { font-size: 1.12rem; color: var(--grey-light); }
.change__body p:last-child { margin-bottom: 0; }

.pillars { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.pillar { background: var(--surface); padding: 34px 28px; transition: background 0.25s var(--ease); }
.pillar:hover { background: var(--surface-2); }
.pillar__num { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--red-bright); letter-spacing: 0.1em; }
.pillar h3 { font-size: 1.2rem; text-transform: uppercase; margin: 1em 0 0.5em; line-height: 1.15; }
.pillar p { font-size: 0.98rem; color: var(--grey); margin: 0; }

/* ============================================================
   Section head
   ============================================================ */
.section-head { max-width: 60ch; margin: 0 auto clamp(46px, 6vw, 72px); text-align: center; }
.section-head--left { text-align: left; margin-left: 0; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); text-transform: uppercase; line-height: 1.08; }
.section-head__sub { margin-top: 0.9em; color: var(--grey); font-size: 1.1rem; }

/* ============================================================
   PRECIOS
   ============================================================ */
.pricing { padding: clamp(70px, 10vw, 130px) 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px;
  padding: 30px 30px 36px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 24px 50px -30px rgba(0,0,0,0.8); }
.tier--feature { background: linear-gradient(180deg, #201012, var(--surface-2)); border-color: var(--red); transform: scale(1.03); }
.tier--feature:hover { transform: scale(1.03) translateY(-4px); }
.tier__cover {
  width: 100%; height: 190px; object-fit: contain; object-position: center;
  margin: 0 0 1.4em; border-radius: 8px; background: var(--bg); padding: 12px;
  border: 1px solid var(--border);
}
.tier__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--red); color: #fff; padding: 0.5em 1.1em; border-radius: 100px; white-space: nowrap; z-index: 3;
}
.tier__badge--alt { background: var(--surface); border: 1px solid var(--border); }
.tier__tag { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem; color: var(--red-bright); margin: 0 0 0.7em; }
.tier__name { font-size: 1.55rem; text-transform: uppercase; margin-bottom: 0.4em; }
.tier__desc { font-size: 0.98rem; color: var(--grey); min-height: 3em; }
.tier__price { display: flex; align-items: baseline; gap: 0.5em; margin: 0.2em 0 0.1em; }
.tier__now { font-family: var(--font-display); font-weight: 700; font-size: 2.7rem; letter-spacing: 0; color: var(--white); }
.tier__was { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--grey); text-decoration: line-through; }
.tier__save { font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--red-bright); margin-bottom: 1.4em; }
.tier__list { list-style: none; margin: 0 0 1.8em; padding: 1.4em 0 0; border-top: 1px solid var(--border); flex: 1; display: flex; flex-direction: column; gap: 0.85em; }
.tier__list li { position: relative; padding-left: 1.6em; font-size: 0.98rem; line-height: 1.45; color: var(--grey-light); }
.tier__list li strong { color: var(--white); }
.tier__list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px;
  border-right: 2px solid var(--red-bright); border-bottom: 2px solid var(--red-bright); transform: rotate(45deg);
}
.tier__list .bonus {
  font-family: var(--font-display); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--red); color: #fff; padding: 0.15em 0.5em; border-radius: 3px; margin-right: 0.5em; vertical-align: middle;
}

.pricing__secure { text-align: center; font-family: var(--font-display); font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey); margin: 2.6em 0 1.4em; }
.pricing__value { max-width: 62ch; margin: 0 auto; text-align: center; }
.pricing__value p { font-size: 1.12rem; color: var(--grey-light); font-style: italic; }
.pricing__value p:last-child { margin-bottom: 0; }

/* ============================================================
   LO QUE HAY DENTRO — guías
   ============================================================ */
.inside { padding: clamp(70px, 10vw, 130px) 0; background: var(--bg); }
.guide {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 70px);
  padding: clamp(38px, 5vw, 60px) 0; border-top: 1px solid var(--border); align-items: start;
}
.guide:last-child { border-bottom: 1px solid var(--border); }
.guide__cover {
  width: 100%; max-width: 320px; height: auto; margin: 0 0 1.6em; border-radius: 8px;
  border: 1px solid var(--border); box-shadow: 0 24px 50px -28px rgba(0,0,0,0.9);
}
.guide__label { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; color: var(--red-bright); margin-bottom: 1em; }
.guide__title { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.06; margin-bottom: 0.6em; text-transform: uppercase; }
.guide__intro { color: var(--grey-light); font-size: 1.08rem; }
.guide__meta { font-family: var(--font-display); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em; color: var(--grey); text-transform: uppercase; line-height: 1.6; margin: 1.2em 0; padding: 0.9em 0; border-top: 1px dashed var(--border); border-bottom: 1px dashed var(--border); }
.guide__inc { font-family: var(--font-display); font-size: 0.84rem; font-weight: 600; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; margin: 0; }
.guide__points { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.3em; }
.guide__points li { position: relative; padding-left: 2.4em; color: var(--grey-light); font-size: 1.05rem; line-height: 1.55; }
.guide__points li::before {
  content: "→"; position: absolute; left: 0; top: 0; font-family: var(--font-display); font-weight: 700;
  color: var(--red-bright); font-size: 1.2rem;
}
@media (min-width: 861px) {
  .guide--flip .guide__side { order: 2; }
  .guide--flip .guide__points { order: 1; }
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.voices { padding: clamp(70px, 10vw, 130px) 0; background: var(--surface); color: var(--white); }
.voices .eyebrow { color: var(--red-bright); }
.voices .section-head h2 { color: var(--white); }
.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 30px 28px;
  display: flex; flex-direction: column; transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.voice:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.stars { color: var(--red-bright); letter-spacing: 0.15em; font-size: 1rem; margin: 0 0 1em; }
.voice blockquote { margin: 0 0 1.2em; font-family: var(--font-body); font-style: italic; font-size: 1.05rem; line-height: 1.55; color: var(--grey-light); flex: 1; }
.voice figcaption { font-family: var(--font-display); font-weight: 600; font-size: 0.84rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--grey); }
.voices__note { text-align: center; margin: 2.6em 0 0; color: var(--grey); font-style: italic; font-size: 0.98rem; }

/* ============================================================
   GUÍA GRATIS
   ============================================================ */
.freebie { padding: clamp(70px, 10vw, 130px) 0; background: var(--bg); border-top: 1px solid var(--border); }
.freebie__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.freebie__copy h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); text-transform: uppercase; line-height: 1.02; }
.freebie__lede { margin-top: 1em; font-size: 1.2rem; color: var(--grey-light); }
.freebie__card { background: var(--surface-2); color: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: clamp(28px, 4vw, 42px); box-shadow: 0 30px 60px -34px rgba(0,0,0,0.9); }
.signup { display: flex; flex-direction: column; gap: 16px; }
.signup__hp { position: absolute; left: -9999px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-display); font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey); }
.field input {
  font-family: var(--font-body); font-size: 1.05rem; padding: 0.85em 1em; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--bg); color: var(--white); transition: border-color 0.2s;
}
.field input::placeholder { color: var(--grey); }
.field input:focus { outline: none; border-color: var(--red); }
.signup .btn { margin-top: 8px; }
.signup__fine { margin: 0.4em 0 0; font-size: 0.85rem; color: var(--grey); text-align: center; font-family: var(--font-display); letter-spacing: 0.02em; }
.signup__done { text-align: center; padding: 1em 0; }
.signup__done-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.4rem; color: var(--red-bright); margin-bottom: 0.4em; }

/* ============================================================
   SOBRE MÍ
   ============================================================ */
.about { padding: clamp(70px, 10vw, 130px) 0; background: var(--surface); }
.about__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.about__portrait { position: sticky; top: 100px; }
.about__frame {
  aspect-ratio: 4/5; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--surface-2), var(--bg));
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.about__frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about__frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.55));
}
.about__copy h2 { font-size: clamp(2rem, 4.4vw, 3rem); text-transform: uppercase; margin-bottom: 0.6em; }
.about__copy p { color: var(--grey-light); font-size: 1.1rem; }
.about__pull {
  font-family: var(--font-display) !important; font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 1.7rem) !important;
  color: var(--white) !important; text-transform: uppercase; line-height: 1.2; border-left: 4px solid var(--red);
  padding-left: 0.7em; margin: 1.4em 0 !important;
}
.about__yt { margin-top: 0.6em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(70px, 10vw, 130px) 0; background: var(--bg); border-top: 1px solid var(--border); }
.faq__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 6vw, 70px); align-items: start; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid var(--border); }
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.3em 2em 1.3em 0; position: relative;
  font-family: var(--font-display); font-weight: 500; font-size: 1.18rem; text-transform: uppercase; letter-spacing: 0.02em;
  transition: color 0.2s;
}
.faq__item summary:hover { color: var(--red-bright); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; color: var(--red-bright); transition: transform 0.25s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer { padding: 0 2em 1.4em 0; }
.faq__answer p { margin: 0; color: var(--grey-light); font-size: 1.08rem; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final { position: relative; background: var(--bg); color: var(--white); padding: clamp(80px, 12vw, 150px) 0; overflow: hidden; text-align: center; }
.final__glow {
  position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%);
  width: 90vw; max-width: 900px; height: 500px;
  background: radial-gradient(circle, rgba(204,31,31,0.24), transparent 60%); filter: blur(20px); pointer-events: none;
}
.final__inner { position: relative; max-width: 780px; margin: 0 auto; }
.final h2 { font-size: clamp(2.2rem, 6vw, 4.2rem); text-transform: uppercase; line-height: 1.02; margin-bottom: 0.5em; }
.final p { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--grey-light); max-width: 58ch; margin: 0 auto 2em; }
.final__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060606; color: var(--white); padding: clamp(50px, 7vw, 80px) 0 40px; border-top: 1px solid var(--border); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer__brand p { margin: 0.6em 0 0; color: var(--grey); font-size: 0.98rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 26px; margin-left: auto; }
.footer__nav a { font-family: var(--font-display); font-weight: 500; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--grey); transition: color 0.2s; }
.footer__nav a:hover { color: var(--white); }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-top: 26px; align-items: center; }
.footer__legal nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a { font-size: 0.82rem; color: var(--grey); transition: color 0.2s; }
.footer__legal a:hover { color: var(--grey-light); }
.footer__legal p { margin: 0; font-size: 0.82rem; color: var(--grey); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .tier--feature { transform: none; }
  .tier--feature:hover { transform: translateY(-4px); }
  .voices__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .change__inner { grid-template-columns: 1fr; }
  .guide { grid-template-columns: 1fr; }
  .guide__cover { max-width: 260px; }
  .freebie__inner { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__portrait { position: static; max-width: 340px; }
  .faq__inner { grid-template-columns: 1fr; }
  .section-head--left { text-align: left; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .pillars { grid-template-columns: 1fr; }
  .voices__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__nav { margin-left: 0; }
  .hero__cta .btn, .final__cta .btn { flex: 1; min-width: 140px; }
}
