/* ══════════════════════════════════════
   VARIABLES — строго из макета заказчика
══════════════════════════════════════ */
:root {
  --blue: #6B8CFF;
  --blue-bg: #EBF0FF;
  --dark: #0D0F14;
  --mid: #6B7280;
  --mint: #EAF5EE;
  --cream: #FFF9F0;
  --gold: #F5C518;
  --red: #FF5A5A;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Onest', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   CONTAINER — твой, сохранён
══════════════════════════════════════ */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
}

/* ══════════════════════════════════════
   HEADER & NAV
══════════════════════════════════════ */
.header-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #EAEAEA;
}

nav {
  width: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 68px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
}

.logo-badge {
  background: var(--blue);
  color: #fff;
  padding: 7px 12px;
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-family: 'Onest', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity .2s;
}

.nav-cta:hover {
  opacity: .85;
}

/* ══════════════════════════════════════
   ANNOUNCE BAR
══════════════════════════════════════ */
.announce-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--blue-bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  min-height: 86vh;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
}

.tag-dark {
  background: var(--dark);
  color: #fff;
}

.tag-outline {
  color: var(--blue);
  border: 1.5px solid var(--blue);
  background: transparent;
}

.hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--blue);
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 500;
  max-width: 520px;
}

.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  font-weight: 600;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 14px;
}

.btn-primary {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 18px 32px;
  font-family: 'Onest', sans-serif;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity .2s;
}

.btn-primary:hover {
  opacity: .85;
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  border-radius: 16px;
  padding: 18px 32px;
  font-family: 'Onest', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity .2s;
}

.btn-secondary:hover {
  opacity: .7;
}

/* Hero photo */
.hero-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(107, 140, 255, 0.1);
  border-radius: 28px;
  border: 2px dashed rgba(107, 140, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
  line-height: 1.6;
}

.hero-name-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.online-dot {
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-name-badge span:last-child {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

/* ══════════════════════════════════════
   STATS STRIP (proof bar)
══════════════════════════════════════ */
.stats-strip-wrap {
  background: #fff;
  border-bottom: 1px solid #F0F0F0;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-strip-item {
  padding: 28px 0;
  text-align: center;
  border-right: 1px solid #F0F0F0;
}

.stat-strip-item:last-child {
  border-right: none;
}

.stat-strip-value {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-strip-label {
  font-size: 13px;
  color: var(--mid);
  font-weight: 500;
}

/* ══════════════════════════════════════
   STATS CARDS
══════════════════════════════════════ */
.stats-cards-section {
  padding: 80px 0;
  background: #fff;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--blue-bg);
  border-radius: 22px;
  padding: 28px 24px;
}

.stat-emoji {
  font-size: 24px;
  margin-bottom: 12px;
  display: block;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stat-value {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14px;
  color: var(--mid);
  font-weight: 500;
  line-height: 1.5;
}

/* ══════════════════════════════════════
   SECTION ОБЩИЕ СТИЛИ
══════════════════════════════════════ */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

.section-title-dark {
  color: var(--dark);
}

/* ══════════════════════════════════════
   FOR WHOM
══════════════════════════════════════ */
.for-whom {
  background: var(--dark);
  padding: 100px 0;
  color: #fff;
}

.for-whom .section-title {
  color: #fff;
}

.whom-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.whom-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.whom-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.whom-title {
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.whom-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   TEACHER
══════════════════════════════════════ */
.teacher-section {
  background: #1A1D26;
  padding: 100px 0;
  color: #fff;
}

.teacher-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.teacher-left .section-label {
  color: var(--blue);
}

.teacher-left .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.teacher-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  font-weight: 500;
}

.teacher-card {
  background: #222630;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.teacher-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.avatar {
  width: 72px;
  height: 72px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.teacher-name {
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  margin-bottom: 5px;
}

.teacher-title {
  font-size: 13px;
  color: var(--blue);
  line-height: 1.4;
}

.teacher-quote {
  border-left: 3px solid var(--blue);
  padding-left: 18px;
  font-style: italic;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.teacher-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.teacher-tag {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

/* ══════════════════════════════════════
   COMPARISON
══════════════════════════════════════ */
.comparison-section {
  background: var(--mint);
  padding: 100px 0;
}

.comparison-section .section-label {
  color: var(--blue);
}

.comparison-section .section-title {
  color: var(--dark);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
}

.compare-card.highlighted {
  border: 2px solid var(--blue);
}

.compare-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mid);
  margin-bottom: 20px;
}

.compare-card.highlighted .compare-title {
  color: var(--blue);
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.compare-item:last-child {
  border-bottom: none;
}

.compare-x {
  color: #D1D5DB;
  font-size: 14px;
  flex-shrink: 0;
}

.compare-check {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   PROGRAM
══════════════════════════════════════ */
.prog-top {
  background: var(--dark);
  padding: 100px 0 60px;
  color: #fff;
}

.prog-top .section-label {
  color: var(--blue);
}

.prog-top .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.prog-top-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 580px;
  font-weight: 500;
}

.prog-body {
  background: var(--mint);
  padding: 60px 0 100px;
}

.program-section .section-label {
  color: var(--blue);
}

.program-section .section-title {
  color: #fff;
}

.program-intro {
  background: #fff;
  border-radius: 18px;
  padding: 22px 28px;
  margin-bottom: 40px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 500;
  max-width: 680px;
}

.program-intro strong {
  color: var(--dark);
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.day-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 18px;
}

.day-list {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.day-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid #F3F4F6;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.55;
}

.day-item:last-child {
  border-bottom: none;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.dot-blue {
  background: var(--blue);
}

.dot-red {
  background: var(--red);
  width: 10px;
  height: 10px;
}

.practice-note {
  text-align: center;
  background: rgba(107, 140, 255, 0.1);
  border-radius: 14px;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 24px;
}

/* ══════════════════════════════════════
   CASES
══════════════════════════════════════ */
.cases-section {
  background: var(--dark);
  padding: 100px 0;
  color: #fff;
}

.cases-section .section-label {
  color: var(--blue);
}

.cases-section .section-title {
  color: #fff;
}

.cases-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

.case-card {
  background: #1E2130;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.before-after {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.ba-img {
  flex: 1;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.ba-icon {
  font-size: 18px;
}

.ba-img span:last-child {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.ba-img.after .ba-icon {
  color: var(--gold);
}

.case-name {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 5px;
  line-height: 1.3;
}

.case-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-header {
  background: var(--dark);
  padding: 100px 0 60px;
  color: #fff;
}

.reviews-header .section-label {
  color: var(--blue);
}

.reviews-header .section-title {
  color: #fff;
  margin-bottom: 0;
}

.reviews-body {
  background: var(--cream);
  padding: 60px 0 100px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border-left: 3px solid var(--blue);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.review-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.review-quotes {
  font-size: 32px;
  color: var(--blue);
  font-family: serif;
  line-height: 1;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  font-weight: 800;
  font-size: 14px;
  color: var(--dark);
}

.review-role {
  font-size: 13px;
  color: var(--mid);
  margin-top: 4px;
  font-weight: 500;
}

/* ══════════════════════════════════════
   NEXT LEVEL
══════════════════════════════════════ */
.next-level {
  background: linear-gradient(135deg, #0D0F14, #1C2040);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.next-level::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 140, 255, 0.1), transparent 70%);
}

.next-level-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.next-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.next-level .section-title {
  color: #fff;
  font-size: 32px;
  margin-bottom: 16px;
}

.accent {
  color: var(--blue);
  font-style: normal;
}

.next-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 36px;
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 18px 32px;
  font-family: 'Onest', sans-serif;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity .2s;
}

.btn-blue:hover {
  opacity: .88;
}

.path-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.path-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.path-step.active {
  border-color: var(--blue);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.path-step:not(.active) .step-num {
  background: rgba(255, 255, 255, 0.12);
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.path-step:not(.active) .step-title {
  color: rgba(255, 255, 255, 0.35);
}

.step-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-section {
  background: var(--blue-bg);
  padding: 100px 0;
}

.pricing-section .section-label {
  color: var(--blue);
}

.pricing-section .section-title {
  color: var(--dark);
  margin-bottom: 40px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.price-card {
  background: #fff;
  border-radius: 28px;
  padding: 36px;
  border: 2px solid rgba(107, 140, 255, 0.12);
  position: relative;
}

.price-card.featured {
  background: var(--dark);
  border-color: var(--dark);
}

.recommend-badge {
  position: absolute;
  top: -15px;
  right: 24px;
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
}

.price-date {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.price-card.featured .price-amount {
  color: #fff;
}

.price-sub {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 28px;
  font-weight: 500;
}

.price-card.featured .price-sub {
  color: rgba(255, 255, 255, 0.4);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.price-card.featured .price-features li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.price-features li:last-child {
  border-bottom: none;
}

.pcheck {
  color: var(--blue);
  font-size: 14px;
  flex-shrink: 0;
}

.btn-price {
  width: 100%;
  border-radius: 16px;
  padding: 18px;
  font-family: 'Onest', sans-serif;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: opacity .2s;
  margin-bottom: 14px;
}

.btn-price:hover {
  opacity: .88;
}

.btn-price-blue {
  background: var(--blue);
  color: #fff;
}

.btn-price-black {
  background: var(--dark);
  color: #fff;
}

.seats-note {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--mid);
}

.seats-note.hot {
  color: var(--red);
}

.price-card.featured .seats-note {
  color: rgba(255, 255, 255, 0.3);
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: #fff;
}

.faq-section .section-label {
  color: var(--blue);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
}

.faq-left .section-title {
  color: var(--dark);
  margin-bottom: 16px;
  font-size: 32px;
}

.faq-hint {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #F3F4F6;
  padding: 22px 0;
}

.faq-q {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-arrow {
  color: #aaa;
  font-size: 18px;
  transition: transform .3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  color: var(--dark);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a-inner {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 500;
  padding-bottom: 4px;
}

/* ══════════════════════════════════════
   CTA / FORM
══════════════════════════════════════ */
.cta-bottom {
  background: var(--dark);
  padding: 120px 0;
  text-align: center;
  color: #fff;
}

.cta-bottom h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-bottom h2 .accent {
  color: var(--blue);
}

.cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-bottom: 36px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 90, 90, 0.15);
  color: var(--red);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
}

.booking-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.form-fields-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.form-field {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  outline: none;
  width: 100%;
  transition: border-color .2s;
}

.form-field::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-field:focus {
  border-color: var(--blue);
}

.stream-pick {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stream-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all .2s;
}

.stream-opt input[type="radio"] {
  display: none;
}

.stream-opt.selected-opt {
  border-color: var(--blue);
  background: rgba(107, 140, 255, 0.1);
  color: #fff;
}

.btn-submit-main {
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  background: var(--blue);
  color: #fff;
  border: none;
  font-family: 'Onest', sans-serif;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: opacity .2s;
  margin-bottom: 12px;
}

.btn-submit-main:hover {
  opacity: .88;
}

.btn-submit-main:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.form-privacy-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 1.6;
}

.messenger-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}

.messenger-btn:hover {
  opacity: .9;
}

.messenger-wa {
  background: #25d366;
  color: #fff;
}

.messenger-tg {
  background: #229ed9;
  color: #fff;
}

.messenger-vb {
  background: #7360f2;
  color: #fff;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #0d0d0d;
  padding: 48px 0 40px;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 18px;
}

.footer-contact {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.social-btn {
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: background .2s;
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 32px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

.footer-nav a:hover {
  color: #fff;
}

/* ══════════════════════════════════════
   STICKY MOBILE FOOTER
══════════════════════════════════════ */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 12px 16px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  z-index: 199;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.sticky-left {
  background: var(--blue-bg);
  color: var(--dark);
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-right {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-family: 'Onest', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════
   MOBILE — max-width: 900px
══════════════════════════════════════ */
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  /* Nav */
  .nav-inner {
    padding: 0 20px;
    height: 58px;
  }

  .nav-right {
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 28px;
    padding-bottom: 100px;
    min-height: auto;
    gap: 24px;
  }

  .hero-image-wrap {
    width: 130px;
    aspect-ratio: 3/4;
    float: right;
    margin: 0 0 12px 14px;
    border-radius: 14px;
  }

  .hero-name-badge {
    display: none;
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: -.5px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-btns {
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 22px;
    font-size: 14px;
    border-radius: 12px;
  }

  /* Stats strip */
  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-strip-item {
    padding: 18px 10px;
  }

  .stat-strip-value {
    font-size: 20px;
  }

  .stat-strip-label {
    font-size: 11px;
  }

  /* Stats cards */
  .stats-cards-section {
    padding: 40px 0;
  }

  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  /* For whom */
  .for-whom {
    padding: 56px 0;
  }

  .whom-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .whom-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 16px;
  }

  .whom-icon {
    font-size: 24px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  /* Section title mobile */
  .section-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  /* Teacher */
  .teacher-section {
    padding: 56px 0;
  }

  .teacher-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .avatar {
    width: 56px;
    height: 56px;
    font-size: 15px;
  }

  /* Comparison */
  .comparison-section {
    padding: 56px 0;
  }

  .comparison-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .compare-card {
    padding: 16px;
    border-radius: 16px;
  }

  .compare-item {
    font-size: 13px;
    padding: 10px 0;
  }

  /* Program */
  .program-section {
    padding: 56px 0;
  }

  .program-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .program-intro {
    font-size: 14px;
    padding: 16px 18px;
  }

  /* Cases */
  .cases-section {
    padding: 56px 0;
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Reviews */
  .reviews-header {
    padding: 56px 0 36px;
  }

  .reviews-body {
    padding: 36px 0 56px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Next level */
  .next-level {
    padding: 56px 0;
  }

  .next-level-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .next-level .section-title {
    font-size: 26px;
  }

  /* Pricing */
  .pricing-section {
    padding: 56px 0;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .price-amount {
    font-size: 40px;
  }

  /* FAQ — все ответы открыты на мобиле */
  .faq-section {
    padding: 56px 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-left {
    position: static;
  }

  .faq-q {
    cursor: default;
    font-size: 15px;
    margin-bottom: 0;
  }

  .faq-arrow {
    display: none;
  }

  .faq-a {
    max-height: none !important;
    overflow: visible;
  }

  .faq-a-inner {
    padding-top: 8px;
    padding-bottom: 4px;
  }

  .faq-item {
    padding: 16px 0;
  }

  /* CTA */
  .cta-bottom {
    padding: 72px 0;
  }

  .cta-bottom h2 {
    font-size: 26px;
  }

  .btn-submit-main {
    font-size: 16px;
    padding: 16px;
  }

  .messenger-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .messenger-btn {
    justify-content: center;
  }

  /* Footer */
  footer {
    padding: 36px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-nav {
    align-items: flex-start;
  }

  /* Sticky footer */
  .sticky-footer {
    display: grid;
  }

  body {
    padding-bottom: 70px;
  }
}