:root {
  --ink: #06130e;
  --ink-2: #0a1d16;
  --ink-3: #102b20;
  --paper: #f2f5f1;
  --paper-2: #e5ebe6;
  --white: #ffffff;
  --text: #f4f7f4;
  --muted: #aebbb3;
  --dark-text: #0a1711;
  --dark-muted: #4f5d55;
  --green: #34e27b;
  --green-2: #1dbb60;
  --gold: #d8b45f;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(7, 28, 19, 0.15);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--green);
  border-radius: 10px;
  font-weight: 800;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow { max-width: 920px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 19, 14, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.brand strong { color: var(--green); }

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(52, 226, 123, 0.48);
  border-radius: 50%;
  color: var(--green);
  background: rgba(52, 226, 123, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  text-align: center;
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, summary:focus-visible, .brand:focus-visible {
  outline: 3px solid rgba(52, 226, 123, 0.65);
  outline-offset: 4px;
}

.button-small { min-height: 42px; padding: 10px 18px; }

.button-primary {
  color: #02140a;
  border-color: var(--green);
  background: linear-gradient(135deg, #57ef94 0%, var(--green) 46%, #20c966 100%);
  box-shadow: 0 14px 34px rgba(52, 226, 123, 0.2);
}

.button-primary:hover { box-shadow: 0 18px 42px rgba(52, 226, 123, 0.3); }
.button-wide { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(31, 152, 81, 0.16), transparent 34%),
    radial-gradient(circle at 0% 0%, rgba(216, 180, 95, 0.08), transparent 24%),
    linear-gradient(180deg, #06130e 0%, #081811 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -120px;
  top: 80px;
  border: 1px solid rgba(216, 180, 95, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(216, 180, 95, 0.04);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dark { color: #187b47; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

h1 {
  margin-bottom: 26px;
  max-width: 760px;
  font-size: clamp(2.75rem, 4.8vw, 4.65rem);
  line-height: 1;
  letter-spacing: -0.058em;
}

h1 span {
  display: block;
  margin-top: 12px;
  color: var(--green);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  color: #c9d3cd;
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.price-note { color: var(--muted); font-size: 0.9rem; }
.price-note s { color: #7f9086; }
.price-note strong { color: var(--green); font-size: 1.02rem; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.84rem;
}

.trust-list li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 900; }

.hero-product { position: relative; justify-self: end; width: min(100%, 490px); }

.product-orbit {
  position: absolute;
  inset: -44px;
  border: 1px solid rgba(52, 226, 123, 0.12);
  border-radius: 50%;
}

.product-orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 18%;
  right: 7%;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(216, 180, 95, 0.7);
}

.product-frame {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: #07110d;
  box-shadow: var(--shadow), 0 0 0 10px rgba(255, 255, 255, 0.018);
  transform: rotate(1.5deg);
}

.product-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 54%, rgba(255,255,255,.1) 61%, transparent 68%);
}

.product-frame img {
  width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: 18px;
  object-fit: contain;
}

.hero-seal {
  position: absolute;
  left: -36px;
  bottom: -28px;
  min-width: 180px;
  padding: 15px 18px;
  border: 1px solid rgba(216, 180, 95, 0.28);
  border-radius: 16px;
  background: rgba(6, 19, 14, 0.94);
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}

.hero-seal span, .hero-seal strong { display: block; }
.hero-seal span { color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }
.hero-seal strong { color: var(--gold); font-size: 1.08rem; }

.proof-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  background: rgba(255, 255, 255, 0.035);
}

.proof-strip > div { padding: 24px 28px; border-right: 1px solid var(--line); }
.proof-strip > div:last-child { border-right: 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { margin-bottom: 2px; color: var(--green); font-size: 1.14rem; }
.proof-strip span { color: var(--muted); font-size: 0.8rem; }

.video-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 124px) 0 clamp(94px, 10vw, 142px);
  background:
    radial-gradient(circle at 50% 28%, rgba(52, 226, 123, 0.12), transparent 42%),
    linear-gradient(180deg, #081811 0%, #06130e 100%);
}

.video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.video-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-bottom: 38px;
  text-align: center;
}

.video-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.video-heading > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: #b9c7be;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.video-frame {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  aspect-ratio: 1672 / 940;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(95, 225, 145, 0.58);
  border-radius: 28px;
  background: #020906;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45), 0 0 0 10px rgba(255, 255, 255, 0.018);
}

.video-launch,
.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-launch {
  position: relative;
  overflow: hidden;
  background: #020906;
  text-decoration: none;
}

.video-launch::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.video-launch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.video-launch:hover img { transform: scale(1.012); filter: brightness(1.04); }
.video-launch:focus-visible { outline: 4px solid var(--green); outline-offset: -6px; }

.video-watch {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  transform: translateX(-50%);
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--text);
  background: rgba(6, 19, 14, 0.84);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
}

.section { padding: clamp(84px, 10vw, 136px) 0; }
.section-light { color: var(--dark-text); background: var(--paper); }

.identification-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(52, 226, 123, 0.11), transparent 28%),
    var(--paper);
}

.identification-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.identification-heading h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.35rem, 4.4vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: -0.056em;
}

.identification-copy {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 60px rgba(10, 35, 24, 0.08);
}

.identification-copy > p {
  margin-bottom: 22px;
  color: var(--dark-muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.identification-copy > p:first-child {
  color: var(--dark-text);
  font-size: clamp(1.12rem, 1.7vw, 1.28rem);
  font-weight: 680;
}

.clarity-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.clarity-note > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0b5b33;
  background: rgba(52, 226, 123, 0.22);
  font-size: 0.76rem;
  font-weight: 900;
}

.clarity-note p { margin: 0; color: var(--dark-muted); }
.clarity-note strong { color: var(--dark-text); }

.section-heading { margin-bottom: 52px; text-align: center; }
.section-heading h2, .course-copy h2, .fit-grid h2, .faq-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-heading h2 span, .course-copy h2 span { color: #187b47; }

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

.pain-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.card-number {
  display: inline-block;
  margin-bottom: 42px;
  color: #19834b;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.pain-card h3 { margin-bottom: 10px; font-size: 1.1rem; line-height: 1.3; }
.pain-card p { margin: 0; color: var(--dark-muted); font-size: 0.93rem; }

.diagnosis {
  max-width: 960px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 56px;
  padding: 30px 36px;
  border-radius: 20px;
  color: var(--text);
  background: var(--ink-2);
}

.diagnosis span { color: var(--green); font-family: Georgia, serif; font-size: 3.5rem; line-height: 0.9; }
.diagnosis p { margin: 0; font-size: clamp(1.18rem, 2vw, 1.55rem); font-weight: 750; line-height: 1.4; }

.thesis-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 90%, rgba(52, 226, 123, 0.1), transparent 28%),
    linear-gradient(180deg, var(--ink-2), #07150f);
}

.thesis-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: clamp(50px, 10vw, 140px);
  align-items: end;
}

.thesis-grid h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 4.6vw, 4.55rem);
  line-height: 1;
  letter-spacing: -0.056em;
}

.thesis-grid > p { margin-bottom: 6px; color: #c3cec7; font-size: 1.1rem; }

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 74px;
}

.journey::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 27px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(52,226,123,.12));
}

.journey-step { position: relative; padding: 0 20px 0 0; }
.journey-step > span {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(52, 226, 123, 0.44);
  border-radius: 50%;
  color: var(--green);
  background: #091b13;
  font-weight: 900;
}

.journey-step h3 { margin-bottom: 9px; font-size: 1.12rem; }
.journey-step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.flow-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 64px;
  padding: 22px 24px;
  border: 1px solid rgba(216, 180, 95, 0.2);
  border-radius: 999px;
  color: #e7ddd0;
  background: rgba(216,180,95,.05);
  font-size: 0.88rem;
  font-weight: 750;
}

.flow-line b { color: var(--gold); }

.course-section { color: var(--dark-text); background: var(--paper); overflow: hidden; }
.course-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(46px, 8vw, 100px); align-items: center; }

.phone-stage {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(8, 29, 21, 0.95), rgba(6, 17, 13, 0.98)),
    var(--ink);
  overflow: hidden;
}

.phone-stage::before {
  content: "MÉTODO COFRE";
  position: absolute;
  left: -36px;
  bottom: 30px;
  color: rgba(255,255,255,.035);
  font-size: 5.6rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.phone-glow { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(52,226,123,.18); filter: blur(70px); }
.phone-stage img { position: relative; z-index: 1; width: 82%; height: auto; margin-top: 36px; filter: drop-shadow(0 30px 28px rgba(0,0,0,.34)); }

.course-copy h2 { margin-bottom: 22px; }
.lead { max-width: 650px; color: var(--dark-muted); font-size: 1.08rem; }
.course-copy .lead + .lead { margin-top: -2px; }
.course-value-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.course-value-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
}
.course-value-list article > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0a5c33;
  background: rgba(52, 226, 123, 0.22);
  font-size: 0.7rem;
  font-weight: 900;
}
.course-value-list p { margin: 0; color: var(--dark-muted); font-size: 0.92rem; line-height: 1.55; }
.course-value-list strong { color: var(--dark-text); }
.bonus-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 16px;
  padding: 24px;
  border: 1px solid rgba(174, 132, 36, 0.32);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 180, 95, 0.16), transparent 42%),
    #fffdf8;
  box-shadow: 0 18px 42px rgba(81, 57, 10, 0.08);
}
.bonus-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #5e430c;
  background: rgba(216, 180, 95, 0.28);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.bonus-card h3 { margin: 0 0 6px; color: var(--dark-text); font-size: 1.08rem; line-height: 1.3; }
.bonus-card p { margin: 0; color: var(--dark-muted); font-size: 0.88rem; line-height: 1.55; }
.course-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}
.course-facts article {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}
.course-facts strong { color: #137440; font-size: 1.3rem; line-height: 1.15; }
.course-facts span { margin-top: 6px; color: var(--dark-muted); font-size: 0.78rem; line-height: 1.35; }
.deliverables { margin-top: 30px; }
.deliverables article { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line-dark); }
.deliverables article:last-child { border-bottom: 1px solid var(--line-dark); }
.deliverables i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: #07331b; background: rgba(52,226,123,.48); font-style: normal; font-weight: 900; }
.deliverables h3 { margin-bottom: 2px; font-size: 1rem; }
.deliverables p { margin: 0; color: var(--dark-muted); font-size: 0.9rem; }
.text-link { display: inline-flex; gap: 9px; margin-top: 28px; color: #116b3c; text-decoration: none; font-weight: 900; }

.authority-section {
  background:
    radial-gradient(circle at 20% 100%, rgba(216,180,95,.12), transparent 26%),
    linear-gradient(135deg, #07140f 0%, #0b241a 100%);
}

.authority-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(52px, 9vw, 120px); align-items: center; }
.authority-image { position: relative; max-width: 470px; overflow: hidden; border: 1px solid rgba(216,180,95,.22); border-radius: 30px; background: #0b2017; box-shadow: var(--shadow); }
.authority-image::after { content: ""; position: absolute; inset: auto 0 0; height: 36%; background: linear-gradient(transparent, rgba(6,19,14,.48)); }
.authority-image img { width: 100%; height: auto; }
.authority-copy h2 { margin-bottom: 24px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: .96; letter-spacing: -.06em; }
.authority-copy > p { color: #bfcbc4; }
.authority-intro { color: var(--text) !important; font-size: 1.18rem; }
.authority-quote { margin-top: 28px; padding: 22px 24px; border-left: 3px solid var(--green); color: #e8eee9; background: rgba(255,255,255,.045); font-size: 1rem; font-weight: 730; }
.authority-quote strong, .authority-quote span { display: block; }
.authority-quote strong { color: var(--text); font-size: 1.15rem; }
.authority-quote span { margin-top: 8px; color: #aebdb4; font-weight: 520; }

.fit-section { color: var(--dark-text); background: var(--paper-2); }
.fit-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 9vw, 120px); align-items: center; }
.fit-grid ul { margin: 0; padding: 0; list-style: none; }
.fit-grid li { position: relative; padding: 21px 0 21px 42px; border-top: 1px solid var(--line-dark); font-weight: 680; }
.fit-grid li:last-child { border-bottom: 1px solid var(--line-dark); }
.fit-grid li::before { content: "✓"; position: absolute; left: 0; color: #16834a; font-size: 1.15rem; font-weight: 950; }

.testimonials-section {
  color: var(--text);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 8%, rgba(52, 226, 123, 0.12), transparent 28%),
    radial-gradient(circle at 92% 86%, rgba(216, 180, 95, 0.08), transparent 32%),
    linear-gradient(180deg, #081a12 0%, #05110c 100%);
}

.testimonials-heading {
  max-width: 920px;
  margin-bottom: 56px;
  text-align: center;
}

.testimonials-heading h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(2.35rem, 4.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.testimonials-heading > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: #afbeb5;
  font-size: 1.06rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  --card-text: #14231b;
  --card-muted: #4d5e54;
  --card-accent: #16834a;
  --avatar-bg: rgba(24, 131, 74, 0.1);
  --role-bg: rgba(24, 131, 74, 0.08);
  --role-border: rgba(24, 131, 74, 0.16);
  --quote-color: rgba(24, 123, 71, 0.14);
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 4px solid var(--card-accent);
  border-radius: 28px;
  color: var(--card-text);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 30px 72px rgba(0, 0, 0, 0.28); }

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 30px;
  top: 14px;
  z-index: -1;
  color: var(--quote-color);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 0 38px;
  color: var(--card-text);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 680;
  line-height: 1.65;
}

.testimonial-card-luiza {
  grid-column: span 7;
  background:
    radial-gradient(circle at 100% 0%, rgba(52, 226, 123, 0.12), transparent 34%),
    linear-gradient(145deg, #f7faf6, #e7efe9);
}

.testimonial-card-anelise {
  --card-text: #edf6f0;
  --card-muted: #b3c4ba;
  --card-accent: #43df82;
  --avatar-bg: rgba(52, 226, 123, 0.1);
  --role-bg: rgba(52, 226, 123, 0.08);
  --role-border: rgba(52, 226, 123, 0.2);
  --quote-color: rgba(52, 226, 123, 0.15);
  grid-column: span 5;
  background: linear-gradient(145deg, #103324, #092017);
}

.testimonial-card-jane {
  --card-text: #f4f1e9;
  --card-muted: #c7bfae;
  --card-accent: var(--gold);
  --avatar-bg: rgba(216, 180, 95, 0.1);
  --role-bg: rgba(216, 180, 95, 0.08);
  --role-border: rgba(216, 180, 95, 0.22);
  --quote-color: rgba(216, 180, 95, 0.16);
  grid-column: span 5;
  background: linear-gradient(145deg, #171b18, #0c120f);
}

.testimonial-card-couple {
  --card-accent: #25b966;
  grid-column: span 7;
  background:
    radial-gradient(circle at 0% 100%, rgba(37, 185, 102, 0.12), transparent 40%),
    linear-gradient(145deg, #edf5ef, #dceae1);
}

.testimonial-person {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--role-border);
  border-radius: 50%;
  color: var(--card-accent);
  background: var(--avatar-bg);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.testimonial-avatar-wide { font-size: 0.68rem; }
.testimonial-person h3 { margin: 0; color: var(--card-text); font-size: 1.05rem; line-height: 1.25; }

.testimonial-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.testimonial-roles span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border: 1px solid var(--role-border);
  border-radius: 999px;
  color: var(--card-muted);
  background: var(--role-bg);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.2;
}

.testimonials-note {
  max-width: 900px;
  margin-top: 30px;
  color: #86988d;
  font-size: 0.74rem;
  text-align: center;
}

.offer-section {
  position: relative;
  overflow: hidden;
  background: #06130e;
}

.offer-glow { position: absolute; width: 700px; height: 700px; right: -300px; top: -260px; border-radius: 50%; background: rgba(52,226,123,.1); filter: blur(70px); }
.offer-grid { position: relative; display: grid; grid-template-columns: 1fr .72fr; gap: clamp(54px, 9vw, 120px); align-items: center; }
.offer-copy h2 { max-width: 700px; margin-bottom: 24px; font-size: clamp(2.65rem, 5vw, 4.9rem); line-height: .98; letter-spacing: -.058em; }
.offer-copy > p { max-width: 650px; color: #bec9c2; font-size: 1.06rem; }
.offer-benefits { margin: 34px 0 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.offer-benefits li { position: relative; padding-left: 26px; color: #d9e1dc; font-size: .92rem; }
.offer-benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 950; }

.price-card { position: relative; padding: 36px; border: 1px solid rgba(52,226,123,.32); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025)); box-shadow: var(--shadow), 0 0 60px rgba(52, 226, 123, 0.06); }
.promo-badge { display: inline-flex; padding: 7px 11px; border: 1px solid rgba(52,226,123,.24); border-radius: 999px; color: var(--green); background: rgba(52,226,123,.09); font-size: .7rem; font-weight: 900; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.original-price { margin: 20px 0 4px; color: #c5d0c9; font-size: 1.02rem; }
.original-price s { color: #8d9d93; font-size: 1.1rem; text-decoration-color: #e37272; text-decoration-thickness: 2px; }
.price-label { color: var(--muted); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.installments { display: flex; align-items: baseline; gap: 12px; margin: 12px 0 0; }
.installments small { color: #ccd5cf; font-size: 1rem; }
.installments strong { color: var(--green); font-size: clamp(2.55rem, 4.6vw, 4rem); line-height: 1; letter-spacing: -.055em; }
.cash-price { margin: 8px 0 28px; color: #c2cdc6; font-size: 1.05rem; }
.cash-price strong { color: var(--text); }
.checkout-note { margin: 15px 0 0; color: var(--muted); text-align: center; font-size: .78rem; }
.security-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 14px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); color: #c3cec7; font-size: .72rem; }
.security-row span::before { content: "•"; margin-right: 6px; color: var(--green); }
.fine-print { margin: 18px 0 0; color: #76877c; text-align: center; font-size: .69rem; line-height: 1.45; }

.faq-section { color: var(--dark-text); background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(54px, 9vw, 120px); align-items: start; }
.faq-heading { position: sticky; top: 122px; }
.faq-heading p:last-child { color: var(--dark-muted); }
.faq-list details { border-top: 1px solid var(--line-dark); }
.faq-list details:last-child { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { position: relative; padding: 23px 42px 23px 0; cursor: pointer; list-style: none; font-size: 1.02rem; font-weight: 820; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 19px; color: #177d47; font-size: 1.45rem; font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; margin: -3px 46px 23px 0; color: var(--dark-muted); font-size: .93rem; }

.final-cta { padding: 100px 0; text-align: center; background: linear-gradient(135deg, #0a2419, #06130e); }
.final-cta-inner { max-width: 860px; }
.final-cta h2 { margin-bottom: 20px; font-size: clamp(2.5rem, 5vw, 5rem); line-height: 1; letter-spacing: -.06em; }
.final-cta-inner > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 30px; color: #b9c7be; font-size: 1.05rem; }

.site-footer { padding: 42px 0 120px; border-top: 1px solid var(--line); background: #04100b; }
.footer-grid { display: grid; grid-template-columns: .55fr 1.3fr .8fr; gap: 34px; align-items: center; color: #7f9085; font-size: .73rem; }
.footer-grid p { margin: 0; }
.footer-grid > span { text-align: right; }
.footer-brand { color: var(--text); }

.mobile-offer { display: none; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 820px; }
  .hero-product { justify-self: center; margin-top: 14px; }
  .identification-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .journey { grid-template-columns: 1fr 1fr; row-gap: 42px; }
  .journey::before { display: none; }
  .course-grid, .authority-grid, .fit-grid, .offer-grid, .faq-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-card-luiza, .testimonial-card-anelise, .testimonial-card-jane, .testimonial-card-couple { grid-column: auto; }
  .phone-stage { min-height: 620px; }
  .phone-stage img { width: min(70%, 520px); }
  .authority-image { max-width: 430px; }
  .faq-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > span { text-align: left; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header .button { display: none; }
  .header-inner { min-height: 66px; }
  .hero { padding-top: 48px; }
  .hero-grid { gap: 44px; padding-bottom: 62px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-text { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .price-note { text-align: center; }
  .trust-list { justify-content: center; font-size: .76rem; }
  .product-orbit { inset: -20px; }
  .hero-seal { left: 12px; bottom: -30px; }
  .proof-strip { grid-template-columns: 1fr; border-radius: 20px 20px 0 0; }
  .proof-strip > div { padding: 18px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip > div:last-child { border-bottom: 0; }
  .video-heading { margin-bottom: 28px; text-align: left; }
  .video-heading h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .video-heading > p:last-child { margin: 0; }
  .video-frame { border-radius: 18px; box-shadow: 0 24px 54px rgba(0, 0, 0, 0.4); }
  .video-watch { bottom: 12px; padding: 8px 14px; font-size: .74rem; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 34px; text-align: left; }
  .section-heading h2, .identification-heading h2, .course-copy h2, .fit-grid h2, .faq-heading h2 { font-size: 2.45rem; }
  .identification-copy { padding: 26px 23px; }
  .identification-copy > p { font-size: 1rem; }
  .testimonials-heading { margin-bottom: 34px; text-align: left; }
  .testimonials-heading h2 { font-size: 2.55rem; }
  .testimonials-heading > p:last-child { margin: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 0; padding: 28px 25px; }
  .testimonial-card blockquote { font-size: 1.02rem; }
  .testimonials-note { text-align: left; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: 0; }
  .card-number { margin-bottom: 24px; }
  .diagnosis { grid-template-columns: 1fr; padding: 26px; }
  .diagnosis span { height: 26px; }
  .thesis-grid { grid-template-columns: 1fr; gap: 28px; }
  .thesis-grid h2 { font-size: 3rem; }
  .journey { grid-template-columns: 1fr; margin-top: 52px; }
  .journey-step { display: grid; grid-template-columns: 48px 1fr; gap: 0 16px; padding: 0; }
  .journey-step > span { width: 48px; height: 48px; grid-row: 1 / span 2; margin: 0; }
  .journey-step h3 { margin-top: 1px; }
  .flow-line { border-radius: 22px; }
  .phone-stage { min-height: 490px; }
  .phone-stage img { width: 86%; }
  .phone-stage::before { font-size: 4rem; }
  .bonus-card { grid-template-columns: 1fr; padding: 22px; }
  .bonus-label { width: fit-content; }
  .course-facts { grid-template-columns: 1fr; }
  .course-facts article { min-height: 0; }
  .authority-copy h2 { font-size: 3.2rem; }
  .offer-copy h2 { font-size: 3rem; }
  .offer-benefits { grid-template-columns: 1fr; }
  .price-card { padding: 28px 22px; }
  .installments { display: block; }
  .installments small { display: block; margin-bottom: 4px; }
  .installments strong { font-size: 3.1rem; }
  .final-cta { padding: 82px 0; }
  .site-footer { padding-bottom: 110px; }
  .mobile-offer {
    position: fixed;
    z-index: 120;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 10px 10px 18px;
    border: 1px solid rgba(52,226,123,.24);
    border-radius: 18px;
    background: rgba(6,19,14,.94);
    box-shadow: 0 18px 40px rgba(0,0,0,.32);
    backdrop-filter: blur(18px);
  }
  .mobile-offer div { display: flex; flex-direction: column; line-height: 1.1; }
  .mobile-offer small { color: var(--muted); font-size: .64rem; text-transform: uppercase; }
  .mobile-offer strong { color: var(--text); font-size: 1.12rem; }
  .mobile-offer .button { min-height: 46px; padding: 10px 17px; font-size: .78rem; }
}

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