/* ════════════════════════════════════════════════════════
   INDEX PAGE — COMPLETELY UNIQUE LAYOUTS PER SECTION
   No two sections share the same grid / composition logic
════════════════════════════════════════════════════════ */

/* ── §1 HERO: full-bleed text-over-image, offset grid ── */
#hero::before { display: none; }   /* kill the teal/coral radial tint from styles.css */
#hero {
  position: relative;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  display: grid;
  grid-template-columns: 58% 42%;
  overflow: hidden;
  background: var(--charcoal);
}
/* Full-bleed photo fills entire right 60% + bleeds under text */
.hero-photo {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 57%;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #1E2D3A 0%, rgba(30,45,58,0) 55%),
    linear-gradient(0deg, rgba(30,45,58,.7) 0%, rgba(30,45,58,0) 40%);
  z-index: 1;
  pointer-events: none;
}
/* Text panel — left, over the photo */
.hero-text {
  position: relative; z-index: 2;
  grid-column: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--s16) var(--s12) var(--s12) max(111px, env(safe-area-inset-left));
}
/* Vertical label */
.hero-vert-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 10px; font-weight: var(--fw-reg);
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--teal-lt);
  position: absolute; left: 81px; top: 50%;
  transform: rotate(180deg) translateY(50%);
  opacity: .5;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: var(--s3);
  font-size: 11px; font-weight: var(--fw-bold); letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal-md);
  margin-bottom: var(--s8);
}
.hero-kicker span { width: 28px; height: 1.5px; background: var(--teal-md); display: inline-block; }
/* Giant display headline */
.hero-display {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 7vw, 8.5rem);
  font-weight: var(--fw-reg);
  line-height: .9;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: var(--s8);
}
.hero-display .word-teal { color: var(--teal-md); font-style: italic; display: block; }
.hero-display .word-outline {
  color: #fff;
  display: block;
}
.hero-lead {
  font-size: 1rem; color: rgba(255,255,255,.45);
  line-height: 1.85; max-width: 380px;
  margin-bottom: var(--s10); font-weight: var(--fw-light);
}
.hero-btns { display: flex; gap: var(--s3); align-items: center; flex-wrap: wrap; margin-bottom: var(--s4); }
.hero-btns .btn { font-weight: var(--fw-reg); letter-spacing: .03em; }
.hero-btns .btn-teal.btn-xl { padding: 22px 48px; font-size: 15px; height: 69.5px; }
.hero-btns .btn-outline-light { padding: 18px 32px; font-size: 14px; height: 59.8px; border-width: 2px; }
.hero-guarantee { font-size: 11px; color: rgba(255,255,255,.22); letter-spacing: .04em; margin-bottom: var(--s10); }
/* Social proof bar */
.hero-proof-bar {
  display: flex; align-items: center; gap: var(--s5);
  padding: var(--s5) var(--s6);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  flex-wrap: wrap;
}
.hp-avs { display: flex; }
.hp-avs img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 2px solid var(--charcoal); margin-left: -6px; }
.hp-avs img:first-child { margin-left: 0; }
.hp-label { font-size: 12px; color: rgba(255,255,255,.45); }
.hp-label strong { display: block; color: rgba(255,255,255,.8); font-size: 13px; font-weight: var(--fw-reg); }
.hp-sep { width: 1px; height: 28px; background: rgba(255,255,255,.1); }
.hp-num .n { font-family: var(--ff-display); font-size: 1.6rem; font-weight: var(--fw-semi); color: var(--teal-md); display: block; line-height: 1; letter-spacing: -.03em; }
.hp-num .l { font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .06em; }
/* Floating card: bottom-right corner of the photo */
.hero-float-card {
  position: absolute; z-index: 5;
  bottom: var(--s10); right: var(--s8);
  background: rgba(255,255,255,.97);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s6);
  max-width: 210px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.6);
}
.hfc-stars { color: var(--coral); font-size: 11px; letter-spacing: 2px; margin-bottom: var(--s2); }
.hfc-quote { font-family: var(--ff-display); font-style: italic; font-size: 12px; color: var(--slate); line-height: 1.55; margin-bottom: var(--s4); }
.hfc-person { display: flex; align-items: center; gap: var(--s3); }
.hfc-person img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.hfc-name { font-size: 11px; font-weight: var(--fw-reg); color: var(--charcoal); }
.hfc-result { font-size: 10px; color: var(--teal); font-weight: var(--fw-reg); }

/* ── §2 TICKER ── */
/* (from global styles.css) */

/* ── §3 WHY: horizontal scroll-cards with large numbers ── */
#why {
  background: var(--cream);
  overflow: hidden;
}
.why-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s16); align-items: end;
  margin-bottom: var(--s12);
}
.why-intro h2 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: var(--fw-reg);
  letter-spacing: -.04em; line-height: .98; color: var(--charcoal);
}
.why-intro h2 em { font-style: italic; color: var(--teal); display: block; }
.why-intro-right { padding-bottom: var(--s2); }
.why-intro-right p { font-size: 1rem; color: var(--slate); line-height: 1.85; font-weight: var(--fw-light); margin-bottom: var(--s6); }
/* 3 cards in a row — each with BIG number on left */
.why-num-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--cream-dk); border-radius: var(--r-xl); overflow: hidden; }
.why-num-card {
  background: var(--white);
  padding: var(--s10) var(--s8);
  position: relative; overflow: hidden;
  transition: background var(--t);
}
.why-num-card:hover { background: var(--teal-xpale); }
.why-num-card::before {
  content: attr(data-n);
  position: absolute; top: var(--s4); right: var(--s5);
  font-family: var(--ff-display); font-size: 6rem;
  font-weight: var(--fw-black); color: var(--cream);
  line-height: 1; letter-spacing: -.08em;
  pointer-events: none; transition: color var(--t);
}
.why-num-card:hover::before { color: rgba(45,155,138,.08); }
.wnc-icon { font-size: 1.8rem; margin-bottom: var(--s5); }
.wnc-title { font-family: var(--ff-display); font-size: 1.4rem; font-weight: var(--fw-semi); color: var(--charcoal); letter-spacing: -.02em; margin-bottom: var(--s3); }
.wnc-desc { font-size: 14px; color: var(--slate); line-height: 1.8; font-weight: var(--fw-light); }

/* ── §4 RESULTS: stacked editorial layout ── */
#results {
  background: var(--white);
  padding-bottom: 0;
}
/* Top: giant pull-quote spanning full width */
.results-pullquote-row {
  border-bottom: 1px solid var(--cream-dk);
  padding-bottom: var(--s12);
  margin-bottom: var(--s12);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s10);
  align-items: center;
}
.results-quotemark {
  font-family: var(--ff-display);
  font-size: 10rem; line-height: .7;
  color: var(--teal-pale); font-weight: var(--fw-black);
  flex-shrink: 0;
}
.results-main-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  color: var(--charcoal); line-height: 1.45;
}
.results-who {
  display: flex; flex-direction: column; gap: var(--s3);
  align-items: flex-end; flex-shrink: 0;
}
.results-who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--teal-pale); }
.results-who-name { font-size: 13px; font-weight: var(--fw-bold); color: var(--charcoal); text-align: right; }
.results-who-meta { font-size: 11px; color: var(--teal); font-weight: var(--fw-reg); text-align: right; }
/* Bottom: 3 member cards in a row, flush to bottom */
.results-member-strip {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--cream-dk);
}
.result-member {
  background: var(--off-white);
  padding: var(--s8);
  display: flex; flex-direction: column; gap: var(--s4);
  transition: background var(--t);
}
.result-member:hover { background: var(--teal-xpale); }
.result-member-img {
  width: 100%; height: 200px;
  overflow: hidden; border-radius: var(--r-md);
}
.result-member-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) brightness(.95); transition: filter var(--t), transform .5s; }
.result-member:hover .result-member-img img { filter: saturate(1.05); transform: scale(1.03); }
.result-member-name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: var(--fw-semi); color: var(--charcoal); }
.result-member-city { font-size: 11px; color: var(--slate-lt); letter-spacing: .04em; }
.result-member-badge {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: var(--teal-pale); color: var(--teal-dk);
  font-size: 11px; font-weight: var(--fw-reg);
  padding: 3px var(--s4); border-radius: var(--r-pill);
  align-self: flex-start;
}

/* ── §5 INSIDE: 2×2 bento box grid ── */
#inside { background: var(--charcoal); }
.inside-bento-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--s10); gap: var(--s6); flex-wrap: wrap;
}
.inside-bento-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: var(--fw-reg);
  letter-spacing: -.04em; line-height: 1; color: #fff;
}
.inside-bento-head h2 em { font-style: italic; color: var(--teal-md); }
.inside-bento-head p { font-size: 1rem; color: rgba(255,255,255,.4); line-height: 1.8; font-weight: var(--fw-light); max-width: 380px; }
/* Bento: 2 wide top + 2 narrower bottom */
.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s4);
  align-items: start;
}
.bento-cell {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  overflow: hidden;
  /* убираем position:relative с ячейки — оно мешало z-index img */
  display: flex; flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}
.bento-cell:hover { border-color: rgba(45,155,138,.3); transform: translateY(-3px); }
.bento-cell.large { grid-row: span 2; }
/* img контейнер — фиксированная высота, flex-shrink:0 */
.bento-cell-img { flex-shrink: 0; overflow: hidden; }
.bento-cell.large .bento-cell-img { height: 300px; }
.bento-cell:not(.large) .bento-cell-img { height: 150px; }
.bento-cell-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: brightness(.65) saturate(.85); transition: filter var(--t), transform .5s; }
.bento-cell:hover .bento-cell-img img { filter: brightness(.75) saturate(1); transform: scale(1.04); }
/* body — flex:1, никаких position:relative здесь не нужно */
/* Bento inner spacing per Figma (node 189:55):
   - Body padding: top 11px (image→pill gap), L/R 21px, bottom 21px
   - Tag pill: 4px vertical / 16px horizontal, margin-bottom 4px (tight to title)
   - Title margin-bottom: 14px (gentle gap to desc)
   - Big card title: 21.6px (1.35rem); small card title: 17.6px (1.1rem) */
.bento-body { padding: 11px 21px 21px; flex: 1; display: flex; flex-direction: column; gap: 0; }
.bento-tag {
  display: inline-block; font-size: 9px; font-weight: var(--fw-reg);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal-md); background: rgba(45,155,138,.15);
  padding: 4px 16px; border-radius: var(--r-pill);
  margin-bottom: 4px; align-self: flex-start;
}
.bento-title {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: var(--fw-semi);
  color: #fff; letter-spacing: -.02em; line-height: 1.25;
  margin-bottom: 14px;
}
.bento-cell.large .bento-title { font-size: 1.35rem; }
.bento-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; font-weight: var(--fw-reg); }

/* Stat card (76K+) — node 189:88: 166px tall, all content centered */
.bento-cell.bento-stat { align-self: start; }
.bento-stat-inner { padding: 18px 20px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.bento-stat-num { font-family: var(--ff-display); font-size: 3rem; font-weight: var(--fw-black); color: var(--teal-md); line-height: 1; letter-spacing: -.05em; }
.bento-stat-label { font-size: 12px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .12em; }
.bento-stat-body { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; }
.bento-stat-cta { margin-top: 6px; padding: 12px 24px; font-size: 13px; font-weight: var(--fw-reg); letter-spacing: .03em; }
/* Номер — в потоке документа, а не абсолютно */
.bento-num {
  font-family: var(--ff-display); font-size: 2.5rem;
  font-weight: var(--fw-black); color: rgba(255,255,255,.06);
  line-height: 1; letter-spacing: -.08em; pointer-events: none;
  align-self: flex-end; margin-top: auto; padding: 0 var(--s3) var(--s3) 0;
}

/* ── §6 METHOD: alternating left/right rows ── */
#method { background: var(--off-white); }
.method-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s16); margin-bottom: var(--s16); align-items: end;
}
.method-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: var(--fw-reg);
  letter-spacing: -.04em; line-height: .97; color: var(--charcoal);
}
.method-header h2 em { font-style: italic; color: var(--teal); }
.method-header p { font-size: 1rem; color: var(--slate); line-height: 1.85; font-weight: var(--fw-light); }
/* Zigzag rows */
.method-rows { display: flex; flex-direction: column; gap: var(--s4); }
.method-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t), transform var(--t);
}
.method-row:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.method-row:nth-child(even) { direction: rtl; }
.method-row:nth-child(even) .method-row-body { direction: ltr; }
.method-row-img { overflow: hidden; min-height: 220px; }
.method-row-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.9) brightness(.85); transition: filter var(--t), transform .6s; }
.method-row:hover .method-row-img img { filter: saturate(1.05) brightness(.9); transform: scale(1.04); }
.method-row-body {
  background: var(--white);
  padding: var(--s10);
  display: flex; flex-direction: column; justify-content: center;
  direction: ltr; position: relative; overflow: hidden;
}
.method-row-body::after {
  content: attr(data-n);
  position: absolute; bottom: -20px; right: var(--s4);
  font-family: var(--ff-display); font-size: 7rem;
  font-weight: var(--fw-black); color: var(--cream);
  line-height: 1; letter-spacing: -.08em; pointer-events: none;
}
.method-row:nth-child(1) .method-row-body { background: var(--white); }
.method-row:nth-child(2) .method-row-body { background: var(--teal-xpale); }
.method-row:nth-child(3) .method-row-body { background: var(--white); }
.method-row:nth-child(4) .method-row-body {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 100%);
}
.method-row:nth-child(4) .method-row-body::after { color: rgba(255,255,255,.06); }
.method-row-ico { font-size: 1.8rem; margin-bottom: var(--s5); }
.method-row-title {
  font-family: var(--ff-display);
  font-size: 1.4rem; font-weight: var(--fw-semi);
  color: var(--charcoal); letter-spacing: -.02em;
  margin-bottom: var(--s3);
}
.method-row:nth-child(4) .method-row-title { color: #fff; }
.method-row-desc { font-size: 14px; color: var(--slate); line-height: 1.8; font-weight: var(--fw-light); }
.method-row:nth-child(4) .method-row-desc { color: rgba(255,255,255,.55); }
/* Stat strip */
.method-stat-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--cream-dk);
  border-radius: var(--r-lg); overflow: hidden;
  margin-top: var(--s4); border: 1px solid var(--cream-dk);
}
.mstat { background: var(--white); padding: var(--s8); text-align: center; }
.mstat-n { font-family: var(--ff-display); font-size: 2.6rem; font-weight: var(--fw-semi); color: var(--teal); display: block; line-height: 1; letter-spacing: -.04em; }
.mstat-l { font-size: 13px; color: var(--slate); margin-top: var(--s2); }

/* ── §7 COACHES: big cards with 3-col masonry feel ── */
#coaches { background: var(--cream); }
.coaches-intro {
  max-width: 680px; margin-bottom: var(--s12);
}
.coaches-intro h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: var(--fw-reg);
  letter-spacing: -.04em; line-height: .97;
  color: var(--charcoal); margin: var(--s5) 0;
}
.coaches-intro h2 em { font-style: italic; color: var(--teal); }
.coaches-intro p { font-size: 1rem; color: var(--slate); line-height: 1.85; font-weight: var(--fw-light); }
.coach-cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s5); align-items: stretch; }
.coach-card-v {
  background: var(--white);
  border-radius: var(--r-xl);
  /* overflow:hidden только для hover-эффекта на img — переносим на img-контейнер */
  border: 1px solid var(--cream-dk);
  box-shadow: var(--shadow-xs);
  transition: transform var(--t), box-shadow var(--t);
  display: flex; flex-direction: column;
}
.coach-card-v:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.coach-card-v:nth-child(2) { transform: none; }
.coach-card-v:nth-child(2):hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
/* img-контейнер: скруглённые верхние углы + overflow */
.ccv-img {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.ccv-img img {
  width: 100%; height: 280px;
  object-fit: cover; object-position: center 25%;
  display: block;
}
/* Role pill — overlay on photo bottom-left (Figma: 16px from bottom + left, 35px tall) */
.ccv-role {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px);
  color: var(--teal-dk); font-size: 10px; font-weight: var(--fw-reg);
  letter-spacing: .1em; text-transform: uppercase;
  padding: 0 16px; height: 35px;
  display: inline-flex; align-items: center;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  border: 1px solid rgba(255,255,255,.5);
  max-width: calc(100% - 32px);
  overflow: hidden; text-overflow: ellipsis;
}
/* body — Figma inner paddings (node 189:204): 14px top, 20px L/R, 20px bottom */
.ccv-body {
  padding: 14px 20px 20px;
  flex: 1; display: flex; flex-direction: column;
}
.ccv-name {
  font-family: var(--ff-display);
  font-size: 1.35rem; font-weight: var(--fw-semi);
  color: var(--charcoal); letter-spacing: -.02em;
  line-height: 1.2; margin-bottom: 14px;
  text-align: center;
}
.ccv-bio {
  font-size: 14px; color: var(--slate);
  line-height: 1.8; font-weight: var(--fw-reg);
  flex: 1; margin-bottom: 24px;
  text-align: center;
}
.ccv-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; justify-content: center; }
.ccv-tag {
  font-size: 11px; font-weight: var(--fw-reg);
  background: var(--teal-pale); color: var(--teal-dk);
  padding: 4px 16px; border-radius: var(--r-pill);
  white-space: nowrap; line-height: 18px;
}

/* ── §8 COMMUNITY: full-bleed with overlapping text block ── */
#community {
  background: var(--charcoal);
  position: relative; overflow: hidden;
  padding: 0;
}
.community-bg {
  display: grid; grid-template-columns: 1fr; height: 520px;
}
.comm-bg-cell { overflow: hidden; }
.comm-bg-cell img { width: 100%; height: 100%; object-fit: cover; opacity: .4; filter: saturate(.6); transition: opacity .5s, filter .5s; }
.community-bg:hover .comm-bg-cell img { opacity: .5; filter: saturate(.75); }
/* Text box */
.community-overlay {
  background: var(--charcoal);
  padding: 35px 0 var(--s20);
}
.community-overlay .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s16); align-items: end; }
.co-left {}
.co-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: var(--fw-reg);
  letter-spacing: -.04em; line-height: .97; color: #fff;
  margin: var(--s5) 0;
}
.co-left h2 em { font-style: italic; color: var(--teal-md); }
.co-left p { font-size: 1rem; color: rgba(255,255,255,.4); line-height: 1.85; font-weight: var(--fw-light); }
.co-right { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
.co-stat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-lg); padding: var(--s6); transition: background var(--t); }
.co-stat:hover { background: rgba(45,155,138,.1); border-color: rgba(45,155,138,.2); }
.co-stat-n { font-family: var(--ff-display); font-size: 2.2rem; font-weight: var(--fw-semi); color: var(--teal-md); display: block; line-height: 1; letter-spacing: -.04em; }
.co-stat-l { display: block; font-size: 12px; color: rgba(255,255,255,.3); margin-top: var(--s2); text-transform: uppercase; letter-spacing: .06em; line-height: 1.2; }

/* ── §9 PRICING: centered + comparison table style ── */
#pricing { background: var(--off-white); }
.pricing-center { text-align: center; margin-bottom: var(--s16); }
.pricing-center h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: var(--fw-reg);
  letter-spacing: -.04em; line-height: 1; color: var(--charcoal);
  margin: var(--s4) 0 var(--s5);
}
.pricing-center h2 em { font-style: italic; color: var(--teal); }
.pricing-center p { font-size: 1rem; color: var(--slate); line-height: 1.85; font-weight: var(--fw-light); max-width: 500px; margin: 0 auto; }
/* Two cards stacked differently: trial smaller, featured large */
.pricing-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  max-width: 1080px; margin: 0 auto;
  align-items: start;
}
.price-card-v2 {
  border-radius: var(--r-xl);
  padding: var(--s10);
  border: 1.5px solid var(--cream-dk);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.price-card-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-v2.featured {
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-md) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  padding: var(--s12);
}
.pcv2-badge {
  display: inline-block; font-size: 10px; font-weight: var(--fw-bold);
  letter-spacing: .15em; text-transform: uppercase;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dk) 100%);
  color: #fff; padding: var(--s2) var(--s5);
  border-radius: var(--r-pill); margin-bottom: var(--s6);
  box-shadow: var(--shadow-teal);
}
.pcv2-label { font-size: 11px; font-weight: var(--fw-bold); letter-spacing: .18em; text-transform: uppercase; color: var(--slate-lt); margin-bottom: var(--s4); }
.featured .pcv2-label { color: rgba(255,255,255,.3); }
.pcv2-price { font-family: var(--ff-display); font-size: 5rem; font-weight: var(--fw-semi); letter-spacing: -.05em; line-height: 1; color: var(--charcoal); }
.featured .pcv2-price { color: var(--teal-md); }
.pcv2-period { font-size: 15px; color: var(--slate); margin: var(--s2) 0 var(--s6); }
.featured .pcv2-period { color: rgba(255,255,255,.6); }
.pcv2-desc { font-size: 14px; color: var(--slate); line-height: 1.75; margin-bottom: var(--s8); font-weight: var(--fw-light); }
.featured .pcv2-desc { color: rgba(255,255,255,.45); }
.pcv2-btn { width: 100%; justify-content: center; margin-bottom: var(--s8); }
.pcv2-btn--soldout { background: var(--cream-dk); color: var(--slate-lt); border: 1.5px solid var(--cream-dk); box-shadow: none; cursor: not-allowed; }
.pcv2-btn--soldout:hover { transform: none; box-shadow: none; background: var(--cream-dk); }
.pcv2-feats { display: flex; flex-direction: column; gap: var(--s3); }
.pcv2-feat { display: flex; align-items: flex-start; gap: var(--s3); font-size: 14px; color: var(--slate); }
.featured .pcv2-feat { color: rgba(255,255,255,.55); }
.pcv2-feat::before {
  content: '✓'; width: 18px; height: 18px;
  background: var(--teal-pale); color: var(--teal);
  font-size: 10px; font-weight: var(--fw-bold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 4px; margin-top: 1px;
}
.featured .pcv2-feat::before { background: rgba(45,155,138,.15); color: var(--teal-md); }
.pricing-footnote { text-align: center; margin-top: var(--s8); font-size: 14px; color: var(--slate); }

/* ── §10 TESTIMONIALS: staggered grid with large feature ── */
#testimonials { background: var(--cream); }
.testi-head { margin-bottom: var(--s12); }
.testi-head-row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: var(--s5); margin-bottom: var(--s3); }
.testi-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: var(--fw-reg);
  letter-spacing: -.04em; line-height: .97; color: var(--charcoal);
}
.testi-head h2 em { font-style: italic; color: var(--teal); }
.rating-chip {
  display: flex; align-items: center; gap: var(--s3);
  background: var(--white); border: 1px solid var(--cream-dk);
  border-radius: var(--r-xl); padding: var(--s4) var(--s6);
  box-shadow: var(--shadow-xs);
}
.rating-chip .num { font-family: var(--ff-display); font-size: 2rem; font-weight: var(--fw-semi); color: var(--charcoal); letter-spacing: -.04em; }
.rating-chip .stars { color: var(--coral); font-size: 12px; letter-spacing: 2px; }
.rating-chip .cnt { font-size: 11px; color: var(--slate-lt); }
/* Masonry-like: 1 large + 2 small in first row, 1 medium + 1 medium in second */
.testi-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s4);
}
.tc2 {
  background: var(--white); border-radius: var(--r-xl);
  padding: var(--s8); border: 1px solid var(--cream-dk);
  box-shadow: var(--shadow-xs); display: flex; flex-direction: column; gap: var(--s4);
  transition: transform var(--t), box-shadow var(--t);
}
.tc2:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tc2.hero-t {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--teal-dk) 0%, var(--teal) 100%);
  border-color: transparent;
  box-shadow: var(--shadow-teal);
  padding: var(--s10);
}
.tc2.wide { grid-column: span 2; flex-direction: row; align-items: center; }
.tc2-stars { color: var(--coral); font-size: 12px; letter-spacing: 2px; }
.tc2.hero-t .tc2-stars { color: var(--coral-lt); }
.tc2-text { font-family: var(--ff-display); font-style: italic; font-size: 1rem; color: var(--slate); line-height: 1.7; flex: 1; }
.tc2.hero-t .tc2-text { color: rgba(255,255,255,.88); font-size: 1.1rem; }
.tc2.wide .tc2-text { font-size: .95rem; }
.tc2-author { display: flex; align-items: center; gap: var(--s3); }
.tc2-author img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.tc2-name { font-size: 13px; font-weight: var(--fw-bold); color: var(--charcoal); }
.tc2.hero-t .tc2-name { color: #fff; }
.tc2-result { font-size: 11px; color: var(--teal); font-weight: var(--fw-semi); }
.tc2.hero-t .tc2-result { color: var(--teal-lt); }

/* ── §11 GUARANTEE: inverted — image left, text right ── */
#guarantee { background: var(--white); }
.guarantee-v2 {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.guar-img-col { position: relative; min-height: 500px; }
.guar-img-col img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.8) saturate(.9); }
.guar-img-col::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(30,45,58,.3));
}
.guar-badge-v2 {
  position: absolute; top: var(--s8); right: calc(-1 * var(--s8));
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dk) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: var(--shadow-coral); z-index: 2;
}
.guar-badge-v2 .days { font-family: var(--ff-display); font-size: 2.8rem; font-weight: var(--fw-semi); color: #fff; display: block; line-height: 1; }
.guar-badge-v2 .word { font-size: 9px; color: rgba(255,255,255,.8); font-weight: var(--fw-bold); letter-spacing: .08em; text-transform: uppercase; }
.guar-text-col {
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-md) 100%);
  padding: var(--s16) var(--s12);
  display: flex; flex-direction: column; justify-content: center;
}
.guar-text-col h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: var(--fw-reg);
  letter-spacing: -.03em; line-height: 1.1; color: #fff;
  margin: var(--s5) 0;
}
.guar-text-col h2 em { font-style: italic; color: var(--teal-lt); }
.guar-text-col > p { font-size: 1rem; color: rgba(255,255,255,.45); line-height: 1.85; margin-bottom: var(--s8); font-weight: var(--fw-light); }
.guar-pts { display: flex; flex-direction: column; gap: var(--s4); margin-bottom: var(--s10); }
.guar-pt { display: flex; align-items: flex-start; gap: var(--s4); }
.guar-pt-ico { width: 32px; height: 32px; background: rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; margin-top: 2px; }
.guar-pt-text { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; font-weight: var(--fw-light); }
.guar-pt-text strong { color: #fff; display: block; font-weight: var(--fw-semi); margin-bottom: 2px; }

/* ── §12 FAQ: open / editorial ── */
#faq-section { background: var(--off-white); }
.faq-v2-wrap {
  display: grid; grid-template-columns: 340px 1fr;
  gap: var(--s16);
}
.faq-v2-left { }
.faq-v2-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: var(--fw-reg);
  letter-spacing: -.04em; line-height: .97; color: var(--charcoal);
  margin: var(--s5) 0 var(--s6);
}
.faq-v2-left h2 em { font-style: italic; color: var(--teal); }
.faq-v2-left p { font-size: 1rem; color: var(--slate); line-height: 1.85; font-weight: var(--fw-light); margin-bottom: var(--s8); }
.faq-v2-right { }

/* ── RESPONSIVE ── */
@media(max-width:960px){
  #hero { grid-template-columns: 1fr; min-height:auto; }
  .hero-photo { width:100%; height:380px; position:relative; }
  .hero-text { padding: var(--s12) var(--s8); }
  .hero-float-card { display:none; }
  .hero-vert-label { display:none; }
  .why-intro { grid-template-columns:1fr; gap:var(--s6); }
  .why-num-cards { grid-template-columns:1fr; gap:1px; }
  .results-pullquote-row { grid-template-columns:1fr; gap:var(--s5); }
  .results-quotemark { display:none; }
  .results-member-strip { grid-template-columns:1fr 1fr; }
  .bento-grid { grid-template-columns:1fr 1fr; }
  .bento-cell.large { grid-row:auto; }
  .method-header { grid-template-columns:1fr; gap:var(--s6); }
  .method-row { grid-template-columns:1fr; }
  .method-row:nth-child(even) { direction:ltr; }
  .method-row-img img { height:200px; }
  .coach-cards-3 { grid-template-columns:1fr; }
  .coach-card-v:nth-child(2) { transform:none; }
  .coach-card-v:nth-child(2):hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
  .community-bg { height:240px; }
  .community-overlay { position:static; background:var(--charcoal); padding:var(--s10) 0 var(--s12); }
  .community-overlay .container { grid-template-columns:1fr; gap:var(--s8); }
  .pricing-layout { grid-template-columns:1fr; max-width:480px; }
  .testi-layout { grid-template-columns:1fr 1fr; }
  .tc2.hero-t { grid-row:auto; grid-column:span 2; }
  .tc2.wide { grid-column:auto; flex-direction:column; }
  .guarantee-v2 { grid-template-columns:1fr; }
  .guarantee-v2 > * { min-width: 0; }  /* allow grid children to shrink below content min-width (email) */
  .guar-img-col { min-height:320px; }
  .guar-text-col { text-align: center; align-items: stretch; }
  .guar-text-col > *, .guar-pt, .guar-pt-text { min-width: 0; }  /* allow flex children to shrink */
  .guar-pt-text { overflow-wrap: anywhere; }  /* break long URL/email tokens */
  .guar-text-col .eyebrow { align-self: center; }
  .guar-text-col h2 { text-align: center; }
  .guar-text-col > p { text-align: center; }
  .guar-pts { align-items: stretch; }
  .guar-pt { flex-direction: column; align-items: center; text-align: center; }
  .guar-text-col .btn { align-self: center; }
  .guar-badge-v2 { right:var(--s4); top:var(--s4); }
  .faq-v2-wrap { grid-template-columns:1fr; }
}
@media(max-width:600px){
  .hero-display { font-size:3.5rem; }
  .hero-proof-bar { flex-wrap:wrap; gap:var(--s4); }
  .why-num-cards { grid-template-columns:1fr; }
  .results-member-strip { grid-template-columns:1fr; }
  .bento-grid { grid-template-columns:1fr; }
  .testi-layout { grid-template-columns:1fr; }
  .tc2.hero-t { grid-column:auto; }
  .tc2.wide { grid-column:auto; }
  .guar-badge-v2 { display:none; }
  .community-bg { height:200px; }
  .co-right { grid-template-columns:1fr 1fr; }
  .method-stat-strip { grid-template-columns:1fr 1fr; }
}
