/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: clamp(560px, 90vh, 800px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  padding: 140px 0 88px;
  overflow: hidden;
  background: var(--ink-950);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: kenburns 16s ease-out both;
}
@keyframes kenburns {
  from { transform: scale(1.09); }
  to { transform: scale(1); }
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 45% at 22% 78%, rgba(208, 160, 75, 0.14), transparent 65%),
    linear-gradient(100deg, rgba(14, 18, 38, 0.74) 0%, rgba(14, 18, 38, 0.25) 60%),
    linear-gradient(180deg, rgba(14, 18, 38, 0.5) 0%, rgba(14, 18, 38, 0.42) 45%, rgba(14, 18, 38, 0.97) 92%);
}
.hero .container { position: relative; z-index: 2; }

/* Каскадное появление хиро при загрузке */
.hero .eyebrow, .hero h1, .hero .lede, .hero .cta-row, .hero .stats {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
body.is-loaded .hero .eyebrow { opacity: 1; transform: none; transition-delay: 0.1s; }
body.is-loaded .hero h1 { opacity: 1; transform: none; transition-delay: 0.22s; }
body.is-loaded .hero .lede { opacity: 1; transform: none; transition-delay: 0.38s; }
body.is-loaded .hero .cta-row { opacity: 1; transform: none; transition-delay: 0.52s; }
body.is-loaded .hero .stats { opacity: 1; transform: none; transition-delay: 0.68s; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  max-width: 17ch;
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold-300); }
.hero .lede { font-size: 1.15rem; color: var(--cream-dim); max-width: 52ch; }
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }

.hero .stats {
  display: flex; flex-wrap: wrap;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(208, 160, 75, 0.3);
  max-width: 720px;
}
.hero .stats > div {
  flex: 1 1 160px;
  padding: 22px 28px 0 0;
}
.hero .stats > div + div { padding-left: 28px; border-left: 1px solid rgba(208, 160, 75, 0.3); }
.hero .stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--gold-300);
  line-height: 1.1;
}
.hero .stats span { display: block; color: var(--cream-dim); font-size: 0.88rem; margin-top: 4px; }

/* ================= PAGE HERO (внутренние страницы) ================= */
.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 65% 90% at 80% 20%, rgba(38, 46, 82, 0.6), transparent 65%),
    radial-gradient(ellipse 45% 60% at 8% 100%, rgba(208, 160, 75, 0.08), transparent 60%),
    var(--ink-950);
  color: var(--cream);
  padding: 110px 0 90px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(208, 160, 75, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208, 160, 75, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, black 30%, transparent 100%);
  animation: grid-pan 60s linear infinite;
}
@keyframes grid-pan {
  from { background-position: 0 0; }
  to { background-position: 72px 72px; }
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  max-width: 24ch;
  margin-bottom: 16px;
}
.page-hero .lede { color: var(--cream-dim); }

/* ================= ЭДИТОРИАЛ: что такое Лила ================= */
.editorial-lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.45;
  max-width: 30ch;
}
.editorial-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: var(--border-gold);
}
.editorial-cols p { color: var(--text-600); }
.section--dark .editorial-cols p, .section--darker .editorial-cols p { color: var(--cream-dim); }

/* ================= РАЗВОРОТ с фото ================= */
.split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: center;
}
.split.split--rev { grid-template-columns: 6fr 5fr; }
.split .photo-frame { position: relative; }
.split .photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.6s ease;
}
.split .photo-frame:hover img { transform: scale(1.02); }
.split .photo-frame::after {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: var(--border-gold);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
}

/* ================= НУМЕРОВАННЫЕ ПРИЧИНЫ ================= */
.reasons { counter-reset: reason; margin-top: 8px; }
.reason {
  counter-increment: reason;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid rgba(248, 243, 233, 0.12);
}
.reason:first-child { border-top: 1px solid rgba(248, 243, 233, 0.12); }
.reason::before {
  content: '0' counter(reason);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-500);
  line-height: 1;
}
.reason h4 { font-size: 1.1rem; margin-bottom: 6px; color: var(--cream); }
.reason p { color: var(--cream-dim); font-size: 0.98rem; max-width: 60ch; }

/* ================= КАРТОЧКИ НА ТЁМНОМ ================= */
.dark-card {
  background: rgba(38, 46, 82, 0.45);
  border: 1px solid rgba(208, 160, 75, 0.22);
  border-radius: var(--radius);
  padding: 34px 32px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.dark-card:hover { border-color: rgba(208, 160, 75, 0.5); background: rgba(38, 46, 82, 0.65); }
.dark-card .card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(208, 160, 75, 0.14);
  margin-bottom: 20px;
}
.dark-card .card-icon svg { width: 22px; height: 22px; stroke: var(--gold-300); fill: none; stroke-width: 1.8; }
.dark-card h4 { color: var(--cream); font-size: 1.08rem; margin-bottom: 10px; }
.dark-card p { color: var(--cream-dim); font-size: 0.97rem; }

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

/* ================= КАРТОЧКИ НА СВЕТЛОМ ================= */
.paper-card {
  background: var(--paper);
  border: var(--border-faint);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-card);
  color: var(--text-900);
}
.paper-card h4 { font-size: 1.08rem; margin-bottom: 10px; }
.paper-card p { color: var(--text-600); font-size: 0.97rem; }

/* ================= ОФФЕР-ПОЛОСА (курс, главная) ================= */
.offer-band {
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(208, 160, 75, 0.12), transparent 60%),
    linear-gradient(140deg, var(--ink-800), var(--ink-950));
  border: var(--border-gold);
  border-radius: 20px;
  padding: 56px;
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 40px 90px -40px rgba(14, 18, 38, 0.6);
}
.offer-band h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.offer-band .offer-note { color: var(--cream-dim); }
.offer-tariffs { display: flex; flex-direction: column; }
.offer-tariffs .row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(248, 243, 233, 0.12);
}
.offer-tariffs .row:first-child { border-top: 1px solid rgba(248, 243, 233, 0.12); }
.offer-tariffs .name { font-weight: 600; }
.offer-tariffs .price { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold-300); white-space: nowrap; }

/* ================= ТАРИФЫ (страница курсов) ================= */
.tariff-tabs { display: flex; gap: 10px; margin: 36px 0 8px; flex-wrap: wrap; }
.tariff-tabs button {
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(36, 31, 28, 0.25);
  background: transparent;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--text-900);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tariff-tabs button:hover { border-color: var(--gold-600); color: var(--gold-700); }
.tariff-tabs button[aria-selected="true"] { background: var(--ink-900); border-color: var(--ink-900); color: var(--cream); }

.tariff-card {
  position: relative;
  background: var(--paper);
  border: var(--border-faint);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 18px;
}
.tariff-card::before {
  content: '';
  position: absolute; top: 0; left: 34px; right: 34px; height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.tariff-card h3 { font-size: 1.7rem; }
.tariff-card .price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--ink-900); line-height: 1; }
.tariff-card .price small { display: block; font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; color: var(--text-600); margin-top: 8px; }
.tariff-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tariff-card li { padding-left: 26px; position: relative; font-size: 0.96rem; color: var(--text-600); }
.tariff-card li::before {
  content: '';
  position: absolute; left: 2px; top: 9px;
  width: 7px; height: 7px;
  background: var(--gold-500);
  transform: rotate(45deg);
}
.tariff-card[data-featured="true"] {
  border: 1.5px solid var(--gold-500);
  box-shadow: 0 8px 24px rgba(20, 26, 51, 0.08), 0 28px 64px -24px rgba(208, 160, 75, 0.4);
}
.tariff-card[data-featured="true"]::after {
  content: 'Выбор учениц';
  position: absolute; top: -14px; right: 28px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--ink-950);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 6px 16px; border-radius: 999px;
}

/* ================= FAQ ================= */
.faq-list { margin-top: 40px; max-width: 860px; }
.faq-item { border-bottom: 1px solid rgba(36, 31, 28, 0.14); }
.section--dark .faq-item, .section--darker .faq-item { border-color: rgba(248, 243, 233, 0.14); }
.faq-item button {
  width: 100%;
  min-height: 44px;
  text-align: left;
  background: none; border: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 1.06rem; font-weight: 600;
  color: inherit;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color 0.2s ease;
}
.faq-item button:hover { color: var(--gold-700); }
.section--dark .faq-item button:hover, .section--darker .faq-item button:hover { color: var(--gold-300); }
.faq-item .icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid currentColor; border-radius: 50%;
  font-size: 1.1rem; font-weight: 400;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.faq-item[data-open="true"] .icon { transform: rotate(45deg); opacity: 1; }
.faq-item .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding-right: 64px; }
.faq-item[data-open="true"] .faq-answer { max-height: 800px; }
.faq-answer p { color: var(--text-600); max-width: 66ch; margin: 0 0 16px; }
.faq-answer p:first-child { margin-top: 4px; }
.faq-answer p:last-child { margin-bottom: 30px; }
.section--dark .faq-answer p, .section--darker .faq-answer p { color: var(--cream-dim); }

/* ================= ОТЗЫВЫ ================= */
.swiper.testimonial-swiper { padding: 48px 0 72px; }
.testimonial-swiper .swiper-slide { height: auto; display: flex; }
.testimonial-swiper .swiper-pagination.swiper-pagination { bottom: 22px; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: 16px; }
.text-center .btn-row, .btn-row--center { justify-content: center; }
.testimonial-card {
  background: var(--paper);
  border: var(--border-faint);
  border-radius: var(--radius);
  padding: 36px 32px 30px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  width: 100%;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--gold-500);
  display: block;
  margin-bottom: 18px;
}
.testimonial-card blockquote { font-size: 0.99rem; color: var(--text-600); flex: 1; }
.testimonial-card footer { margin-top: 24px; padding-top: 18px; border-top: var(--border-faint); }
.testimonial-card .name { font-weight: 700; font-size: 0.98rem; }
.testimonial-card .place { color: var(--text-600); font-size: 0.85rem; }
.testimonial-swiper .swiper-pagination-bullet { background: var(--ink-900); opacity: 0.25; }
.testimonial-swiper .swiper-pagination-bullet-active { background: var(--gold-600); opacity: 1; }

/* ================= ИСТОРИИ: Запрос → Итог ================= */
.story-card {
  background: var(--paper);
  border: var(--border-faint);
  border-radius: var(--radius);
  padding: 36px 34px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.story-card .who {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 14px;
}
.story-card h3 { font-size: 1.45rem; margin-bottom: 22px; }
.story-card .phase { position: relative; padding-left: 22px; }
.story-card .phase + .phase { margin-top: 20px; }
.story-card .phase::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px;
  transform: rotate(45deg);
}
.story-card .phase--ask::before { background: rgba(36, 31, 28, 0.25); }
.story-card .phase--result::before { background: var(--gold-500); }
.story-card .phase-label {
  display: block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-600);
  margin-bottom: 4px;
}
.story-card .phase--result .phase-label { color: var(--gold-700); }
.story-card .phase p { font-size: 0.96rem; color: var(--text-600); }
.story-card .phase--result p { color: var(--text-900); }

/* ================= ТАБЛИЦА АССОЦИАЦИИ ================= */
.assoc-filter { display: flex; gap: 14px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.assoc-filter label { font-weight: 600; font-size: 0.95rem; }
.assoc-filter select {
  min-height: 46px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(36, 31, 28, 0.25);
  background: var(--paper);
  font-family: var(--font-body); font-size: 0.95rem;
  cursor: pointer;
}
.assoc-table-scroll {
  overflow-x: auto;
  margin-top: 32px;
  border-radius: var(--radius);
  border: var(--border-faint);
  box-shadow: var(--shadow-card);
}
.assoc-table { width: 100%; min-width: 680px; border-collapse: collapse; background: var(--paper); color: var(--text-900); }
.assoc-table th {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-align: left;
  color: var(--gold-700);
  background: var(--cream);
  padding: 16px 20px;
}
.assoc-table td { text-align: left; padding: 14px 20px; border-top: var(--border-faint); font-size: 0.94rem; }
.assoc-table td a { color: var(--gold-700); text-decoration: none; }
.assoc-table td a:hover { text-decoration: underline; }

/* ================= ЛИД-БЛОК ================= */
.lead-block {
  background:
    radial-gradient(ellipse 60% 80% at 10% 0%, rgba(208, 160, 75, 0.1), transparent 55%),
    linear-gradient(140deg, var(--ink-800), var(--ink-950));
  border: var(--border-gold);
  color: var(--cream);
  border-radius: 20px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: 0 40px 90px -40px rgba(14, 18, 38, 0.6);
}
.lead-block h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }
.lead-block .note { color: var(--cream-dim); }
.lead-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.lead-list li { position: relative; padding-left: 26px; color: var(--cream-dim); font-size: 0.97rem; }
.lead-list li::before {
  content: '';
  position: absolute; left: 2px; top: 9px;
  width: 7px; height: 7px;
  background: var(--gold-500);
  transform: rotate(45deg);
}
.lead-block form { display: flex; flex-direction: column; gap: 14px; }
.lead-block input, .lead-block select {
  min-height: 52px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(248, 243, 233, 0.2);
  background: rgba(248, 243, 233, 0.06);
  color: var(--cream);
  font-family: var(--font-body); font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.lead-block input::placeholder { color: rgba(248, 243, 233, 0.5); }
.lead-block select { cursor: pointer; }
.lead-block select option { color: var(--text-900); background: var(--paper); }
.lead-block input:focus, .lead-block select:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(248, 243, 233, 0.1);
}
.lead-block .btn-primary { margin-top: 6px; border: none; }
.lead-block .privacy { font-size: 0.8rem; color: rgba(248, 243, 233, 0.45); }

/* ================= ПРЕДУПРЕЖДЕНИЕ ================= */
.warning-banner {
  border-left: 2px solid var(--gold-500);
  background: rgba(208, 160, 75, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 26px;
  margin-top: 36px;
  max-width: 720px;
}
.warning-banner p { color: var(--cream-dim); font-size: 0.96rem; }

/* ================= РЕГАЛИИ (об авторе) ================= */
.credentials { list-style: none; display: flex; flex-direction: column; margin-top: 8px; }
.credentials li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 16px 0;
  border-bottom: var(--border-faint);
  font-size: 1.02rem;
}
.credentials li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--gold-500);
  transform: rotate(45deg);
  position: relative; top: -2px;
}

.quote-block {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  max-width: 50ch;
  margin: 0 auto;
  position: relative;
  padding: 36px 44px;
}
.quote-block::before, .quote-block::after {
  content: '';
  position: absolute;
  width: 56px; height: 56px;
  border: 1px solid rgba(208, 160, 75, 0.45);
}
.quote-block::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.quote-block::after { bottom: 0; right: 0; border-left: none; border-top: none; }
.quote-block .qmark {
  display: block;
  font-size: 3.4rem;
  font-style: normal;
  line-height: 0.5;
  color: var(--gold-500);
  margin-bottom: 22px;
}
.quote-block cite { display: block; font-style: normal; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; margin-top: 20px; color: var(--gold-300); }

/* ================= ФОТО-МОЗАИКА ================= */
.mosaic {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
  margin-top: 64px;
}
.mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.mosaic figure:first-child { grid-row: span 2; }
.mosaic img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.mosaic figure:hover img { transform: scale(1.045); }
.mosaic figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 24px 18px;
  background: linear-gradient(180deg, transparent, rgba(14, 18, 38, 0.75));
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ================= ВИДЕО-ОТЗЫВЫ ================= */
.video-card {
  background: var(--paper);
  color: var(--text-900);
  border: var(--border-faint);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.video-card video {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--ink-950);
  display: block;
}
.video-card .body { padding: 20px 24px 22px; }
.video-card .name { font-weight: 700; font-size: 1rem; }
.video-card .place { color: var(--text-600); font-size: 0.85rem; }

/* ================= СКРИНЫ ОТЗЫВОВ ================= */
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.screens-grid a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border-faint);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screens-grid a:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(20, 26, 51, 0.3); }
.screens-grid img { width: 100%; display: block; }
@media (max-width: 920px) {
  .screens-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* ================= КАТАЛОГ ================= */
.product-card {
  background: var(--paper);
  color: var(--text-900);
  border: var(--border-faint);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.product-card .img-wrap { overflow: hidden; }
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-card .body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.product-card p { color: var(--text-600); font-size: 0.95rem; flex: 1; }
.product-card .btn { align-self: flex-start; margin-top: 18px; min-height: 46px; padding: 10px 24px; font-size: 0.92rem; }

.product-card .price-tag {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-700);
  margin: 2px 0 10px;
}
.product-card .price-tag small {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-600);
  margin-left: 10px;
}

.variant-list { margin: 10px 0 4px; }
.variant-list .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(138, 104, 44, 0.28);
  font-size: 0.92rem;
}
.variant-list .row:last-child { border-bottom: 0; }
.variant-list .name { color: var(--text-600); }
.variant-list .price { font-weight: 700; color: var(--text-900); white-space: nowrap; }

.badge-new {
  display: inline-block;
  padding: 1px 8px 2px;
  margin-left: 6px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500));
  color: var(--ink-950);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ================= ГЛАВНОЕ ВИДЕО ОБ ИГРЕ ================= */
.video-feature {
  max-width: 860px;
  margin: 64px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(14, 18, 38, 0.55);
}
.video-poster {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: var(--ink-950);
  cursor: pointer;
}
.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 18, 38, 0.05) 40%, rgba(14, 18, 38, 0.65));
}
.video-poster:hover img { opacity: 1; transform: scale(1.02); }
.video-poster .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 14px 40px rgba(14, 18, 38, 0.5);
  z-index: 1;
  transition: transform 0.3s ease;
}
.video-poster .play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent var(--ink-950);
}
.video-poster:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }
.video-poster .video-caption {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  z-index: 1;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.video-feature iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

/* ================= ВИДЕО-ОТВЕТЫ В FAQ ================= */
.faq-video {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.faq-video video {
  width: 100%;
  max-width: 236px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(138, 104, 44, 0.3);
  background: var(--ink-950);
  box-shadow: 0 16px 36px -18px rgba(14, 18, 38, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .video-poster img,
  .video-poster .play-btn,
  .product-card img { transition: none; }
}

/* ================= ПРАЙС-КАРТЫ (Психология денег) ================= */
.price-card {
  background: var(--paper);
  color: var(--text-900);
  border: var(--border-faint);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.price-card .amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--ink-900); line-height: 1.1; }
.price-card .amount small { display: block; font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--text-600); margin-top: 10px; }
.price-card .btn { margin-top: 24px; }
.price-card[data-featured="true"] { border: 1.5px solid var(--gold-500); }

/* ================= НУМЕРОВАННАЯ ПРОГРАММА ================= */
.program-list { columns: 2; column-gap: 48px; margin-top: 40px; counter-reset: topic; }
.program-list li {
  counter-increment: topic;
  list-style: none;
  break-inside: avoid;
  padding: 14px 0 14px 44px;
  position: relative;
  border-bottom: 1px solid rgba(248, 243, 233, 0.12);
  color: var(--cream-dim);
  font-size: 0.98rem;
}
.program-list li::before {
  content: counter(topic, decimal-leading-zero);
  position: absolute; left: 0; top: 14px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-500);
  font-size: 1.15rem;
}
@media (max-width: 920px) { .program-list { columns: 1; } }

/* ================= ФОТО-ПОЛОСА (параллакс) ================= */
.photo-band {
  height: 46vh;
  min-height: 320px;
  max-height: 520px;
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
}
@media (max-width: 920px) {
  .photo-band { background-attachment: scroll; height: 300px; min-height: 0; }
}

/* ================= КАСКАДНОЕ ПОЯВЛЕНИЕ ГРУПП ================= */
[data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal="stagger"].is-visible > * { opacity: 1; transform: none; }
[data-reveal="stagger"] { opacity: 1; transform: none; }

/* ================= ШИММЕР КНОПКИ ================= */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 130%; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .page-hero::before { animation: none; }
  .hero .eyebrow, .hero h1, .hero .lede, .hero .cta-row, .hero .stats { opacity: 1; transform: none; }
  [data-reveal="stagger"] > * { opacity: 1; transform: none; }
}

/* ================= АДАПТИВ ================= */
@media (max-width: 920px) {
  .hero { min-height: 0; padding: 120px 0 72px; }
  .hero .stats > div { flex-basis: 45%; }
  .mosaic { grid-template-columns: 1fr; grid-template-rows: 280px 220px 220px; margin-top: 44px; }
  .mosaic figure:first-child { grid-row: auto; }
  .editorial-cols { grid-template-columns: 1fr; gap: 24px; }
  .split, .split.split--rev { grid-template-columns: 1fr; gap: 40px; }
  .split .photo-frame img { aspect-ratio: 4 / 3; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .offer-band, .lead-block { grid-template-columns: 1fr; padding: 36px 28px; gap: 36px; }
  .reason { grid-template-columns: 56px 1fr; gap: 18px; padding: 24px 0; }
  .reason::before { font-size: 1.7rem; }
}
@media (min-width: 921px) and (max-width: 1100px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
