:root {
  --bg: #05080b;
  --bg-soft: #090d12;
  --panel: #11171d;
  --panel-2: #171d24;
  --panel-3: #252b32;
  --text: #f3f5f7;
  --muted: #9aa3ad;
  --muted-2: #69727c;
  --line: #222a32;
  --accent: #a6ff35;
  --accent-2: #7ee000;
  --blue: #7aa5ff;
  --red: #ff1748;
  --white: #fff;
  --shadow: 0 24px 70px rgba(0, 0, 0, .36);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(166, 255, 53, .10), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(122, 165, 255, .08), transparent 25%),
    var(--bg);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--text); line-height: 1.05; letter-spacing: -.045em; }
h1 { margin-bottom: 0; font-size: clamp(25px, 3.2vw, 44px); font-weight: 800; }
h2 { margin-bottom: 22px; font-size: clamp(34px, 5vw, 68px); font-weight: 900; }
h2 em, h1 em { color: var(--accent); font-style: normal; }
h3 { font-size: 18px; font-weight: 800; }
.container { width: min(calc(100% - 44px), var(--container)); margin-inline: auto; }
.section { padding: 94px 0; }
.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #051008;
  background: var(--accent);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: rgba(5, 8, 11, .88);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { box-shadow: 0 18px 38px rgba(0,0,0,.28); }
.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  min-width: 210px;
  align-items: center;
  flex-shrink: 0;
  gap: 14px;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong {
  color: var(--text);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.06em;
}
.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.desktop-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  transition: color .2s;
}
.desktop-nav a:hover { color: var(--accent); }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -.02em;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; }
.button-small {
  min-height: 43px;
  padding: 0 22px;
  color: var(--text);
  background: var(--panel-3);
  font-size: 13px;
}
.button-primary {
  color: #061004;
  background: var(--accent);
  box-shadow: 0 16px 42px rgba(166, 255, 53, .20);
}
.button-primary:hover { background: #bcff5b; box-shadow: 0 18px 48px rgba(166, 255, 53, .28); }
.button-dark { color: var(--text); background: var(--panel-3); }
.button-light, .button-gold { color: #061004; background: var(--accent); }
.button-outline-light {
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
  background: transparent;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform .2s;
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero {
  min-height: auto;
  padding: 138px 0 78px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 42%),
    var(--bg);
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .82fr);
  align-items: center;
  gap: 58px;
}
.lp-hero-copy {
  max-width: 760px;
}
.lp-hero-copy h1 {
  margin-bottom: 28px;
  font-size: clamp(46px, 6.4vw, 86px);
  line-height: .97;
  text-transform: uppercase;
}
.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.button-large {
  min-height: 62px;
  padding-inline: 28px;
}
.micro-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.micro-benefits li {
  padding: 9px 13px;
  border: 1px solid rgba(166,255,53,.18);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.035);
  font-size: 12px;
  font-weight: 900;
}
.lp-hero-visual {
  position: relative;
  display: grid;
  gap: 12px;
}
.hero-poster,
.hero-result-card,
.hero-proof-card {
  border: 1px solid rgba(255,255,255,.09);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.hero-poster {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 28px;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.30)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 1px, transparent 1px 33.3%),
    linear-gradient(145deg, #111820, #334022);
}
.hero-poster::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(166,255,53,.26);
  border-radius: 50%;
  content: "";
}
.hero-poster > span,
.hero-result-card p {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 5px 8px;
  border-radius: 5px;
  color: #061004;
  background: var(--accent);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-poster h2 {
  max-width: 430px;
  margin-bottom: 18px;
  font-size: clamp(31px, 4.4vw, 58px);
  line-height: .92;
  text-transform: uppercase;
}
.hero-poster p {
  display: inline-flex;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(166,255,53,.55);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}
.hero-result-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px;
  border-radius: 22px;
}
.hero-photo-placeholder {
  position: relative;
  height: 148px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, #3a2a24, #1d2f13);
}
.hero-photo-placeholder::before {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  content: "";
  transform: translateX(-50%);
}
.hero-photo-placeholder::after {
  position: absolute;
  right: 18px;
  bottom: -22px;
  left: 18px;
  height: 92px;
  border-radius: 50% 50% 12px 12px;
  background: rgba(255,255,255,.19);
  content: "";
}
.hero-photo-placeholder span {
  position: absolute;
  z-index: 2;
  inset: auto 10px 12px;
  color: rgba(255,255,255,.66);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}
.hero-photo-real::before,
.hero-photo-real::after {
  display: none;
}
.hero-photo-real img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-result-card p {
  margin-bottom: 10px;
}
.hero-result-card strong {
  display: block;
  color: var(--accent);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: .92;
}
.hero-result-card div > span {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}
.hero-proof-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--line);
}
.hero-proof-card div {
  padding: 18px;
  background: #0b1117;
}
.hero-proof-card strong {
  display: block;
  color: var(--text);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}
.hero-proof-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: grid;
  min-height: 124px;
  align-content: center;
  gap: 8px;
  padding: 22px 30px;
  border-right: 1px solid var(--line);
}
.stat-item:first-child { border-left: 1px solid var(--line); }
.stat-item strong {
  color: var(--text);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}
.stat-item strong small {
  margin-left: 5px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 900;
}
.stat-item > span {
  max-width: 145px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-heading { margin-bottom: 44px; }
.section-heading.centered {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered p:last-child {
  max-width: 670px;
  margin: 0 auto;
  color: var(--muted);
}
.section-heading.split {
  display: grid;
  grid-template-columns: 1.2fr .72fr;
  align-items: end;
  gap: 68px;
}
.section-heading.split h2 { margin-bottom: 0; }
.section-heading.split > p { margin-bottom: 7px; color: var(--muted); font-weight: 600; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}
.eyebrow.light { color: var(--accent); }

.pain-section,
.solution-section,
.process-section,
.reviews-section,
.faq-section { background: var(--bg); }
.pain-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pain-card,
.solution-card,
.process-item,
.review-card,
.faq-item,
.program-item,
.fit-card {
  border: 1px solid rgba(255,255,255,.08);
  background: var(--panel);
  box-shadow: 0 14px 45px rgba(0,0,0,.18);
}
.pain-card {
  position: relative;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  border-radius: 5px;
}
.pain-card::before {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(166,255,53,.24);
  border-radius: 50%;
  content: "";
}
.pain-number {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.pain-card p {
  margin: 42px 0 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}
.pain-check {
  position: absolute;
  right: 17px;
  bottom: 15px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 900;
}

.cycle-section {
  overflow: hidden;
  color: rgba(255,255,255,.76);
  background: #070b0f;
}
.cycle-layout {
  display: grid;
  grid-template-columns: .9fr 1fr;
  align-items: center;
  gap: 70px;
}
.cycle-copy h2 { color: var(--text); text-transform: uppercase; }
.cycle-copy h2 em { color: var(--accent); }
.cycle-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 900;
}
.text-link.dark { color: var(--accent); border-color: var(--accent); background: none; }
.cycle-visual {
  position: relative;
  width: 540px;
  height: 540px;
  margin-left: auto;
  border: 1px solid rgba(166,255,53,.22);
  border-radius: 50%;
}
.cycle-visual::before,
.cycle-visual::after {
  position: absolute;
  border: 1px dashed rgba(166,255,53,.18);
  border-radius: 50%;
  content: "";
}
.cycle-visual::before { inset: 68px; }
.cycle-visual::after { inset: 145px; }
.cycle-center {
  position: absolute;
  z-index: 2;
  inset: 190px;
  display: grid;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
}
.cycle-step {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 178px;
  min-height: 68px;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(37, 43, 50, .86);
  backdrop-filter: blur(8px);
}
.cycle-step > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 11px;
  font-weight: 900;
}
.cycle-step p {
  margin: 0;
  color: white;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}
.cycle-step-1 { top: -5px; left: 184px; }
.cycle-step-2 { top: 144px; right: -35px; }
.cycle-step-3 { right: 24px; bottom: 52px; }
.cycle-step-4 { bottom: 18px; left: 36px; }
.cycle-step-5 { top: 130px; left: -43px; }

.solution-card {
  position: relative;
  min-height: 270px;
  padding: 27px 23px;
  border-radius: 18px;
}
.solution-icon {
  display: grid;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(166,255,53,.35);
  border-radius: 50%;
  place-items: center;
  color: var(--accent);
  background: rgba(166,255,53,.08);
}
.solution-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.solution-number {
  position: absolute;
  top: 30px;
  right: 23px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 900;
}
.solution-card h3 { margin: 38px 0 13px; color: var(--text); }
.solution-card p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; line-height: 1.55; }

.mentor-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  align-items: center;
  gap: 70px;
}
.mentor-visual { position: relative; max-width: 500px; }
.mentor-photo {
  position: relative;
  height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.72)),
    linear-gradient(145deg, #37251f, #151a20 50%, #263d16);
}
.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(1.05) contrast(1.04);
}
.mentor-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,8,11,0) 48%, rgba(5,8,11,.72) 100%),
    linear-gradient(90deg, rgba(5,8,11,.24), transparent 35%, rgba(5,8,11,.18));
  content: "";
  pointer-events: none;
}
.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-placeholder::before {
  position: absolute;
  top: 20%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.80);
  content: "";
}
.portrait-placeholder::after {
  position: absolute;
  bottom: 0;
  width: 75%;
  height: 55%;
  border-radius: 50% 50% 12px 12px;
  background: rgba(255,255,255,.22);
  content: "";
}
.portrait-placeholder span {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}
.vertical-caption {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  padding: 5px 8px;
  border-radius: 5px;
  color: #061004;
  background: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mentor-quote {
  position: absolute;
  z-index: 4;
  right: -35px;
  bottom: 36px;
  display: flex;
  width: 294px;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(37, 43, 50, .92);
  box-shadow: var(--shadow);
}
.mentor-quote span { color: var(--accent); font-size: 48px; font-weight: 900; line-height: .75; }
.mentor-quote p { margin: 0; color: var(--text); font-size: 14px; font-weight: 800; line-height: 1.5; }
.mentor-lead { color: var(--text); font-size: 21px; font-weight: 800; line-height: 1.45; }
.mentor-copy > p:not(.eyebrow):not(.mentor-lead) { color: var(--muted); font-weight: 600; }
.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 32px;
}
.trust-cards div {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  color: var(--text);
  background: var(--panel);
  font-size: 13px;
  font-weight: 900;
}
.trust-cards span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 11px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.process-item {
  position: relative;
  display: flex;
  min-height: 210px;
  gap: 18px;
  padding: 26px;
  border-radius: 18px;
}
.process-number {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 15px;
  font-weight: 900;
}
.process-item h3 { margin: 6px 0 12px; }
.process-item p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; line-height: 1.55; }
.process-arrow {
  position: absolute;
  right: 19px;
  bottom: 14px;
  color: var(--accent);
  font-size: 25px;
}
.center-action { margin-top: 34px; text-align: center; }

.results-section { background: #05080b; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}
.result-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #080b0f;
  box-shadow: none;
}
.result-card-real {
  grid-column: span 2;
}
.result-card::before {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  border-radius: 5px;
  color: #061004;
  background: var(--accent);
  content: "ELYAFIT • ИСТОРИЯ";
  font-size: 9px;
  font-weight: 900;
}
.before-after {
  display: grid;
  height: 100%;
  min-height: 470px;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: 0;
}
.before-after.result-photo {
  display: block;
  background: #080b0f;
}
.before-after.result-photo img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}
.result-real-pair {
  background: #080b0f;
}
.result-image-pane {
  position: relative;
  overflow: hidden;
  background: #10151b;
}
.result-image-pane img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}
.result-image-pane > span {
  position: absolute;
  z-index: 2;
  top: 45px;
  left: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #061004;
  background: var(--accent);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.photo-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(145deg, #3a2a24, #111720);
}
.photo-placeholder::before {
  position: absolute;
  top: 24%;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  content: "";
}
.photo-placeholder::after {
  position: absolute;
  bottom: -5%;
  width: 135px;
  height: 170px;
  border-radius: 50% 50% 10px 10px;
  background: rgba(255,255,255,.20);
  content: "";
}
.photo-placeholder.after { background: linear-gradient(145deg, #263a18, #111720); }
.photo-placeholder > span {
  position: absolute;
  z-index: 2;
  top: 45px;
  left: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #061004;
  background: var(--accent);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.photo-placeholder i {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.result-card-copy {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 150px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 13px;
  padding: 64px 17px 50px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.88));
}
.result-card-copy p { margin: 0 0 2px; color: white; font-size: 18px; font-weight: 900; }
.result-card-copy span { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; }
.result-card-copy strong {
  color: var(--accent);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}
.results-disclaimer {
  max-width: 780px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.program-section {
  color: rgba(255,255,255,.74);
  background: #070b0f;
}
.program-layout {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 72px;
}
.program-intro { position: sticky; top: 112px; align-self: start; }
.program-intro h2 { color: var(--text); text-transform: uppercase; }
.program-intro > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); font-weight: 600; }
.program-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.program-item {
  display: flex;
  min-height: 98px;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 14px;
}
.program-item > span { color: var(--accent); font-size: 15px; font-weight: 900; }
.program-item p { flex: 1; margin: 0; color: var(--text); font-size: 14px; font-weight: 900; line-height: 1.3; }
.program-item i {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.fit-section { background: var(--bg); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fit-card {
  position: relative;
  min-height: 560px;
  padding: 44px;
  border-radius: var(--radius-lg);
}
.fit-negative { background: #161318; }
.fit-icon {
  position: absolute;
  top: 34px;
  right: 36px;
  display: grid;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 27px;
  font-weight: 900;
}
.fit-negative .fit-icon { color: white; background: #43303b; }
.fit-card h2 { font-size: clamp(33px, 3.4vw, 54px); text-transform: uppercase; }
.fit-card ul {
  display: grid;
  gap: 10px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}
.fit-card li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 50px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255,255,255,.035);
  font-size: 14px;
  font-weight: 800;
}
.fit-card li span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 10px;
  font-weight: 900;
}
.fit-negative li span { color: white; background: #6e4559; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.review-card {
  position: relative;
  min-height: 330px;
  padding: 31px;
  border-radius: 18px;
}
.review-quote { color: var(--accent); font-size: 62px; font-weight: 900; line-height: .72; }
.review-card > p {
  margin: 26px 0 30px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}
.review-author {
  position: absolute;
  right: 31px;
  bottom: 26px;
  left: 31px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-author > span {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-weight: 900;
}
.review-author div { display: flex; flex-direction: column; }
.review-author strong { color: var(--text); font-size: 13px; }
.review-author small { color: var(--muted); font-size: 11px; }

.offer-section { padding-top: 34px; }
.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .82fr;
  align-items: center;
  gap: 58px;
  overflow: hidden;
  padding: 62px;
  border: 1px solid rgba(166,255,53,.16);
  border-radius: var(--radius-lg);
  color: var(--muted);
  background:
    radial-gradient(circle at 90% 10%, rgba(166,255,53,.20), transparent 28%),
    #0a0f14;
}
.offer-card::before {
  position: absolute;
  right: -170px;
  bottom: -250px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(166,255,53,.14);
  border-radius: 50%;
  content: "";
}
.offer-copy,
.offer-includes { position: relative; z-index: 1; }
.offer-copy h2 { color: var(--text); text-transform: uppercase; }
.offer-copy > p:not(.eyebrow) { max-width: 610px; color: var(--muted); font-size: 17px; font-weight: 600; }
.offer-copy .button { margin-top: 14px; }
.offer-includes {
  padding: 29px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}
.offer-includes > p { color: var(--text); font-size: 20px; font-weight: 900; }
.offer-includes ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.offer-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}
.offer-includes li span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 9px;
  font-weight: 900;
}
.offer-stamp {
  position: absolute;
  z-index: 2;
  top: -25px;
  right: 29%;
  display: grid;
  width: 94px;
  height: 94px;
  border: 5px solid #0a0f14;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}
.offer-stamp span { display: block; margin-bottom: -14px; font-size: 28px; }

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.2fr;
  gap: 72px;
}
.faq-intro { position: sticky; top: 112px; align-self: start; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); font-weight: 600; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border-radius: 16px; }
.faq-item summary {
  display: grid;
  min-height: 86px;
  grid-template-columns: 36px 1fr 30px;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { color: var(--accent); font-size: 13px; font-weight: 900; }
.faq-item summary strong { color: var(--text); font-size: 16px; }
.faq-item summary i {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(166,255,53,.12);
}
.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  transition: transform .2s;
}
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-item > div { padding: 0 70px 24px; }
.faq-item > div p { margin: 0; color: var(--muted); font-size: 14px; font-weight: 600; line-height: 1.65; }

.final-section {
  padding: 118px 0;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(166,255,53,.07), transparent 42%),
    #070b0f;
}
.final-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  align-items: center;
  gap: 70px;
}
.final-copy h2 { color: var(--text); text-transform: uppercase; }
.final-copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; font-weight: 700; }
.final-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.final-points span {
  padding: 8px 13px;
  border: 1px solid rgba(166,255,53,.22);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.form-card {
  min-height: 620px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  color: var(--text);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.form-heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 28px;
}
.form-heading > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.form-heading h3 { margin: 0 0 5px; color: var(--text); font-size: 24px; font-weight: 900; }
.form-heading p { margin: 0; color: var(--muted); font-size: 12px; }
.whatsapp-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.whatsapp-card .form-heading { margin-bottom: 4px; }
.whatsapp-preview {
  padding: 20px;
  border: 1px solid rgba(166,255,53,.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(166,255,53,.12), rgba(255,255,255,.04)),
    #0a0f14;
}
.whatsapp-preview span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.whatsapp-preview p {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}
.whatsapp-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.whatsapp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}
.whatsapp-list span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
}
.field { display: flex; flex-direction: column; }
.field-wide { grid-column: 1 / -1; }
.field > span,
.format-picker legend {
  margin-bottom: 7px;
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.field input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  outline: none;
  color: var(--text);
  background: #0a0f14;
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus {
  border-color: rgba(166,255,53,.75);
  box-shadow: 0 0 0 4px rgba(166,255,53,.10);
}
.field input::placeholder { color: #6f7882; }
.field-error {
  min-height: 0;
  margin-top: 0;
  color: #ff7b91;
  font-size: 11px;
  transition: .2s;
}
.has-error .field-error { min-height: 16px; margin-top: 4px; }
.has-error input { border-color: #ff7b91; }
.format-picker {
  display: flex;
  gap: 10px;
  margin: 20px 0 23px;
  padding: 0;
  border: 0;
}
.format-picker legend { float: left; width: 100%; }
.format-picker label { cursor: pointer; }
.format-picker input { position: absolute; opacity: 0; }
.format-picker span {
  display: block;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.format-picker input:checked + span {
  border-color: var(--accent);
  color: #061004;
  background: var(--accent);
}
.button-submit { width: 100%; }
.form-legal {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}
.success-message {
  display: flex;
  min-height: 530px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}
.success-message[hidden] { display: none; }
.success-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  border-radius: 50%;
  place-items: center;
  color: #061004;
  background: var(--accent);
  font-size: 24px;
  font-weight: 900;
}
.success-message h3 { margin-bottom: 9px; color: var(--text); font-size: 32px; font-weight: 900; }
.success-message p { max-width: 370px; color: var(--muted); }
.success-message .text-link { border: 0; cursor: pointer; }

.site-footer {
  padding: 58px 0 26px;
  color: var(--muted);
  background: #030506;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 35px;
  padding-bottom: 42px;
}
.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  place-items: center;
  background: rgba(166,255,53,.10);
}
.brand-mark svg {
  width: 28px;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}
.footer-brand .brand-copy strong { font-size: 19px; }
.footer-brand .brand-copy small { color: var(--muted); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); font-size: 12px; font-weight: 800; }
.footer-main > .button { justify-self: end; min-height: 45px; font-size: 12px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { margin: 0; font-size: 11px; }
.footer-bottom p:last-child { max-width: 720px; text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { --delay: 120ms; }

@media (max-width: 1120px) {
  .desktop-nav { gap: 14px; }
  .header-cta { display: none; }
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .lp-hero-copy {
    max-width: 900px;
  }
  .lp-hero-visual {
    max-width: 780px;
  }
  .pain-grid,
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .cycle-layout { gap: 30px; }
  .cycle-visual { width: 500px; height: 500px; transform: scale(.9); }
  .mentor-grid { gap: 50px; }
  .offer-card { padding-inline: 50px; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 138px; }
  .section { padding: 82px 0; }
  .desktop-nav { display: none; }
  .menu-toggle { display: none; }
  .mobile-nav {
    display: flex;
    width: min(calc(100% - 32px), var(--container));
    margin: -2px auto 12px;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 0 2px 2px;
    border-top: 0;
    opacity: 1;
    pointer-events: auto;
    scrollbar-width: none;
  }
  .mobile-nav::-webkit-scrollbar { display: none; }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-nav > a:not(.button) {
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255,255,255,.04);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: -.02em;
    white-space: nowrap;
  }
  .mobile-nav > a:not(.button):hover {
    border-color: rgba(166,255,53,.35);
    color: var(--accent);
  }
  .mobile-nav .button {
    order: -1;
    min-height: 38px;
    flex: 0 0 auto;
    margin: 0;
    padding: 0 15px;
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
  }
  .hero { padding-top: 156px; }
  .mentor-grid,
  .cycle-layout,
  .program-layout,
  .faq-layout,
  .final-grid { grid-template-columns: 1fr; }
  .trust-strip-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { border-left: 1px solid var(--line); }
  .stat-item { border-top: 1px solid var(--line); }
  .section-heading.split { grid-template-columns: 1fr; gap: 18px; }
  .cycle-visual { margin: 20px auto 0; }
  .mentor-visual { margin-inline: auto; }
  .mentor-copy { max-width: 680px; margin-inline: auto; }
  .process-list,
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .program-intro,
  .faq-intro { position: static; }
  .program-list { grid-template-columns: repeat(2, 1fr); }
  .offer-card { grid-template-columns: 1fr; gap: 32px; }
  .offer-stamp { right: 25px; }
  .final-copy { max-width: 700px; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-links { display: none; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  h2 { font-size: 34px; }
  .header-inner { min-height: 68px; }
  .brand { min-width: 0; gap: 10px; }
  .brand-copy strong { font-size: 24px; }
  .brand-copy small { display: none; }
  .mobile-nav {
    width: min(calc(100% - 20px), var(--container));
    margin-bottom: 10px;
  }
  .hero { padding: 138px 0 48px; }
  .lp-hero-grid { gap: 30px; }
  .lp-hero-copy h1 {
    margin-bottom: 20px;
    font-size: 39px;
  }
  .hero-lead {
    margin-bottom: 22px;
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button-large {
    width: 100%;
    min-height: 56px;
  }
  .micro-benefits {
    display: grid;
    gap: 8px;
  }
  .micro-benefits li {
    font-size: 11px;
  }
  .hero-poster {
    min-height: 330px;
    padding: 22px;
    border-radius: 20px;
  }
  .hero-poster h2 {
    font-size: 32px;
  }
  .hero-result-card {
    grid-template-columns: 96px 1fr;
    gap: 13px;
    padding: 12px;
  }
  .hero-photo-placeholder {
    height: 124px;
  }
  .hero-result-card strong {
    font-size: 36px;
  }
  .hero-result-card div > span {
    font-size: 12px;
  }
  .hero-proof-card {
    grid-template-columns: 1fr;
  }
  .hero-proof-card div {
    padding: 15px;
  }
  .trust-strip-grid { grid-template-columns: 1fr 1fr; }
  .stat-item {
    min-height: 104px;
    padding: 17px 14px;
  }
  .stat-item strong { font-size: 27px; }
  .stat-item strong small { font-size: 10px; }
  .stat-item > span { font-size: 9px; }
  .pain-grid,
  .solution-grid,
  .process-list,
  .results-grid,
  .program-list,
  .fit-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: 150px; }
  .pain-card p { margin-top: 24px; }
  .section-heading { margin-bottom: 36px; }
  .cycle-visual {
    width: 340px;
    height: 340px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .cycle-visual::before { inset: 44px; }
  .cycle-visual::after { inset: 90px; }
  .cycle-center { inset: 118px; font-size: 13px; }
  .cycle-step {
    width: 128px;
    min-height: 50px;
    padding: 8px;
  }
  .cycle-step > span {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
    font-size: 8px;
  }
  .cycle-step p { font-size: 8px; }
  .cycle-step-1 { top: -4px; left: 107px; }
  .cycle-step-2 { top: 88px; right: -18px; }
  .cycle-step-3 { right: 7px; bottom: 26px; }
  .cycle-step-4 { bottom: 10px; left: 8px; }
  .cycle-step-5 { top: 87px; left: -24px; }
  .mentor-photo { height: 510px; }
  .mentor-quote {
    right: 10px;
    bottom: 18px;
    width: 245px;
  }
  .trust-cards { grid-template-columns: 1fr; }
  .process-item { min-height: 165px; }
  .results-grid {
    width: 100%;
    margin-left: 0;
    border-radius: 16px;
  }
  .result-card,
  .before-after { min-height: 520px; }
  .result-card-real { grid-column: auto; }
  .program-layout { gap: 38px; }
  .fit-card {
    min-height: auto;
    padding: 34px 22px;
  }
  .fit-icon {
    top: 23px;
    right: 22px;
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  .review-card { min-height: 350px; }
  .offer-section { padding-top: 20px; }
  .offer-card {
    width: calc(100% + 8px);
    margin-left: -4px;
    padding: 54px 22px 28px;
    border-radius: 22px;
  }
  .offer-stamp {
    top: -25px;
    right: 18px;
    width: 78px;
    height: 78px;
  }
  .faq-layout { gap: 36px; }
  .faq-item summary {
    min-height: 78px;
    grid-template-columns: 28px 1fr 30px;
    padding: 16px;
  }
  .faq-item summary strong { font-size: 13px; }
  .faq-item > div { padding: 0 54px 20px; }
  .final-section { padding: 78px 0; }
  .final-grid { gap: 36px; }
  .form-card {
    min-height: auto;
    padding: 25px 18px;
  }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .format-picker { flex-wrap: wrap; }
  .success-message { min-height: 430px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > .button { width: 100%; justify-self: stretch; }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
  .footer-bottom p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
