/* ============================================================
   DESIGN SYSTEM — Антон Замалевин
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --bg:         #0D0D0D;
  --bg2:        #111111;
  --accent:     #FF905A;
  --accent-dim: rgba(255, 144, 90, 0.12);
  --accent-glow:rgba(255, 144, 90, 0.25);
  --white:      #FFFFFF;
  --gray:       #1A1A1A;
  --gray2:      #2A2A2A;
  --muted:      #888888;
  --muted-light:#AAAAAA;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  --section-pad: 100px 6vw;
  --radius-btn:  polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  --radius-box:  polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 60px;
}
.section-title span { color: var(--accent); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0D0D0D;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  clip-path: var(--radius-btn);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover {
  background: #FF7A3D;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 144, 90, 0.35);
}
.btn-primary:hover::after { opacity: 1; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: var(--radius-btn);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  padding: 14px 6vw;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 3px;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links .btn-primary { color: #0D0D0D; }
.nav-links .btn-primary:hover { color: #0D0D0D; }

/* ============================================================
   HERO (универсальный для страниц продукта)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 6vw 0;
  background: var(--bg2);
  margin-bottom: 0;
}


.hero-text { z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,144,90,0.4);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-tag-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero h1 span { color: var(--accent); }

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

/* Stat bar под кнопками */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  letter-spacing: 2px;
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100vh;
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.5s;
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 0;
}
.hero-image::before {
  content: '';
  position: absolute;
  bottom: 5%; left: 40%;
  transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,144,90,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-image img {
  height: 100vh;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  position: relative;
  z-index: 1;
  display: block;
  vertical-align: bottom;
  margin-bottom: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: var(--section-pad); }
section.dark { background: var(--gray); }
section.darker { background: var(--bg2); }

/* ============================================================
   CARDS — "Что ты получишь"
   ============================================================ */
.get-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.get-card {
  background: var(--gray);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: default;
}
.get-card:hover { transform: translateY(-4px); }
.get-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.get-card:hover::before { transform: scaleX(1); }
.get-card::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  transition: opacity 0.4s ease;
  opacity: 0;
}
.get-card:hover::after { opacity: 1; }

.get-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(255,144,90,0.08);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.get-card:hover .get-num { color: rgba(255,144,90,0.15); }
.get-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}
.get-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
}

/* ============================================================
   FOR WHOM
   ============================================================ */
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.forwhom-item {
  background: var(--bg);
  padding: 40px 32px;
  border-left: 3px solid var(--accent);
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.forwhom-item:hover {
  transform: translateX(6px);
  background: rgba(255,144,90,0.03);
}
.forwhom-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: #CCC;
}

/* ============================================================
   STEPS — "Как это работает"
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  position: relative;
}
.step {
  padding: 72px 28px 44px;
  background: var(--bg);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.step:hover { transform: translateY(-4px); }
.step::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.step:hover::before { transform: scaleX(1); }

.step-num {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
}
.step:hover .step-num { opacity: 0.2; }
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
.step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============================================================
   WHY — Почему подойдёт
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.why-item {
  background: var(--bg);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.why-item:hover { transform: translateY(-4px); }
.why-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--accent), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.why-item:hover::before { transform: scaleY(1); }
.why-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.why-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
}

/* ============================================================
   PRICE BLOCK
   ============================================================ */
.price-section { text-align: center; }
.price-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255,144,90,0.2);
  padding: 64px 80px;
  position: relative;
  background: var(--bg2);
  box-shadow: 0 0 80px rgba(255,144,90,0.06);
  clip-path: var(--radius-box);
  width: min(1260px, 90vw);
}
.price-options {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-bottom: 40px;
}
.price-option {
  text-align: center;
  cursor: pointer;
  padding: 28px 36px;
  border: 1px solid var(--gray2);
  transition: all 0.3s ease;
  min-width: 190px;
  position: relative;
  overflow: hidden;
}
.price-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-dim);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.price-option:hover::before,
.price-option.active::before { opacity: 1; }
.price-option:hover,
.price-option.active {
  border-color: var(--accent);
}
.price-option-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  position: relative;
  min-height: 36px;
}
.price-option-amount {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  letter-spacing: 2px;
  line-height: 1;
  position: relative;
}
.price-option-period {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  position: relative;
}
.price-options-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 1100px;
}
.price-options-3 .price-option {
  display: grid;
  grid-template-rows: auto auto auto auto;
  padding: 28px 28px;
  align-content: start;
}
.price-options-3 .price-option .price-option-badge {
  min-height: 26px;
}
.price-option-badge {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0D0D0D;
  background: var(--accent);
  padding: 6px 10px;
  margin-bottom: 12px;
  position: relative;
  text-align: center;
  min-height: 28px;
}
.price-options-3 .price-option:first-child .price-option-badge {
  visibility: hidden;
}
.price-option-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  margin-top: 4px;
  position: relative;
}

.price-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* Единая цена (без выбора) */
.price-single {
  text-align: center;
  margin-bottom: 40px;
}
.price-single-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.price-single-amount {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--accent);
  letter-spacing: 4px;
  line-height: 1;
}
.price-single-period {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.price-includes {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.price-includes li {
  font-size: 13px;
  color: var(--muted-light);
  padding-left: 20px;
  position: relative;
}
.price-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ============================================================
   DUAL ROWS — "Что ты получишь" + "Кому подойдет" в 3 строки
   ============================================================ */
.dual-header {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
}
.dual-header-left {
  grid-column: 1 / 3;
  padding: 60px 48px 40px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.dual-header-right {
  grid-column: 3;
  padding: 60px 0 40px 48px;
}
.dual-header .section-title { margin-bottom: 0; }

.dual-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dual-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 0;
  background: var(--gray);
  min-height: 140px;
}
.dual-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255,144,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color 0.3s ease;
}
.dual-num::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.04);
}
.dual-num::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 1px;
  height: 0%;
  background: linear-gradient(180deg, #FF905A 0%, #1A1A1A 100%);
  transition: height 0.4s ease;
  z-index: 1;
}
.dual-row:has(.dual-num:hover) .dual-num::before,
.dual-row:has(.dual-get:hover) .dual-num::before { height: 100%; }
.dual-row:has(.dual-num:hover) .dual-num,
.dual-row:has(.dual-get:hover) .dual-num { color: rgba(255,144,90,0.3); }

.dual-get {
  padding: 36px 48px 36px 40px;
  position: relative;
}
.dual-get::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.025);
}
.dual-get::before {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 1px;
  height: 0%;
  background: linear-gradient(180deg, #FF905A 0%, #1A1A1A 100%);
  transition: height 0.4s ease;
  z-index: 1;
}
.dual-row:has(.dual-for:hover) .dual-get::before { height: 100%; }

.dual-for {
  padding: 36px 40px;
  font-size: 14px;
  font-weight: 500;
  color: #CCC;
  line-height: 1.7;
  display: flex;
  align-items: center;
}
.dual-get-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.dual-get-desc {
  font-size: 13px;
  font-weight: 300;
  color: #CCC;
  line-height: 1.8;
}


@media (max-width: 900px) {
  .dual-header { grid-template-columns: 1fr; padding: 48px 5vw 0; }
  .dual-header-left { grid-column: 1; padding: 0 0 32px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .dual-header-right { grid-column: 1; padding: 32px 0 0; }
  .dual-row { grid-template-columns: 48px 1fr; }
  .dual-num { font-size: 32px; }
  .dual-get { padding: 24px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); grid-column: 2; }
  .dual-for { padding: 20px 20px; grid-column: 2; }
}

/* ============================================================
   FORWHOM ROW — Кому подойдет горизонтально
   ============================================================ */
.forwhom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.forwhom-col {
  background: var(--gray);
  padding: 48px 40px;
  position: relative;
  transition: background 0.4s ease;
}
.forwhom-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 0%;
  background: linear-gradient(180deg, #FF905A 0%, #1A1A1A 100%);
  transition: height 0.4s ease;
  z-index: 1;
}
.forwhom-col:hover::before { height: 100%; }
.forwhom-col-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(255,144,90,0.12);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.forwhom-col:hover .forwhom-col-num { color: rgba(255,144,90,0.25); }
.forwhom-col-text {
  font-size: 15px;
  font-weight: 500;
  color: #CCC;
  line-height: 1.7;
}

.forwhom-row-2 { grid-template-columns: repeat(2, 1fr); }
.forwhom-row-2 .forwhom-col { background: var(--bg); }

/* ============================================================
   INROW FORWHOM — Кому подойдет (плечи: в строку с разделителями)
   ============================================================ */
.inrow-forwhom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.inrow-item {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  background: var(--bg);
  min-height: 160px;
}
.inrow-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(255,144,90,0.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 72px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  padding: 48px 32px;
}
.inrow-item:hover .inrow-num { color: rgba(255,144,90,0.6); }
.inrow-divider {
  width: 1px;
  flex-shrink: 0;
  margin: 24px 0;
  background: rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.inrow-divider::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: var(--accent);
  transition: height 0.45s ease;
}
.inrow-item:hover .inrow-divider::after { height: 100%; }
.inrow-text {
  font-size: 16px;
  font-weight: 500;
  color: #CCC;
  line-height: 1.65;
  padding: 48px 40px;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .inrow-forwhom { grid-template-columns: 1fr; }
  .inrow-item { padding: 32px 24px; }
  .inrow-num { font-size: 40px; min-width: 52px; }
  .inrow-divider { margin: 0 20px; }
}

@media (max-width: 900px) {
  .forwhom-row { grid-template-columns: 1fr; }
  .forwhom-row-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURES — Особенности программы
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.feature-item {
  background: var(--gray);
  padding: 44px 32px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-item:hover { transform: translateY(-4px); }
.feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-item:hover::before { transform: scaleX(1); }
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.8;
}
.feature-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
}
.feature-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { text-align: center; }
.video-wrap {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  position: relative;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   LIST ROWS — "Что ты получишь" горизонтальный вариант
   ============================================================ */
.list-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.list-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: start;
  background: var(--gray);
  padding: 48px 48px;
  gap: 40px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.list-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), transparent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.list-row:hover::before { transform: scaleY(1); }
.list-row:hover { transform: translateX(4px); }
.list-row-num {
  font-family: var(--font-display);
  font-size: 96px;
  color: rgba(255,144,90,0.08);
  line-height: 1;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.list-row:hover .list-row-num { color: rgba(255,144,90,0.15); }
.list-row-content { padding-top: 12px; }
.list-row-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.list-row-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  max-width: 600px;
}

/* ============================================================
   NUMBERED LIST — "Кому подойдет" пронумерованный вариант
   ============================================================ */
.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.numbered-item {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 36px 48px;
  background: var(--bg);
  transition: background 0.3s ease;
}
.numbered-item:hover { background: rgba(255,144,90,0.03); }
.numbered-idx {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  min-width: 60px;
}
.numbered-item:hover .numbered-idx { opacity: 1; }
.numbered-text {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: #CCC;
}

/* ============================================================
   TABS — Содержание программы
   ============================================================ */
.tabs {
  background: var(--bg);
}
.tabs-nav {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tab-btn {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 20px 40px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.tab-btn.active { color: var(--white); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--muted-light); }

.tab-panel { display: none; padding: 48px; }
.tab-panel.active { display: block; }

.tab-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}
.tab-col-title {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tab-col-badge {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--accent-dim);
  border: 1px solid rgba(255,144,90,0.3);
  color: var(--accent);
  padding: 4px 10px;
}
.tab-col-alt { border-left: 1px solid rgba(255,255,255,0.06); padding-left: 48px; }

.tab-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tab-list li {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.tab-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 1px;
  background: var(--accent);
}
.tab-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.tab-add {
  margin-top: 36px;
  padding: 24px 28px;
  border: 1px solid rgba(255,144,90,0.2);
  background: var(--accent-dim);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tab-add-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.tab-add-text {
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.7;
}
.tab-add-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  transition: opacity 0.3s ease;
}
.tab-add-link:hover { opacity: 0.7; }

@media (max-width: 900px) {
  .list-row { grid-template-columns: 1fr; gap: 16px; padding: 36px 28px; }
  .list-row-num { font-size: 60px; }
  .numbered-item { gap: 24px; padding: 28px; }
  .numbered-idx { font-size: 48px; }
  .tab-cols { grid-template-columns: 1fr; gap: 32px; }
  .tab-col-alt { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px; }
  .tab-panel { padding: 28px; }
}

/* ============================================================
   PROGRAM CONTENT — Содержание программы
   ============================================================ */
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.program-grid-3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.program-block-wide {
  grid-row: 1 / 3;
}
.program-block {
  background: var(--bg);
  padding: 48px 40px;
  border: 1px solid rgba(255,144,90,0.2);
  box-shadow: 0 0 60px rgba(255,144,90,0.04);
  clip-path: var(--radius-box);
}
.program-block-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 24px;
  text-align: center;
}
.program-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.program-list li {
  font-size: 14px;
  color: var(--muted-light);
  font-weight: 400;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.program-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--accent);
}
.program-note {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.program-add {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(255,144,90,0.2);
  background: var(--accent-dim);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.program-add-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.program-add-text {
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.7;
}
.program-add-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  transition: opacity 0.3s ease;
}
.program-add-link:hover { opacity: 0.7; }

.program-block-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.program-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted-light);
  background: var(--gray2);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 7px 14px;
  line-height: 1;
}

@media (max-width: 900px) {
  .program-grid { grid-template-columns: 1fr; }
  .program-block { padding: 40px 28px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item { background: var(--gray); overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 24px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.35s ease;
  font-style: normal;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 32px 28px;
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--gray);
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,144,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .section-title {
  font-size: clamp(44px, 7vw, 88px);
  margin-bottom: 20px;
}
.final-cta-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ============================================================
   TRANSFORMATIONS
   ============================================================ */
.transformations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.transformation-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray);
}
.transformation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}
.transformation-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.transformation-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.6) 0%, transparent 50%);
}

/* ============================================================
   GALLERY — Трансформации
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.gallery-item {
  cursor: pointer;
  overflow: hidden;
  background: var(--bg);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.3s ease, transform 0.4s ease;
}
.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.slider-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 18px;
  width: 44px; height: 44px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
  width: 90vw;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
.lightbox.open .lightbox-content {
  transform: scale(1);
}
.lightbox-img {
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: 80vh;
}
.lightbox-close {
  position: absolute;
  top: -16px; right: -16px;
  width: 36px; height: 36px;
  background: var(--accent);
  border: none;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.lightbox-close:hover { background: #FF7A3D; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080808;
  padding: 48px 6vw;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 1px;
}
.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  color: #CCCCCC;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a svg { flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: #888;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: #888;
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: var(--muted-light); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .transformations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px 5vw; }

  .nav-logo { display: none; }
  .nav-links {
    display: flex;
    gap: 16px;
  }
  .nav-links a {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .nav-links li:last-child { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 110px 5vw 60px;
    text-align: center;
    min-height: auto;
  }
  .hero-image {
    justify-content: center;
    height: 320px;
    margin-top: 40px;
    order: -1;
  }
  .hero-image img { height: 320px; }
  .hero-image::before { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }

  .get-grid { grid-template-columns: 1fr; }
  .forwhom-grid { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .transformations-grid { grid-template-columns: 1fr 1fr; }

  .price-options { flex-direction: column; align-items: center; gap: 16px; }
  .price-options-3 { grid-template-columns: 1fr; }
  .price-block { padding: 44px 28px; }

  footer { flex-direction: column; }
  .footer-top { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

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

  .transformations-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(32px, 9vw, 52px); }
}

/* ============================================================
   TONUS FORWHOM — Кому подойдет (muscle-tonus вариант)
   ============================================================ */
.tonus-forwhom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.tonus-forwhom-main {
  background: var(--bg);
  padding: 64px 56px;
  border: 1px solid rgba(255,144,90,0.15);
  clip-path: var(--radius-box);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  position: relative;
}
.tonus-forwhom-tag {
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(255,144,90,0.06);
  line-height: 1;
  position: absolute;
  top: 24px; left: 48px;
  letter-spacing: -4px;
}
.tonus-forwhom-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  position: relative;
  z-index: 1;
  max-width: 480px;
}
.tonus-forwhom-sub {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tonus-forwhom-item {
  background: var(--gray2);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tonus-forwhom-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.tonus-forwhom-item:hover::before { transform: scaleY(1); }
.tonus-forwhom-item:hover { background: rgba(255,144,90,0.04); }
.tonus-forwhom-item-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.tonus-forwhom-item:hover .tonus-forwhom-item-num { opacity: 0.35; }
.tonus-forwhom-item-text {
  font-size: 15px;
  font-weight: 500;
  color: #CCC;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .tonus-forwhom { grid-template-columns: 1fr; }
  .tonus-forwhom-main { min-height: auto; padding: 48px 36px; }
  .tonus-forwhom-tag { font-size: 80px; }
  .tonus-forwhom-text { font-size: 17px; }
}

/* ============================================================
   HFEATURES — Горизонтальные особенности программы
   ============================================================ */
.hfeatures {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hfeature {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 0;
  background: var(--bg);
  padding: 0;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hfeature::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.04);
}
.hfeature:last-child::after { display: none; }
.hfeature-left {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 48px;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.hfeature::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  z-index: 3;
}
.hfeature:hover::before { transform: scaleY(1); }
.hfeature:hover { background: rgba(255,144,90,0.015); }
.hfeature-icon {
  color: var(--accent);
  opacity: 0.8;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.hfeature:hover .hfeature-icon { opacity: 1; }
.hfeature-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.hfeature-desc {
  padding: 40px 48px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .hfeature { grid-template-columns: 1fr; }
  .hfeature-left {
    padding: 32px 28px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .hfeature-desc { padding: 20px 28px 32px; }
}

/* ============================================================
   EDITORIAL FORWHOM — Кому подойдет (плечи: редакционный стиль)
   ============================================================ */
.editorial-forwhom {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.editorial-item {
  background: var(--bg);
  padding: 52px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background 0.3s ease;
  overflow: hidden;
}
.editorial-item:last-child { border-bottom: none; }
.editorial-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.editorial-item:hover::after { transform: scaleX(1); }
.editorial-item:hover { background: rgba(255,144,90,0.015); }
.editorial-tag {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--accent);
  margin-bottom: 20px;
}
.editorial-text {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--white);
  max-width: 900px;
}

@media (max-width: 900px) {
  .editorial-item { padding: 36px 0; }
  .editorial-text { font-size: clamp(24px, 7vw, 36px); }
}

/* ============================================================
   ZIGZAG — Как это работает (плечи: зигзаг)
   ============================================================ */
.zigzag {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.zigzag-line {
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(255,144,90,0.15);
  transform: translateX(-50%);
}
.zigzag-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  min-height: 140px;
  position: relative;
}
.zigzag-left .zigzag-content { grid-column: 1; text-align: right; padding: 32px 48px 32px 0; }
.zigzag-left .zigzag-dot { grid-column: 2; }
.zigzag-right .zigzag-dot { grid-column: 2; }
.zigzag-right .zigzag-content { grid-column: 3; text-align: left; padding: 32px 0 32px 48px; }

.zigzag-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.zigzag-step:hover .zigzag-dot {
  background: var(--accent);
  transform: scale(1.25);
}
.zigzag-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(255,144,90,0.15);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.zigzag-step:hover .zigzag-num { color: rgba(255,144,90,0.35); }
.zigzag-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.zigzag-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .zigzag { max-width: 100%; }
  .zigzag-line { display: none; }
  .zigzag-step { grid-template-columns: 1fr; min-height: auto; }
  .zigzag-left .zigzag-content,
  .zigzag-right .zigzag-content {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
    padding: 28px 24px;
    background: var(--bg);
    border-left: 3px solid rgba(255,144,90,0.2);
  }
  .zigzag-step:hover .zigzag-content { border-left-color: var(--accent); }
  .zigzag-dot { display: none; }
}

/* ============================================================
   VTABS — Особенности (плечи: вертикальные табы)
   ============================================================ */
.vtabs {
  display: grid;
  grid-template-columns: 260px 1fr;
  background: var(--bg);
  border: 1px solid rgba(255,144,90,0.1);
}
.vtabs-nav {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.vtabs-nav .tab-btn {
  text-align: left;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
  letter-spacing: 2px;
  position: relative;
  flex: 1;
}
.vtabs-nav .tab-btn::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.vtabs-nav .tab-btn.active::after { transform: scaleY(1); }
.vtabs-content {
  padding: 52px 56px;
  display: flex;
  align-items: center;
}
.vtabs-content .tab-panel { display: none; }
.vtabs-content .tab-panel.active { display: block; }
.vtab-icon {
  color: var(--accent);
  opacity: 0.8;
  margin-bottom: 24px;
}
.vtab-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.vtab-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.9;
  max-width: 100%;
}

@media (max-width: 900px) {
  .vtabs { grid-template-columns: 1fr; }
  .vtabs-nav { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .vtabs-nav .tab-btn { padding: 18px 16px; border-bottom: none; white-space: nowrap; }
  .vtabs-nav .tab-btn::after { top: auto; left: 0; right: 0; bottom: 0; width: auto; height: 2px; transform: scaleX(0); }
  .vtabs-nav .tab-btn.active::after { transform: scaleX(1); }
  .vtabs-content { padding: 32px 24px; }
  .vtab-title { font-size: 24px; }
}

/* ============================================================
   SPINE FORWHOM — Кому подойдет (2 пункта, крупные строки)
   ============================================================ */
.spine-forwhom {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.spine-forwhom-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 0;
  background: var(--bg);
  min-height: 160px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.spine-forwhom-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.spine-forwhom-item:hover::before { transform: scaleY(1); }
.spine-forwhom-item:hover { background: rgba(255,144,90,0.02); }
.spine-forwhom-num {
  font-family: var(--font-display);
  font-size: 96px;
  color: rgba(255,144,90,0.1);
  line-height: 1;
  text-align: center;
  transition: color 0.3s ease;
  border-right: 1px solid rgba(255,255,255,0.04);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spine-forwhom-item:hover .spine-forwhom-num { color: rgba(255,144,90,0.22); }
.spine-forwhom-text {
  padding: 40px 60px;
  font-size: 18px;
  font-weight: 500;
  color: #CCC;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .spine-forwhom-item { grid-template-columns: 80px 1fr; min-height: 120px; }
  .spine-forwhom-num { font-size: 56px; }
  .spine-forwhom-text { padding: 28px 24px; font-size: 15px; }
}

/* ============================================================
   TIMELINE — Как это работает (горизонтальный)
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}
.timeline-track {
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: rgba(255,144,90,0.2);
  z-index: 0;
}
.timeline-track::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.timeline-track.fill-1::after { transform: scaleX(0.333); }
.timeline-track.fill-2::after { transform: scaleX(0.666); }
.timeline-track.fill-3::after { transform: scaleX(1); }
.timeline-track.fill-4::after { transform: scaleX(1); }

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px 0;
  position: relative;
  z-index: 1;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  margin-bottom: 28px;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.timeline-step:hover .timeline-dot {
  background: var(--accent);
  transform: scale(1.3);
}
.timeline-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255,144,90,0.15);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.timeline-step:hover .timeline-num { color: rgba(255,144,90,0.35); }
.timeline-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.timeline-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: 2px; }
  .timeline-track { display: none; }
  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 28px 24px;
    background: var(--bg);
    gap: 0;
    border-left: 3px solid rgba(255,144,90,0.15);
  }
  .timeline-step:hover { border-left-color: var(--accent); }
  .timeline-dot { display: none; }
  .timeline-num { font-size: 40px; margin-bottom: 8px; line-height: 1; }
  .timeline-title { font-size: 15px; margin-bottom: 8px; }
  .timeline-desc { font-size: 13px; }
}

/* ============================================================
   SPINE FEATURES — Особенности программы (сетка 2x2)
   ============================================================ */
.spine-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.spine-feature {
  background: var(--bg);
  padding: 48px 48px 48px 64px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.spine-feature-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.spine-feature:hover .spine-feature-accent { transform: scaleY(1); }
.spine-feature:hover { background: rgba(255,144,90,0.015); }
.spine-feature-icon {
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 24px;
  transition: opacity 0.3s ease;
}
.spine-feature:hover .spine-feature-icon { opacity: 1; }
.spine-feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}
.spine-feature-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .spine-features { grid-template-columns: 1fr; }
  .spine-feature { padding: 40px 28px 40px 44px; }
}

/* ============================================================
   SPLIT FORWHOM — Кому подойдет (грудные: split-панели)
   ============================================================ */
.split-forwhom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.split-forwhom-item {
  position: relative;
  background: var(--bg);
  min-height: 240px;
  padding: 56px 56px 56px 56px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.4s ease;
  cursor: default;
}
.split-forwhom-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.split-forwhom-item:hover::after { transform: scaleX(1); }
.split-forwhom-item:hover { background: rgba(255,144,90,0.02); }
.split-forwhom-bg-num {
  font-family: var(--font-display);
  font-size: 160px;
  color: rgba(255,144,90,0.06);
  line-height: 1;
  position: absolute;
  top: 12px; right: 40px;
  letter-spacing: -4px;
  transition: color 0.4s ease;
  pointer-events: none;
}
.split-forwhom-item:hover .split-forwhom-bg-num { color: rgba(255,144,90,0.12); }
.split-forwhom-content { position: relative; z-index: 1; }
.split-forwhom-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.split-forwhom-text {
  font-size: 18px;
  font-weight: 500;
  color: #CCC;
  line-height: 1.65;
  max-width: 680px;
}

@media (max-width: 900px) {
  .split-forwhom { grid-template-columns: 1fr; }
  .split-forwhom-item { min-height: 180px; padding: 40px 28px; }
  .split-forwhom-bg-num { font-size: 100px; right: 16px; }
  .split-forwhom-text { font-size: 16px; }
}

/* ============================================================
   VSTEPS — Как это работает (грудные: 2 колонки по 2 шага)
   ============================================================ */
.vsteps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.vstep {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  background: var(--bg);
  padding: 52px 48px 52px 0;
  position: relative;
}
.vstep-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}
.vstep-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: rgba(255,144,90,0.2);
  line-height: 1;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.vstep:hover .vstep-num { color: rgba(255,144,90,0.55); }
.vstep-line {
  width: 48px;
  height: 1px;
  margin-top: 10px;
  background: rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.vstep-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.vstep:hover .vstep-line::after { transform: scaleX(1); }
.vstep-right {
  padding: 0 0 0 0;
}
.vstep-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  padding-top: 6px;
}
.vstep-desc {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .vsteps { grid-template-columns: 1fr; }
  .vstep { padding: 36px 24px 36px 0; }
  .vstep { grid-template-columns: 64px 1fr; }
  .vstep-num { font-size: 36px; }
  .vstep-title { font-size: 17px; }
}

/* ============================================================
   CHEST FEATURES — Особенности программы (грудные: карточки 2x2 с glow)
   ============================================================ */
.chest-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.chest-feature {
  background: var(--bg);
  padding: 52px 52px 56px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}
.chest-feature:hover { background: rgba(255,144,90,0.015); }
.chest-feature-icon {
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 28px;
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.chest-feature:hover .chest-feature-icon {
  opacity: 1;
  transform: translateY(-4px);
}
.chest-feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.chest-feature-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.85;
  position: relative;
  z-index: 1;
}
.chest-feature-glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,144,90,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.chest-feature:hover .chest-feature-glow { opacity: 1; }

@media (max-width: 900px) {
  .chest-features { grid-template-columns: 1fr; }
  .chest-feature { padding: 40px 28px; }
}

/* ============================================================
   ARMS FORWHOM — Кому подойдет (руки: строки на всю ширину)
   ============================================================ */
.arms-forwhom {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.arms-forwhom-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  padding: 52px 64px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
  gap: 40px;
}
.arms-forwhom-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.04);
}
.arms-forwhom-item::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}
.arms-forwhom-item:hover::after { transform: scaleY(1); }
.arms-forwhom-item:hover { background: rgba(255,144,90,0.015); }
.arms-forwhom-text {
  font-size: 20px;
  font-weight: 500;
  color: #CCC;
  line-height: 1.6;
  max-width: 700px;
}
.arms-forwhom-num {
  font-family: var(--font-display);
  font-size: 120px;
  color: rgba(255,144,90,0.07);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.4s ease;
}
.arms-forwhom-item:hover .arms-forwhom-num { color: rgba(255,144,90,0.15); }

@media (max-width: 900px) {
  .arms-forwhom-item { padding: 36px 28px; gap: 20px; }
  .arms-forwhom-text { font-size: 16px; }
  .arms-forwhom-num { font-size: 72px; }
}

/* ============================================================
   HOW CARDS — Как это работает (руки: 4 карточки в ряд)
   ============================================================ */
.how-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.how-card {
  background: var(--bg);
  padding: 48px 36px 52px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.how-card:hover { background: var(--gray); transform: translateY(-4px); }
.how-card-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: rgba(255,144,90,0.15);
  line-height: 1;
  margin-bottom: 28px;
  transition: color 0.3s ease;
}
.how-card:hover .how-card-num { color: rgba(255,144,90,0.4); }
.how-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}
.how-card-desc {
  font-size: 13px;
  color: var(--muted-light);
  line-height: 1.8;
  flex: 1;
}
.how-card-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.how-card:hover .how-card-bar { transform: scaleX(1); }

@media (max-width: 1100px) {
  .how-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .how-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   PAIRS FEATURES — Особенности программы (руки: пары название+текст)
   ============================================================ */
.pairs-features {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pairs-feature {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: var(--bg);
  min-height: 120px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}
.pairs-feature::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 0;
  background: rgba(255,144,90,0.04);
  transition: width 0.4s ease;
}
.pairs-feature:hover::after { width: 100%; }
.pairs-feature:hover { background: rgba(255,144,90,0.01); }
.pairs-feature-left {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 48px;
  border-right: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s ease;
}
.pairs-feature:hover .pairs-feature-left { border-right-color: rgba(255,144,90,0.2); }
.pairs-feature-icon {
  color: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.pairs-feature:hover .pairs-feature-icon { opacity: 1; }
.pairs-feature-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.5px;
}
.pairs-feature-right {
  padding: 40px 56px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.85;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .pairs-feature { grid-template-columns: 1fr; }
  .pairs-feature-left { padding: 32px 28px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .pairs-feature-right { padding: 20px 28px 32px; }
}

/* ============================================================
   BORDER FADE — универсальная рамка с fade при hover
   ============================================================ */
.border-draw {
  position: relative;
}
.border-draw::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,144,90,0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}
.border-draw:hover::after {
  opacity: 1;
}
.border-draw.bd-active {
  background-color: #0D0D0D;
}

/* ============================================================
   LEGS HOW — Как это работает (ноги: сетка 2×2 серые карточки)
   ============================================================ */
.legs-how {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.legs-how-card {
  background: var(--gray);
  padding: 56px 48px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}
.legs-how-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}
.legs-how-card:hover::after { transform: scaleX(1); }
.legs-how-card:hover { background: #202020; }
.legs-how-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(255,144,90,0.12);
  line-height: 1;
  margin-bottom: 28px;
  transition: color 0.3s ease;
}
.legs-how-card:hover .legs-how-num { color: rgba(255,144,90,0.3); }
.legs-how-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.legs-how-desc {
  font-size: 16px;
  color: var(--muted-light);
  line-height: 1.8;
  max-width: 420px;
}

@media (max-width: 700px) {
  .legs-how { grid-template-columns: 1fr; }
  .legs-how-card { padding: 44px 28px 48px; align-items: flex-start; text-align: left; }
}

/* ============================================================
   DUO FORWHOM — Кому подойдет (ноги: 2 вертикальных блока)
   ============================================================ */
.duo-forwhom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.duo-forwhom-item {
  background: var(--bg);
  padding: 64px 56px 72px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
  cursor: default;
}
.duo-forwhom-item:hover { background: rgba(255,144,90,0.015); }
.duo-forwhom-num {
  font-family: var(--font-display);
  font-size: 96px;
  color: rgba(255,144,90,0.08);
  line-height: 1;
  margin-bottom: 36px;
  transition: color 0.3s ease;
}
.duo-forwhom-item:hover .duo-forwhom-num { color: rgba(255,144,90,0.2); }
.duo-forwhom-text {
  font-size: 18px;
  font-weight: 500;
  color: #CCC;
  line-height: 1.65;
  max-width: 520px;
  flex: 1;
}
.duo-forwhom-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}
.duo-forwhom-item:hover .duo-forwhom-line { transform: scaleX(1); }

@media (max-width: 900px) {
  .duo-forwhom { grid-template-columns: 1fr; }
  .duo-forwhom-item { padding: 44px 28px 52px; }
  .duo-forwhom-num { font-size: 64px; margin-bottom: 24px; }
  .duo-forwhom-text { font-size: 16px; }
}

/* ============================================================
   COUNTER STEPS — Как это работает (ноги: строки num|title|desc)
   ============================================================ */
.counter-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.counter-step {
  display: grid;
  grid-template-columns: 80px 1px 1fr;
  align-items: stretch;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s ease;
}
.counter-step:hover { background: rgba(255,144,90,0.015); }
.counter-step-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: rgba(255,144,90,0.18);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.counter-step:hover .counter-step-num { color: rgba(255,144,90,0.45); }
.counter-step-divider {
  width: 1px;
  background: rgba(255,255,255,0.06);
  margin: 20px 0;
  transition: background 0.3s ease;
}
.counter-step:hover .counter-step-divider { background: rgba(255,144,90,0.25); }
.counter-step-body {
  padding: 36px 56px;
}
.counter-step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.counter-step:hover .counter-step-title { color: var(--white); }
.counter-step-desc {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.8;
  max-width: 680px;
}
.counter-step-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.counter-step:hover .counter-step-bar { transform: scaleX(1); }

@media (max-width: 900px) {
  .counter-step { grid-template-columns: 56px 1px 1fr; }
  .counter-step-num { font-size: 32px; padding: 28px 0; }
  .counter-step-body { padding: 28px 24px; }
  .counter-step-title { font-size: 17px; }
}

/* ============================================================
   CORNER FEATURES — Особенности программы (ноги: 2×2 с угловым акцентом)
   ============================================================ */
.corner-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.corner-feature {
  background: var(--bg);
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}
.corner-feature:hover { background: rgba(255,144,90,0.015); }
.corner-feature-corner {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 48px 48px 0;
  border-color: transparent rgba(255,144,90,0.06) transparent transparent;
  transition: border-color 0.4s ease;
}
.corner-feature:hover .corner-feature-corner {
  border-color: transparent rgba(255,144,90,0.25) transparent transparent;
}
.corner-feature-icon {
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 28px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.corner-feature:hover .corner-feature-icon { opacity: 1; transform: translateY(-3px); }
.corner-feature-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.corner-feature-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .corner-features { grid-template-columns: 1fr; }
  .corner-feature { padding: 40px 28px; }
}

/* ============================================================
   INDEX HERO — Главная страница
   ============================================================ */
.index-hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 6vw;
  background: var(--bg2);
  overflow: hidden;
  position: relative;
}
.index-hero-text {
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 2;
}
.index-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.index-hero-text h1 span { color: var(--accent); }
.index-hero-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  position: relative;
  overflow: visible;
}
.index-hero-image::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center bottom, rgba(255,144,90,0.22) 0%, rgba(255,144,90,0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.index-hero-image img {
  height: 99vh;
  max-height: 810px;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  position: relative;
  z-index: 1;
}
.index-hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}
.index-hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.index-hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.index-hero-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   WANTS — Если ты хочешь
   ============================================================ */
.wants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.wants-item {
  background: var(--bg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  cursor: default;
}
.wants-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.wants-item:hover::after { transform: scaleX(1); }
.wants-item:hover { background: rgba(255,144,90,0.02); }
.wants-num {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(255,144,90,0.07);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}
.wants-item:hover .wants-num { color: rgba(255,144,90,0.18); }
.wants-text {
  font-size: 17px;
  font-weight: 500;
  color: #CCC;
  line-height: 1.65;
}

/* ============================================================
   BENEFITS — При этом ты получаешь
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.benefit-item {
  background: var(--gray);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.benefit-item:hover { background: #202020; transform: translateY(-4px); }
.benefit-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.benefit-item:hover::before { transform: scaleX(1); }
.benefit-icon {
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 28px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.benefit-item:hover .benefit-icon { opacity: 1; transform: translateY(-3px); }
.benefit-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}
.benefit-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.85;
}

/* ============================================================
   ABOUT — О тренере
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(255,144,90,0.2);
  pointer-events: none;
}
.about-image img {
  width: 100%;
  display: block;
  filter: grayscale(15%);
}
.about-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
}
.about-achievements {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-achievement {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #CCC;
  line-height: 1.5;
}
.about-achievement-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* ============================================================
   TRANSFORMATIONS — Блок трансформаций на главной
   ============================================================ */
.index-transforms {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.index-transform-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding-left: 20px;
  position: relative;
}
.index-transform-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 1px;
  background: var(--accent);
}
.index-transform-photos {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 600px;
}
.index-transform-photo {
  position: relative;
  flex: 1;
}
.index-transform-photo img {
  width: 100%;
  display: block;
  filter: grayscale(15%);
}
.index-transform-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(13,13,13,0.85);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 12px;
  text-transform: uppercase;
}
.index-transform-badge--after {
  color: var(--accent);
}
.index-transform-arrow {
  font-size: 32px;
  color: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
}
.index-transform-caption {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--accent);
  opacity: 0.7;
}
.index-transform-clients .gallery {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================================
   PROGRAMS SPLIT — Выбор программы (два блока)
   ============================================================ */
.programs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  cursor: pointer;
}
.programs-panel {
  background: var(--bg);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
}
.programs-panel:hover { background: rgba(255,144,90,0.03); }
.programs-panel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.programs-panel:hover::after { transform: scaleX(1); }
.programs-panel--advanced { background: var(--gray); }
.programs-panel--advanced:hover { background: #202020; }
.programs-panel-bg-num {
  font-family: var(--font-display);
  font-size: 220px;
  color: rgba(255,144,90,0.04);
  line-height: 1;
  position: absolute;
  top: 20px; right: 40px;
  letter-spacing: -8px;
  transition: color 0.4s ease;
  pointer-events: none;
}
.programs-panel:hover .programs-panel-bg-num { color: rgba(255,144,90,0.1); }
.programs-panel-content { position: relative; z-index: 1; }
.programs-panel-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.programs-panel-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.programs-panel-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 32px;
}
.programs-panel-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.programs-panel:hover .programs-panel-cta { gap: 16px; }

/* ============================================================
   PROGRAM MODAL — Модальное окно с программами
   ============================================================ */
.prog-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.prog-modal.open {
  opacity: 1;
  pointer-events: all;
}
.prog-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
}
.prog-modal-box {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border: 1px solid rgba(255,144,90,0.2);
  width: 90vw;
  max-width: 860px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 56px;
  transform: translateY(24px);
  transition: transform 0.3s ease;
}
.prog-modal.open .prog-modal-box { transform: translateY(0); }
.prog-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: var(--gray2);
  border: none;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.prog-modal-close:hover { background: var(--accent); color: #000; }
.prog-modal-header { margin-bottom: 40px; }
.prog-modal-title {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.prog-modal-subtitle {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 1px;
}
.prog-modal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.prog-modal-card {
  background: var(--gray);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}
.prog-modal-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.prog-modal-card:hover::after { transform: scaleX(1); }
.prog-modal-card:hover { background: #202020; }
.prog-modal-card-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.prog-modal-card-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.7;
  flex: 1;
}
.prog-modal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.prog-modal-card-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 1px;
}
.prog-modal-card-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity 0.3s ease;
}
.prog-modal-card:hover .prog-modal-card-btn { opacity: 0.7; }

/* ============================================================
   NUTRITION CARDS — Планы питания на главной
   ============================================================ */
.nutrition-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 700px;
}
.nutrition-card {
  background: var(--bg);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color 0.3s ease;
  min-height: 320px;
}
.nutrition-card:hover { border-color: rgba(255,144,90,0.2); }
.nutrition-card--featured {
  background: var(--gray);
  border-color: rgba(255,144,90,0.2);
  position: relative;
}
.nutrition-card-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
}
.nutrition-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--white);
}
.nutrition-card-price {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--accent);
  letter-spacing: 1px;
}
.nutrition-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
}

/* ============================================================
   INDEX RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 320px 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .index-hero { grid-template-columns: 1fr; padding: 110px 5vw 200px; text-align: center; min-height: auto; overflow: hidden; }
  .index-hero-text { width: 100%; max-width: 100%; box-sizing: border-box; }
  .index-hero-text h1 { font-size: clamp(36px, 11vw, 52px); word-break: break-word; overflow-wrap: break-word; }
  .hero-tag { font-size: 11px; letter-spacing: 2px; padding: 8px 16px; flex-wrap: wrap; justify-content: center; max-width: 100%; }
  .index-hero-image { min-height: 380px; height: 380px; order: -1; align-items: flex-end; overflow: visible; }
  .index-hero-image img { height: 460px; margin-bottom: -80px; }
  .index-hero-image::before { display: none; }
  .index-hero-stats { left: 50%; transform: translateX(-50%); gap: 24px; }
  .wants-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 320px; }
  .programs-split { grid-template-columns: 1fr; }
  .programs-panel { min-height: 300px; padding: 52px 32px; }
  .prog-modal-box { padding: 36px 24px; }
  .prog-modal-cards { grid-template-columns: 1fr; }
  .nutrition-cards { grid-template-columns: 1fr; max-width: 100%; }
  .index-transform-photos { max-width: 100%; }
  .index-transforms { gap: 48px; }
}

/* ============================================================
   INDEX HERO — статы абсолютом внизу (как в референсе)
   ============================================================ */
.index-hero-stats {
  position: absolute;
  bottom: 48px;
  left: 6vw;
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}
.stat-item { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   PAIN GRID — Знакомо?
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
}
.pain-item {
  padding: 40px 32px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: default;
}
.pain-item:hover { transform: translateY(-4px); }
.pain-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--accent);
  transition: height 0.4s ease;
}
.pain-item:hover::before { height: 100%; }
.pain-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: rgba(255,144,90,0.08);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.pain-item:hover .pain-num { color: rgba(255,144,90,0.2); }
.pain-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #CCC;
}

/* ============================================================
   ABOUT — О тренере (стиль референса)
   ============================================================ */
.section-label--nodash {
  padding-left: 0;
}
.section-label--nodash::before {
  display: none;
}

.about-section {
  background: #111111;
  padding: 0;
  overflow: visible;
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
}
.about-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-left: 5%;
}
.about-photo img {
  width: 100%;
  max-width: 720px;
  display: block;
  vertical-align: bottom;
  filter: none;
  object-fit: contain;
  object-position: bottom center;
}
.about-right {
  display: flex;
  align-items: center;
  padding: 60px 60px 0 40px;
}
.about-text {
  padding: 48px;
  background: #0D0D0D;
  box-shadow: 0 0 25px 8px rgba(255,144,90,0.12),
              0 0 60px 20px rgba(255,144,90,0.08),
              0 0 120px 40px rgba(255,144,90,0.05),
              inset 0 0 80px rgba(255,144,90,0.03);
  border: 1px solid rgba(255,144,90,0.12);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.about-text .section-title { margin-bottom: 24px; }
.about-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 36px;
}
.ref-achievements {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ref-achievement {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--gray);
  border-left: 2px solid var(--accent);
}
.ref-achievement-icon { font-size: 18px; flex-shrink: 0; }
.ref-achievement-text {
  font-size: 13px;
  font-weight: 500;
  color: #CCC;
  line-height: 1.4;
}

/* ============================================================
   REF RESULTS — Горизонтальный скролл результатов
   ============================================================ */
.ref-results {
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}
.ref-results::-webkit-scrollbar { height: 4px; }
.ref-results::-webkit-scrollbar-track { background: var(--gray); }
.ref-results::-webkit-scrollbar-thumb { background: var(--accent); }
.ref-result-card {
  flex: 0 0 480px;
  scroll-snap-align: start;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.ref-result-card:hover { transform: scale(1.02); }
.ref-result-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.3s ease;
}
.ref-result-card:hover img { filter: grayscale(0%); }

/* ============================================================
   REF PRODUCTS — Карточки программ/питания (стиль референса)
   ============================================================ */
.ref-products-section { background: var(--gray); }
.ref-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
  margin-bottom: 0;
}
.ref-product-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.ref-product-card:hover { transform: translateY(-6px); }
.ref-product-featured::before {
  content: 'ПОПУЛЯРНОЕ';
  position: absolute;
  top: 46px; right: -48px;
  background: var(--accent);
  color: #0D0D0D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 72px;
  transform: rotate(45deg);
  line-height: 1;
}
.ref-product-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  margin-bottom: 20px;
  width: fit-content;
}
.ref-product-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}
.ref-product-subtitle--hero {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 28px;
}
.ref-product-features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
}
.ref-product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #BBBBBB;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}
.ref-product-features li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.ref-product-price { margin-bottom: 28px; }
.ref-price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--accent);
  letter-spacing: 2px;
  line-height: 1;
}
.ref-price-period {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.ref-product-btn {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================================
   MODAL — Модальное окно выбора программы (стиль референса)
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: #111111;
  border: 1px solid rgba(255,144,90,0.25);
  padding: 64px 56px;
  max-width: 680px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 60px rgba(255,144,90,0.1);
  clip-path: var(--radius-box);
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}
.modal-close:hover { color: var(--accent); }
.modal-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 32px;
  line-height: 1.1;
}
.modal-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #0D0D0D;
  border: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
  gap: 16px;
}
.modal-option:hover {
  border-color: var(--accent);
  background: #161616;
  transform: translateX(4px);
}
.modal-option-name {
  font-size: 15px;
  font-weight: 600;
}
.modal-option-arrow {
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

/* VIDEO SPLIT */
.video-split-section {
  padding: 80px 6vw;
  background: var(--bg);
}

.video-split-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.video-split-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.video-split-intro {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.video-split-outro {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  font-style: italic;
}

.video-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-bullet {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}

.video-bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.video-split-right .video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
}

/* ТРАНСФОРМАЦИЯ АНТОНА */
.anton-transform-section {
  background: var(--bg);
  padding: 80px 6vw;
  text-align: center;
}

.anton-transform-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.anton-transform-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Слайдер */
.anton-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.anton-slider-track {
  overflow: hidden;
}

.anton-slider-item {
  display: none;
}

.anton-slider-item.active {
  display: block;
}

.anton-slider-item img {
  width: 100%;
  height: auto;
  max-height: 780px;
  object-fit: contain;
  object-position: top center;
  display: block;
  cursor: pointer;
}

.anton-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anton-slider-btn:hover {
  background: rgba(255,144,90,0.3);
  border-color: var(--accent);
}

.anton-slider-prev { left: -64px; }
.anton-slider-next { right: -64px; }

.anton-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.anton-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s;
}

.anton-dot.active {
  background: var(--accent);
}

@media (max-width: 600px) {
  .anton-slider-prev { left: -20px; }
  .anton-slider-next { right: -20px; }
  .anton-slider-item img { height: 400px; }
  .anton-transform-sub { font-size: 15px; }
}

/* ПРИ ЭТОМ */
.pritom-section { padding-bottom: 80px; }

.pritom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.pritom-card {
  position: relative;
  padding: 40px 32px 48px 36px;
  background: var(--gray);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: background 0.3s;
}

.pritom-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transition: transform 0.4s ease;
}

.pritom-card:hover::after { transform: translateX(-50%) scaleX(1); }
.pritom-card:hover { background: #1e1e1e; }

.pritom-num {
  font-family: var(--font-head);
  font-size: 80px;
  line-height: 1;
  color: rgba(255,144,90,0.18);
  position: absolute;
  top: 20px;
  right: 24px;
  pointer-events: none;
  user-select: none;
  transition: color 0.3s;
}

.pritom-card:hover .pritom-num {
  color: rgba(255,144,90,0.4);
}

.pritom-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pritom-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}

.pritom-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted-light);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; min-height: auto; }
  .about-photo { padding-left: 0; overflow: visible; display: block; line-height: 0; }
  .about-photo img { width: 100%; height: auto; display: block; object-fit: unset; margin-bottom: -30px; }
  .about-right { padding: 32px 20px 0; }
  .about-text { padding: 32px 24px; border-bottom: none; }
  .ref-result-card { flex: 0 0 300px; }
  .ref-result-card img { height: 360px; }
  .ref-products-grid { grid-template-columns: 1fr; }
  .modal { padding: 48px 28px; }
  .modal-title { font-size: 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .video-split-inner { grid-template-columns: 1fr; gap: 32px; }
  .video-split-section { padding: 60px 24px; }
  .video-bullet { font-size: 16px; }
  .pritom-grid { grid-template-columns: 1fr; gap: 2px; }
  .pritom-num { font-size: 60px; }

  /* Legal pages mobile */
  .legal-content { padding: 80px 24px 60px; }
  .legal-title { font-size: 28px; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 120px 6vw 80px;
  line-height: 1.8;
}

.legal-title {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.legal-date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,144,90,0.15);
}

.legal-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin: 28px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-content p {
  font-size: 15px;
  color: var(--muted-light);
  margin-bottom: 16px;
}

.legal-content strong {
  color: var(--white);
  font-weight: 600;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 15px;
  color: var(--muted-light);
  margin-bottom: 8px;
}

.legal-content hr {
  border: none;
  border-top: 1px solid var(--gray2);
  margin: 40px 0;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 24px 0 32px;
  border-radius: 4px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th {
  background: var(--gray);
  color: var(--white);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--gray2);
  white-space: nowrap;
}

.legal-table td {
  color: var(--muted-light);
  padding: 12px 16px;
  border: 1px solid var(--gray2);
  vertical-align: top;
}

.legal-table tr:hover td {
  background: rgba(255,144,90,0.03);
}

.legal-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray2);
}

.legal-nav a {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 14px;
  border: 1px solid var(--gray2);
  border-radius: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.legal-nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
