/* ===================================
   VARIABLES
   =================================== */
:root {
  /* Premium Palette - HSL based for harmony */
  --bg: hsl(30, 20%, 98%);
  --bg-soft: hsl(30, 15%, 96%);
  --bg-card: #ffffff;
  --accent: hsl(22, 100%, 63%);
  --accent-dark: hsl(22, 80%, 55%);
  --accent-light: hsl(22, 100%, 75%);
  --accent-glow: hsla(22, 100%, 63%, 0.15);
  --text: hsl(0, 0%, 10%);
  --text-muted: hsl(0, 0%, 35%);
  --text-dim: hsl(0, 0%, 55%);
  --border: hsla(0, 0%, 0%, 0.06);
  --shadow: 0 4px 24px hsla(0, 0%, 0%, 0.04);
  --shadow-lg: 0 12px 48px hsla(0, 0%, 0%, 0.08);
  --shadow-accent: 0 8px 32px hsla(22, 100%, 63%, 0.2);
  --radius: 24px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --container: 1180px;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
}

/* ===================================
   RESET & BASE
   =================================== */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #fdfcfb 0%, #f9f7f5 100%);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100vw;
}

/* Entrance Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards;
}

a { 
  color: inherit; 
  text-decoration: none; 
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  max-width: 100%;
}

/* ===================================
   HEADER
   =================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000; /* Ensure strictly above mobile menu */
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: background 0.3s;
}

/* Ensure header stays fixed when menu is open (body lock) */
body[style*="overflow: hidden"] .header {
  position: fixed;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s;
}

.brand:hover { opacity: 0.8; }

.brand-logo-desktop {
  height: 40px;
  width: auto;
  max-width: none;
  max-height: none;
  filter: none;
}

.brand-logo-mobile {
  display: none;
  width: 40px;
  height: 40px;
}

@media (max-width: 980px) {
  .brand-logo-desktop { display: none; }
  .brand-logo-mobile { display: block; }
}

.nav {
  display: flex;
  gap: 8px;
  font-size: 14px;
}

.nav a {
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--text-muted);
  transition: all 0.2s;
  white-space: nowrap;
}

/* Mobile Menu Overlay */
/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 90px; /* Increased to ensure first item is visible */
  background: var(--bg);
  z-index: 990; /* High z-index but below header */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 40px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
  height: 100%;
  overflow-y: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  color: var(--accent);
}

.mobile-cta {
  margin-top: auto;
  width: 100%;
  padding-bottom: 40px;
}

.mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Burger Button Animation */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 10px;
  transition: background 0.2s;
  z-index: 101;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  margin: 0 auto;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Open State for Burger */
.header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
  .brand-logo-desktop { display: none; }
  .brand-logo-mobile { display: block; }
  .nav { display: none; }
  .header-cta .btn-secondary { display: none; }
  .menu-toggle { display: flex; }
}

.nav a:hover { 
  background: var(--bg-soft); 
  color: var(--text); 
}

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle:hover { background: var(--bg-soft); }

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}

.btn:active { transform: translateY(1px); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-md { padding: 13px 24px; font-size: 15px; }
.btn-lg { 
  padding: 18px 36px; 
  font-size: 17px; 
  letter-spacing: -0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-primary:hover { 
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 8px 28px rgba(255, 140, 66, 0.3);
  transform: translateY(-1px);
}

.btn-secondary:hover { 
  background: var(--bg-soft); 
  border-color: rgba(0,0,0,0.12);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 700;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.15);
}

.h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 24px 0;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--text);
}

.h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.12;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 24px 0;
}

.sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 36px 0;
  max-width: 80ch;
}

.micro {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 14px;
  line-height: 1.5;
}

/* ===================================
   SECTIONS
   =================================== */
section {
  padding: 72px 0;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-top: 1px solid var(--border);
}

/* ===================================
   HERO SECTION v3.2 (С„РёРЅР°Р»СЊРЅР°СЏ РІРµСЂСЃРёСЏ)
   =================================== */

.hero {
  padding: 100px 0 80px;
  background: radial-gradient(circle at top right, hsla(22, 100%, 63%, 0.05), transparent),
              radial-gradient(circle at bottom left, hsla(30, 20%, 98%, 1), hsla(30, 20%, 95%, 1));
  position: relative;
  overflow: hidden;
}

/* Р”РµРєРѕСЂР°С‚РёРІРЅС‹Р№ С„РѕРЅ */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* === РћРЎРќРћР’РќРђРЇ РЎР•РўРљРђ (РєРѕРЅС‚РµРЅС‚ + С„РѕС‚Рѕ) === */
.hero-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

/* LEFT: РљРѕРЅС‚РµРЅС‚ */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Р—Р°РіРѕР»РѕРІРѕРє */
.hero .h1 {
  margin-bottom: 0;
  line-height: 1.15;
}

.hero-subtitle {
  color: var(--accent);
  font-weight: 800;
}

/* Lead - Р°РєС†РµРЅС‚С‹ */
.hero .lead {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.65;
}

.hero .lead .hero-before {
  color: var(--text-muted);
  font-style: italic;
}

.hero .lead .hero-result {
  color: var(--accent);
  font-weight: 800;
}

.hero .lead .hero-goal {
  color: var(--accent-dark);
  font-weight: 700;
}

/* CTA РєРЅРѕРїРєРё - РћР”РРќРђРљРћР’Р«Р• Р РђР—РњР•Р Р« */
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* RIGHT: РР·РѕР±СЂР°Р¶РµРЅРёРµ (desktop) */
.hero-image-desktop {
  position: relative;
}

.hero-image-mobile {
  display: none;
}

.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 140, 66, 0.2);
  transition: all 0.3s ease;
}

.hero-img:hover {
  box-shadow: 0 24px 64px rgba(255, 140, 66, 0.25);
  border-color: rgba(255, 140, 66, 0.4);
  transform: translateY(-4px);
}

/* === Р“Р РР” РЎРўРђРўРРЎРўРРљР (РћР”РќРђ РћР‘РЄР•Р”РРќРЃРќРќРђРЇ РЇР§Р•Р™РљРђ РЅР° desktop) === */
.hero-stats-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 140, 66, 0.15);
  transition: all 0.3s ease;
}

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

.hero-stat:hover {
  background: hsla(22, 100%, 63%, 0.06);
}

.hero-stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.4;
}

/* === РњРРљР Рћ-РўР•РљРЎРў === */
.hero-micro {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 70ch;
  margin: 0 auto;
}

.hero-micro strong {
  color: var(--accent-dark);
  font-weight: 700;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* РџР›РђРќРЁР•Рў */
@media (max-width: 980px) {
  .hero {
    padding: 60px 0 50px;
  }

  .hero-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .hero-img {
    aspect-ratio: 16 / 9;
  }

  /* CTA РєРЅРѕРїРєРё РѕРґРёРЅР°РєРѕРІС‹Рµ РЅР° РїР»Р°РЅС€РµС‚Рµ */
  .hero-cta {
    gap: 12px;
  }

  /* РЎС‚Р°С‚РёСЃС‚РёРєР° РѕСЃС‚Р°С‘С‚СЃСЏ РіРѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅРѕР№ */
  .hero-stats-grid {
    flex-direction: row;
  }

  .hero-stat {
    padding: 24px 16px;
  }

  .hero-stat-number {
    font-size: 40px;
  }

  .hero-stat-label {
    font-size: 13px;
  }
}

/* РњРћР‘РР›РљРђ */
@media (max-width: 640px) {
  .hero {
    padding: 50px 0 40px;
  }

  .hero-main-grid {
    gap: 24px;
    margin-bottom: 32px;
  }

  .hero-content {
    gap: 20px;
  }

  /* РљР°СЂС‚РёРЅРєР° РЅР° РјРѕР±РёР»РєРµ - РїРѕСЃР»Рµ Р·Р°РіРѕР»РѕРІРєР° */
  .hero-image-mobile {
    display: block;
    margin: 0 -20px;
    order: 2;
  }

  .hero-image-desktop {
    display: none;
  }

  .hero-img {
    aspect-ratio: 1 / 1;
    border-radius: 0;
  }

  .hero .lead {
    font-size: 16px;
    order: 3;
  }

  .hero-cta {
    flex-direction: column;
    order: 4;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* РЎРўРђРўРРЎРўРРљРђ: РІРµСЂС‚РёРєР°Р»СЊРЅР°СЏ, Р¦Р•РќРўР РР РћР’РђРќРќРђРЇ */
  .hero-stats-grid {
    flex-direction: column;
    padding: 24px 32px;
    margin-bottom: 24px;
    align-items: center;
  }

  .hero-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 140, 66, 0.15);
    text-align: center;
    width: 100%;
    max-width: 280px;
  }

  .hero-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .hero-stat:first-child {
    padding-top: 0;
  }

  .hero-stat:hover {
    background: none;
  }

  .hero-stat-number {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 0;
    flex-shrink: 0;
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
    line-height: 1.3;
  }

  .hero-micro {
    font-size: 14px;
  }
}




/* ===================================
   GRID & CARDS
   =================================== */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--accent-light);
}

.card h3 {
  margin: 0 0 12px 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.card ul {
  margin: 14px 0 0 0;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.75;
}

.card ul li {
  margin: 8px 0;
}

.card-accent {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 160, 96, 0.08));
  border: 2px solid rgba(255, 140, 66, 0.3);
}

.card-accent h3 {
  color: var(--accent-dark);
}

.pill {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 140, 66, 0.12);
  border: 1px solid rgba(255, 140, 66, 0.25);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ===================================
   CTA BOX
   =================================== */
.cta-box {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(255, 160, 96, 0.08));
  border: 2px solid rgba(255, 140, 66, 0.3);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  margin: 48px 0;
  box-shadow: 0 12px 40px rgba(255, 140, 66, 0.15);
}

.cta-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text);
}

.cta-box p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 24px 0;
  line-height: 1.7;
}

.cta-box .btn {
  min-width: 240px;
}

/* ===================================
   ACCENT BOX
   =================================== */
.accent-box {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.08), rgba(255, 160, 96, 0.06));
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: 14px;
  padding: 24px 28px;
  margin: 32px 0;
}

.accent-box p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* ===================================
   QUOTE
   =================================== */
.quote {
  margin: 40px 0 0;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  font-size: 18px;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.1;
  font-family: serif;
  line-height: 1;
}

.quote-author {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===================================
   STATS
   =================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.stat {
  text-align: center;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===================================
   CHECKOUT COMPONENTS
   =================================== */
.checkout-price-card {
  margin: 24px 0;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.12), rgba(255, 160, 96, 0.08));
  border: 2px solid rgba(255, 140, 66, 0.4);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.price-old {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
  margin-bottom: 8px;
}

.price-current {
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.badge-discount {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px var(--accent-glow);
}

.price-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.installment-text {
  margin: 16px 0 0 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.checkout-urgency {
  margin-top: 24px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.checkout-urgency p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

/* ===================================
   LIVE SESSIONS COMPONENTS
   =================================== */
.live-sessions-cta {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(255, 160, 96, 0.1)) !important;
  border: 2px solid rgba(255, 140, 66, 0.5) !important;
}

/* ===================================
   LIVE SCHEDULE
   =================================== */
.live-schedule {
  margin-top: 40px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.live-schedule-title {
  margin: 0 0 24px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.live-schedule-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-soft);
  border-radius: 12px;
  border: 1px solid rgba(255, 140, 66, 0.1);
  transition: all 0.3s ease;
}

.live-schedule-list li:hover {
  background: #fff;
  border-color: rgba(255, 140, 66, 0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.schedule-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(255, 140, 66, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.schedule-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-info strong {
  font-size: 16px;
  color: var(--text);
}

.schedule-date {
  font-size: 14px;
  color: var(--accent-dark);
  font-weight: 600;
}

.schedule-topic {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .live-schedule {
    padding: 24px;
    margin-top: 32px;
  }
  .live-schedule-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===================================
   SLIDERS (WHO SECTION)
   =================================== */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 40px auto;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  transition: transform 0.4s ease;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.slider-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.slider-slide:hover .slider-img {
  transform: scale(1.05);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.slider-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 6px 24px rgba(255, 140, 66, 0.3);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev { left: -24px; }
.slider-btn-next { right: -24px; }

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

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

.slider-dot:hover {
  background: var(--accent);
  opacity: 0.7;
}

/* ===================================
   MIRROR SECTION
   =================================== */
.mirror-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 32px;
}

.mirror-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mirror-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.mirror-image-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.mirror-image-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.mirror-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.mirror-image-item:hover .mirror-img {
  transform: scale(1.08);
}

.mirror-slider-wrapper,
.mirror-slider-dots {
  display: none;
}
/* ===================================
   MIRROR SECTION - Р”РћРџРћР›РќРРўР•Р›Р¬РќР«Р• РђРљР¦Р•РќРўР« v2.0
   =================================== */

/* РљР°РІС‹С‡РєРё РІ РїРѕРґР·Р°РіРѕР»РѕРІРєРµ */
#mirror .sub .mirror-quote {
  color: var(--accent-dark);
  font-style: italic;
  font-weight: 600;
}

/* Р“Р»Р°РІРЅС‹Р№ С…Р°Р№Р»Р°Р№С‚ "РІРµСЂРЅСѓС‚СЊ РѕРїРѕСЂСѓ" */
#mirror .sub .mirror-highlight {
  color: var(--accent);
  font-weight: 800;
  position: relative;
  padding: 0 4px;
  background: linear-gradient(120deg, rgba(255, 140, 66, 0.15) 0%, rgba(255, 140, 66, 0.15) 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 85%;
}

/* РњС‹СЃР»Рё РІ РїРµСЂРІРѕР№ РєР°СЂС‚РѕС‡РєРµ (РїСЂРёРіР»СѓС€С‘РЅРЅС‹Рµ) */
#mirror .mirror-thought {
  color: var(--text-muted);
  font-style: italic;
}

#mirror .mirror-thought-dim {
  color: var(--text-dim);
  font-style: italic;
}

/* Р РµР·СѓР»СЊС‚Р°С‚ "РїСЂРѕС„РµСЃСЃРёРѕРЅР°Р»РѕРј" Рё "РЇ СЃРїСЂР°РІР»СЋСЃСЊ" */
#mirror .mirror-result {
  color: var(--accent);
  font-weight: 700;
}

/* РђРєС†РµРЅС‚РЅР°СЏ РєР°СЂС‚РѕС‡РєР° (РІС‚РѕСЂР°СЏ) */
#mirror .card-accent {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.08), rgba(255, 160, 96, 0.05));
  border: 2px solid rgba(255, 140, 66, 0.3);
}

#mirror .card-accent h3 {
  color: var(--accent-dark);
}

#mirror .card-accent strong {
  color: var(--accent-dark);
  font-weight: 700;
}

/* РђРєС†РµРЅС‚РЅС‹Р№ Р±Р»РѕРє РІРЅРёР·Сѓ */
#mirror .accent-box .mirror-result {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.05em;
}

#mirror .accent-box .mirror-quote {
  color: var(--accent-dark);
  font-style: italic;
  font-weight: 600;
}


/* ===================================
   PROGRAM SECTION
   =================================== */
.program-gallery-container {
  position: relative;
  width: 100%;
}

.program-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.program-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.program-gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.program-gallery-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.program-gallery-item:hover .program-gallery-img {
  transform: scale(1.08);
}

.program-slider-wrapper,
.program-slider-dots {
  display: none;
}
/* ===================================
   PROGRAM SECTION - Р”РћРџРћР›РќРРўР•Р›Р¬РќР«Р• РђРљР¦Р•РќРўР« v2.0
   =================================== */

/* Р“Р»Р°РІРЅС‹Р№ С…Р°Р№Р»Р°Р№С‚ РІ Р·Р°РіРѕР»РѕРІРєРµ "РІСЃС‚СЂР°РёРІР°РµС‚СЃСЏ РІ СЂСѓРєРё" */
#program .h2 .program-highlight {
  color: var(--accent);
  font-weight: 800;
  font-style: italic;
}

/* РљР°РІС‹С‡РєРё РІ РїРѕРґР·Р°РіРѕР»РѕРІРєРµ */
#program .sub .program-quote-dim {
  color: var(--text-dim);
  font-style: italic;
  font-weight: 400;
}

/* Р РµР·СѓР»СЊС‚Р°С‚ "РїРѕ РїР°РјСЏС‚Рё, РїРѕ Р»РѕРіРёРєРµ Рё РїРѕ РѕС‰СѓС‰РµРЅРёСЋ" */
#program .sub .program-result {
  color: var(--accent-dark);
  font-weight: 700;
}

/* РљР°РІС‹С‡РєРё РІ РєР°СЂС‚РѕС‡РєР°С… (Р°РєС†РµРЅС‚РЅС‹Рµ) */
#program .card .program-quote {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

/* РџСЂРѕР±Р»РµРјС‹ РІ РєР°РІС‹С‡РєР°С… */
#program .card .program-problem {
  color: var(--text-muted);
  font-style: italic;
}

/* Р–РёСЂРЅС‹Рµ РєР»СЋС‡РµРІС‹Рµ СЃР»РѕРІР° РІ РєР°СЂС‚РѕС‡РєР°С… */
#program .card strong {
  color: var(--accent-dark);
  font-weight: 700;
}

/* CTA-Р±Р»РѕРє - Р°РєС†РµРЅС‚ РЅР° РєРѕР»РёС‡РµСЃС‚РІРµ */
#program .cta-box strong {
  color: var(--accent);
  font-weight: 700;
}

/* РђРґР°РїС‚РёРІ РґР»СЏ РјРѕР±РёР»СЊРЅС‹С… */
@media (max-width: 640px) {
  #program .h2 .program-highlight {
    font-size: 1em;
  }
}

/* ===================================
   AUTHOR SECTION v2.0
   =================================== */

/* Р“Р»Р°РІРЅС‹Р№ С…Р°Р№Р»Р°Р№С‚ "РєР°Рє РѕР±СЉСЏСЃРЅСЏРµС‚ РїСЂРµРїРѕРґР°РІР°С‚РµР»СЊ" */
#author .sub .author-highlight {
  color: var(--accent);
  font-weight: 800;
  position: relative;
  padding: 0 4px;
  background: linear-gradient(120deg, rgba(255, 140, 66, 0.15) 0%, rgba(255, 140, 66, 0.15) 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 85%;
}

/* Р РµР·СѓР»СЊС‚Р°С‚ "С‚РµРїРµСЂСЊ РїРѕРЅСЏС‚РЅРѕ, С‡С‚Рѕ РґРµР»Р°С‚СЊ" */
#author .sub .author-result {
  color: var(--accent-dark);
  font-style: italic;
  font-weight: 700;
}

#author .sub strong {
  color: var(--text);
  font-weight: 700;
}

/* РљР°СЂС‚РѕС‡РєРё - РЅРµРїСЂР°РІРёР»СЊРЅС‹Р№ РїРѕРґС…РѕРґ */
#author .card .author-wrong {
  color: var(--text-muted);
  font-style: italic;
  text-decoration: line-through;
}

/* РљР°СЂС‚РѕС‡РєРё - РїСЂР°РІРёР»СЊРЅС‹Р№ РїРѕРґС…РѕРґ */
#author .card .author-right {
  color: var(--accent);
  font-weight: 700;
  font-style: italic;
}

/* РљР°СЂС‚РѕС‡РєРё - РєР»СЋС‡РµРІС‹Рµ СЃР»РѕРІР° */
#author .card strong {
  color: var(--accent-dark);
  font-weight: 700;
}

/* Р“СЂРёРґ Р°РІС‚РѕСЂР° */
.author-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.author-content {
  display: flex;
  flex-direction: column;
}

/* РР·РѕР±СЂР°Р¶РµРЅРёРµ Р°РІС‚РѕСЂР° - РРЎРџР РђР’Р›Р•РќРћ Р”Р›РЇ РњРћР‘РР›РљР */
.author-image-wrapper {
  position: relative;
  width: 100%;
}

.author-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 140, 66, 0.2);
  transition: all 0.3s ease;
}

.author-image:hover {
  box-shadow: 0 24px 64px rgba(255, 140, 66, 0.25);
  border-color: rgba(255, 140, 66, 0.4);
  transform: translateY(-4px);
}

/* Р¦РёС‚Р°С‚Р° */
.quote {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.08), rgba(255, 160, 96, 0.05));
  border-left: 4px solid var(--accent);
  padding: 28px 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.author-quote-text {
  display: block;
  margin-bottom: 16px;
}

.author-quote-highlight {
  color: var(--accent);
  font-weight: 700;
  font-style: normal;
}

.quote-author {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-dark);
  font-style: normal;
  margin-top: 12px;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* РџР›РђРќРЁР•Рў */
@media (max-width: 980px) {
  .author-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .author-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    margin: 0 auto;
  }

  .quote {
    font-size: 17px;
    padding: 24px 28px;
  }
}

/* РњРћР‘РР›РљРђ - РРЎРџР РђР’Р›Р•РќРћ */
@media (max-width: 640px) {
  .author-grid {
    gap: 24px;
  }

  /* РРЎРџР РђР’Р›Р•РќРР•: РёР·РѕР±СЂР°Р¶РµРЅРёРµ 100% С€РёСЂРёРЅС‹ РЅР° РјРѕР±РёР»РєРµ */
  .author-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .author-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  .quote {
    font-size: 16px;
    padding: 20px 24px;
    line-height: 1.65;
  }

  .quote-author {
    font-size: 14px;
  }

  #author .sub .author-highlight {
    font-size: 1em;
    padding: 0 2px;
  }
}


/* ===================================
   FAQ
   =================================== */
details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

details:hover {
  border-color: rgba(255, 140, 66, 0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

details[open] {
  border-color: var(--accent);
  background: linear-gradient(to bottom, rgba(255, 140, 66, 0.02), var(--bg-card));
}

details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  outline: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

details summary::marker,
details summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
}

.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.25);
  transition: all 0.3s ease;
}

details:hover .faq-icon {
  background: rgba(255, 140, 66, 0.15);
  border-color: rgba(255, 140, 66, 0.4);
}

details[open] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(180deg);
}

.icon-plus,
.icon-minus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  stroke: var(--accent);
}

details[open] .icon-plus,
details[open] .icon-minus {
  stroke: #fff;
}

.icon-plus {
  opacity: 1;
}

.icon-minus {
  opacity: 0;
}

details[open] .icon-plus {
  opacity: 0;
}

details[open] .icon-minus {
  opacity: 1;
}

details p {
  margin: 16px 0 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 15px;
}

details[open] p {
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   FOOTER
   =================================== */
.final {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  position: relative;
}

.final::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 140, 66, 0.08), transparent 65%);
  pointer-events: none;
}

.final-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* TABLET */
@media (max-width: 980px) {
  .nav { display: none; }
  .header-cta .btn-secondary { display: none; }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero-image-desktop {
    position: static;
  }
  .hero-img {
    min-height: 350px;
  }
  .h1 {
    font-size: 34px;
  }
  
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  
  .slider-slide {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  .slider-btn-prev { left: -12px; }
  .slider-btn-next { right: -12px; }
  
  .mirror-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mirror-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .program-gallery-grid {
    display: none;
  }
  .program-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
  }
  .program-slider-track {
    display: flex;
    gap: 16px;
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .program-slider-slide {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
    transition: transform 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .program-slider-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
  }
  .program-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .program-slider-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }
  .program-slider-btn-prev { left: -12px; }
  .program-slider-btn-next { right: -12px; }
  .program-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }
  .program-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .program-slider-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 5px;
  }
  
  .author-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .author-image {
    aspect-ratio: 4 / 5;
  }
  
  .final-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  section { padding: 56px 0; }
  
  .brand-text { display: none; }
  .brand-logo {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
  }
  .header-cta { margin-left: auto; }
  .btn-sm { padding: 9px 16px; font-size: 13px; }
  .menu-toggle { display: flex; }
  .header-inner { padding: 10px 0; }
  
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-mobile {
    display: block;
    order: 2;
    margin: 20px 0;
  }
  .hero-image-mobile .hero-img {
    min-height: 320px;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }
  .hero-image-desktop { display: none; }
  .hero-content {
    display: flex;
    flex-direction: column;
  }
  .eyebrow { order: 0; }
  .h1 {
    order: 1;
    margin-bottom: 0;
    font-size: 32px;
  }
  .hero-image-mobile { order: 2; }
  .lead { order: 3; font-size: 16px; }
  .hero-list { order: 4; }
  .hero-cta {
    order: 5;
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .micro { order: 6; }
  
  .card { padding: 20px; }
  
  .cta-box { padding: 24px; }
  .cta-box h3 { font-size: 24px; }
  .cta-box .btn { min-width: 100%; }
  
  .slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .slider-track { gap: 0; }
  .slider-btn {
    width: 36px;
    height: 36px;
  }
  .slider-btn-prev { left: 8px; }
  .slider-btn-next { right: 8px; }
  .slider-img { aspect-ratio: 4 / 5; }
  
  .mirror-images-grid { display: none; }
  .mirror-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    margin-top: 24px;
  }
  .mirror-slider-track {
    display: flex;
    gap: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .mirror-slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
    transition: transform 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .mirror-slider-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
  }
  .mirror-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .mirror-slider-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }
  .mirror-slider-btn-prev { left: 8px; }
  .mirror-slider-btn-next { right: 8px; }
  .mirror-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .mirror-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .mirror-slider-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 5px;
  }
  
  .program-slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .program-slider-track { gap: 0; }
  .program-slider-btn {
    width: 36px;
    height: 36px;
  }
  .program-slider-btn-prev { left: 8px; }
  .program-slider-btn-next { right: 8px; }
  
  .author-image {
    aspect-ratio: 1 / 1;
  }
  .author-image-wrapper {
    margin: 0 auto;
    max-width: 320px;
  }
  .author-image-wrapper::before {
    width: 80px;
    height: 80px;
    top: -10px;
    right: -10px;
  }
  
  details { padding: 14px 16px; }
  .faq-question { font-size: 15px; }
  .faq-icon {
    width: 24px;
    height: 24px;
  }
  .icon-plus,
  .icon-minus {
    width: 16px;
    height: 16px;
  }
  details p { font-size: 14px; }
}

@media (max-width: 400px) {
  .brand-logo {
    width: 36px;
    height: 36px;
    max-width: 36px;
    max-height: 36px;
  }
  .btn-sm { padding: 8px 14px; font-size: 12px; }
  .hero-image-mobile .hero-img { min-height: 280px; }
  .h1 { font-size: 28px; }
}
/* ===================================
   CURRICULUM SECTION v2.0
   =================================== */

/* === РўРђР‘Р« (DESKTOP Р РџР›РђРќРЁР•Рў) === */
.curriculum-tabs-wrapper {
  margin-top: 40px;
}

.curriculum-tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.curriculum-tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  text-align: left;
}

.curriculum-tab-btn:hover {
  border-color: rgba(255, 140, 66, 0.4);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.curriculum-tab-btn.active {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.12), rgba(255, 160, 96, 0.08));
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.2);
}

.tab-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 66, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.curriculum-tab-btn.active .tab-number {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.tab-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.tab-title small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.curriculum-tabs-content {
  position: relative;
}

.curriculum-tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.curriculum-tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.curriculum-tab-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.curriculum-lessons h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text);
}

.curriculum-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 24px 0;
}

.curriculum-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.curriculum-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.2s ease;
}

/* === РРќРўР•Р РђРљРўРР’РќР«Р• РЈР РћРљР === */
.curriculum-lesson-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

.curriculum-lesson-item:hover {
  border-color: rgba(255, 140, 66, 0.3);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transform: translateX(4px);
}

.curriculum-lesson-item.active {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.12), rgba(255, 160, 96, 0.08));
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.2);
}

.curriculum-lesson-item.active .lesson-number {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
}

.curriculum-lesson-item.active .lesson-title {
  color: var(--accent-dark);
  font-weight: 600;
}

.lesson-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  background: rgba(255, 140, 66, 0.1);
  padding: 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.lesson-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
  transition: all 0.3s ease;
}

.lesson-duration {
  font-size: 13px;
  color: var(--text-dim);
  white-space: nowrap;
}

.curriculum-summary {
  margin-top: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.08), rgba(255, 160, 96, 0.06));
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: 12px;
  font-size: 15px;
  color: var(--text);
}

.curriculum-summary strong {
  color: var(--accent-dark);
}

.curriculum-image {
  position: sticky;
  top: 100px;
}

/* Desktop/РїР»Р°РЅС€РµС‚: РІРµСЂС‚РёРєР°Р»СЊРЅРѕРµ 3:4 */
.curriculum-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center; /* Р¦РµРЅС‚СЂР°Р»СЊРЅС‹Р№ РєСЂРѕРї */
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 140, 66, 0.15);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.curriculum-img:hover {
  box-shadow: 0 20px 60px rgba(255, 140, 66, 0.2);
  transform: translateY(-4px);
  border-color: rgba(255, 140, 66, 0.3);
}

/* РђРЅРёРјР°С†РёСЏ СЃРјРµРЅС‹ РёР·РѕР±СЂР°Р¶РµРЅРёСЏ */
@keyframes imageSwitch {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.curriculum-img.switching {
  animation: imageSwitch 0.4s ease;
}

/* === РђРљРљРћР Р”Р•РћРќ (РњРћР‘РР›РљРђ) === */
.curriculum-accordion {
  display: none;
  margin-top: 32px;
}

.curriculum-accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.curriculum-accordion-item:hover {
  border-color: rgba(255, 140, 66, 0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.curriculum-accordion-item[open] {
  border-color: var(--accent);
  background: linear-gradient(to bottom, rgba(255, 140, 66, 0.02), var(--bg-card));
}

.curriculum-accordion-item summary {
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.curriculum-accordion-item summary::marker,
.curriculum-accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-number {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 66, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.curriculum-accordion-item[open] .accordion-number {
  background: var(--accent);
  color: #fff;
}

.accordion-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.accordion-title strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.accordion-title small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.accordion-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid rgba(255, 140, 66, 0.25);
  transition: all 0.3s ease;
}

.curriculum-accordion-item:hover .accordion-icon {
  background: rgba(255, 140, 66, 0.15);
  border-color: rgba(255, 140, 66, 0.4);
}

.curriculum-accordion-item[open] .accordion-icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(180deg);
}

.accordion-icon .icon-plus,
.accordion-icon .icon-minus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  stroke: var(--accent);
}

.curriculum-accordion-item[open] .accordion-icon .icon-plus,
.curriculum-accordion-item[open] .accordion-icon .icon-minus {
  stroke: #fff;
}

.accordion-icon .icon-plus {
  opacity: 1;
}

.accordion-icon .icon-minus {
  opacity: 0;
}

.curriculum-accordion-item[open] .accordion-icon .icon-plus {
  opacity: 0;
}

.curriculum-accordion-item[open] .accordion-icon .icon-minus {
  opacity: 1;
}

.accordion-content {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  animation: fadeInDown 0.3s ease;
}

/* Mobile: РєРІР°РґСЂР°С‚ 1:1, С†РµРЅС‚СЂР°Р»СЊРЅС‹Р№ РєСЂРѕРї */
.curriculum-accordion-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center; /* Р¦РµРЅС‚СЂР°Р»СЊРЅС‹Р№ РєСЂРѕРї */
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: opacity 0.4s ease;
}

.curriculum-accordion-img.switching {
  animation: imageSwitch 0.4s ease;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* РџР›РђРќРЁР•Рў */
@media (max-width: 980px) {
  .curriculum-tabs-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .curriculum-tab-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .curriculum-img {
    aspect-ratio: 4 / 5; /* Р§СѓС‚СЊ С€РёСЂРµ РЅР° РїР»Р°РЅС€РµС‚Рµ */
  }
}

/* РњРћР‘РР›РљРђ */
@media (max-width: 640px) {
  /* РЎРєСЂС‹РІР°РµРј С‚Р°Р±С‹ */
  .curriculum-tabs-wrapper {
    display: none;
  }

  /* РџРѕРєР°Р·С‹РІР°РµРј Р°РєРєРѕСЂРґРµРѕРЅ */
  .curriculum-accordion {
    display: block;
  }
}
/* ===================================
   VIDEO PREVIEW SECTION v1.0
   =================================== */

#video-preview {
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
  position: relative;
  overflow: hidden;
}

.video-preview-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

/* === LEFT: РљРћРќРўР•РќРў === */
.video-preview-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-preview-content .h2 {
  margin-bottom: 8px;
}

.video-preview-content .lead {
  margin-bottom: 12px;
}

.video-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.video-features li:hover {
  border-color: rgba(255, 140, 66, 0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transform: translateX(4px);
}

.feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 66, 0.1);
  border-radius: 10px;
}

.feature-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.feature-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

/* === RIGHT: Р’РР”Р•Рћ === */
.video-preview-player {
  position: relative;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 140, 66, 0.2);
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.08), rgba(255, 160, 96, 0.06));
  transition: all 0.3s ease;
}

.video-container:hover {
  box-shadow: 0 24px 64px rgba(255, 140, 66, 0.25);
  border-color: rgba(255, 140, 66, 0.4);
  transform: translateY(-4px);
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

.video-container video {
  object-fit: cover;
}

/* РњРµС‚РєР° "Р¤СЂР°РіРјРµРЅС‚ СѓСЂРѕРєР°" */
.video-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 140, 66, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 10;
}

.video-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* ===================================
   RESPONSIVE
   =================================== */

/* РџР›РђРќРЁР•Рў */
@media (max-width: 980px) {
  .video-preview-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .video-preview-content {
    order: 1;
  }

  .video-preview-player {
    order: 2;
  }
}

/* РњРћР‘РР›РљРђ */
@media (max-width: 640px) {
  .video-preview-wrapper {
    gap: 32px;
  }

  .video-features li {
    padding: 12px 14px;
  }

  .feature-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .feature-text {
    font-size: 14px;
  }

  .video-badge {
    top: 12px;
    left: 12px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .video-badge svg {
    width: 14px;
    height: 14px;
  }
}
/* ===================================
   DETAILS SECTION v2.0
   =================================== */

#details {
  background: var(--bg);
  padding: 80px 0;
}

#details .sub {
  max-width: 85ch;
  margin: 0 auto 48px auto;
  text-align: center;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.detail-card:hover {
  border-color: rgba(255, 140, 66, 0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

.detail-card-accent {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.08), rgba(255, 160, 96, 0.05));
  border: 2px solid rgba(255, 140, 66, 0.3);
}

.detail-card-accent:hover {
  border-color: rgba(255, 140, 66, 0.5);
  box-shadow: 0 12px 32px rgba(255, 140, 66, 0.15);
}

.detail-icon {
  font-size: 40px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 66, 0.1);
  border-radius: 14px;
  margin-bottom: 20px;
}

.detail-card-accent .detail-icon {
  background: rgba(255, 140, 66, 0.2);
}

.detail-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text);
  line-height: 1.3;
}

.detail-card p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  color: var(--text-muted);
}

.details-note {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.06), rgba(255, 160, 96, 0.04));
  border: 1px solid rgba(255, 140, 66, 0.2);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
}

.details-note p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  color: var(--text-muted);
  max-width: 80ch;
  margin: 0 auto;
}

.details-note strong {
  color: var(--accent-dark);
  font-weight: 700;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* РџР›РђРќРЁР•Рў */
@media (max-width: 980px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* РњРћР‘РР›РљРђ */
@media (max-width: 640px) {
  #details {
    padding: 60px 0;
  }

  .details-grid {
    gap: 14px;
  }

  .detail-card {
    padding: 24px;
  }

  .detail-icon {
    width: 64px;
    height: 64px;
    font-size: 36px;
    margin-bottom: 16px;
  }

  .detail-card h3 {
    font-size: 17px;
  }

  .detail-card p {
    font-size: 14px;
  }

  .details-note {
    padding: 24px;
  }

  .details-note p {
    font-size: 15px;
  }
}
/* ===================================
   LIVE SESSIONS SECTION v1.2
   =================================== */

#live-sessions {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.live-sessions-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

/* === LEFT: РљРћРќРўР•РќРў === */
.live-sessions-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.live-sessions-content .h2 {
  margin-bottom: 8px;
}

.live-sessions-content .lead {
  margin-bottom: 0;
}

/* Р§С‚Рѕ Р±СѓРґРµС‚ РЅР° СЌС„РёСЂР°С… */
.live-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.live-feature-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.live-feature-item:hover {
  border-color: rgba(255, 140, 66, 0.3);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transform: translateX(4px);
}

.live-feature-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 66, 0.1);
  border-radius: 12px;
}

.live-feature-text h4 {
  margin: 0 0 6px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.live-feature-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Р Р°СЃРїРёСЃР°РЅРёРµ */
.live-schedule {
  background: linear-gradient(135deg, rgba(255, 140, 66, 0.08), rgba(255, 160, 96, 0.06));
  border: 2px solid rgba(255, 140, 66, 0.2);
  border-radius: 16px;
  padding: 24px;
}

.live-schedule-title {
  margin: 0 0 20px 0;
  font-size: 19px;
  font-weight: 700;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}



.schedule-number {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 66, 0.15);
  border-radius: 10px;
}

.schedule-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.schedule-info strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.schedule-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1.4;
}

.schedule-topic {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* РџСЂРёРјРµС‡Р°РЅРёСЏ */
.live-notes-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.live-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border: 1px solid;
  border-radius: 12px;
}

.live-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.live-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.live-note strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

/* Р—РµР»С‘РЅРѕРµ РїСЂРёРјРµС‡Р°РЅРёРµ (РїСЂРѕ Р·Р°РїРёСЃРё) */
.live-note-green {
  background: rgba(72, 187, 120, 0.08);
  border-color: rgba(72, 187, 120, 0.25);
}

.live-note-green svg {
  color: #38a169;
}

/* РћСЂР°РЅР¶РµРІРѕРµ РїСЂРёРјРµС‡Р°РЅРёРµ (РїСЂРѕ РєРѕР»РёС‡РµСЃС‚РІРѕ СЂР°Р±РѕС‚) */
.live-note-orange {
  background: rgba(255, 140, 66, 0.08);
  border-color: rgba(255, 140, 66, 0.25);
}

.live-note-orange svg {
  color: var(--accent);
}

/* === RIGHT: Р¤РћРўРћ === */
.live-sessions-image {
  position: relative;
  position: sticky;
  top: 100px;
}

.live-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 140, 66, 0.2);
  transition: all 0.3s ease;
}

.live-img:hover {
  box-shadow: 0 24px 64px rgba(255, 140, 66, 0.25);
  border-color: rgba(255, 140, 66, 0.4);
  transform: translateY(-4px);
}

/* РњРµС‚РєР° "Р’ РїСЂСЏРјРѕРј СЌС„РёСЂРµ" */
.live-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 140, 66, 0.3);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  animation: livePulse 2s ease-in-out infinite;
}

.badge-icon {
  font-size: 18px;
  animation: liveIconPulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.2);
  }
  50% {
    box-shadow: 0 8px 32px rgba(255, 140, 66, 0.4);
  }
}

@keyframes liveIconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* ===================================
   RESPONSIVE
   =================================== */

/* РџР›РђРќРЁР•Рў */
@media (max-width: 980px) {
  #live-sessions {
    padding: 60px 0;
  }

  .live-sessions-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .live-sessions-image {
    position: relative;
    top: 0;
  }

  .live-img {
    aspect-ratio: 1 / 1;
  }

  .live-image-badge {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
}

/* РњРћР‘РР›РљРђ */
@media (max-width: 640px) {
  #live-sessions {
    padding: 50px 0;
  }

  .live-sessions-content {
    gap: 24px;
  }

  .live-feature-item {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .live-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .live-feature-text h4 {
    font-size: 16px;
  }

  .live-feature-text p {
    font-size: 14px;
  }

  .live-schedule {
    padding: 20px 16px;
  }

  .live-schedule-title {
    font-size: 17px;
  }

  .live-schedule-list {
    gap: 12px;
  }

  .live-schedule-list li {
    padding: 14px 16px;
  }

  .schedule-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .schedule-info strong {
    font-size: 15px;
  }

  .schedule-date,
  .schedule-topic {
    font-size: 13px;
  }

  .live-notes-wrapper {
    gap: 10px;
  }

  .live-note {
    padding: 14px 16px;
  }

  .live-note p {
    font-size: 13px;
  }

  .live-img {
    aspect-ratio: 1 / 1;
  }

  .live-image-badge {
    padding: 12px 16px;
    font-size: 14px;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .badge-icon {
    font-size: 16px;
  }
}
/* ===================================
   CHECKOUT SECTION - РђРљР¦Р•РќРўР« v2.0
   =================================== */

/* РџРѕРґР·Р°РіРѕР»РѕРІРѕРє - Р¶РµР»Р°РµРјС‹Рµ СЂРµР·СѓР»СЊС‚Р°С‚С‹ */
#checkout .sub .checkout-desire {
  color: var(--accent-dark);
  font-weight: 700;
}

/* РљР°РІС‹С‡РєРё */
#checkout .sub .checkout-quote {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

#checkout .sub .checkout-before {
  color: var(--text-muted);
  font-style: italic;
}

/* Р“Р»Р°РІРЅС‹Р№ СЂРµР·СѓР»СЊС‚Р°С‚ "СЏ СѓРІРµСЂРµРЅРЅРѕ РґРµР»Р°СЋ" */
#checkout .sub .checkout-result {
  color: var(--accent);
  font-weight: 800;
  position: relative;
  padding: 0 6px;
  background: linear-gradient(120deg, rgba(255, 140, 66, 0.15) 0%, rgba(255, 140, 66, 0.15) 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 85%;
}

/* РЎРїРёСЃРѕРє РІ РїР°РєРµС‚Рµ */
.checkout-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkout-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.checkout-list li:last-child {
  border-bottom: none;
}

/* Р“Р°Р»РѕС‡РєРё */
.checkout-checkmark {
  flex-shrink: 0;
  font-size: 18px;
  color: #38a169;
  margin-top: 2px;
}

/* Р¦РёС„СЂС‹ - Р°РєС†РµРЅС‚ */
.checkout-number {
  color: var(--accent);
  font-weight: 700;
}

/* РЎРµСЂС‚РёС„РёРєР°С‚ - РѕСЃРѕР±С‹Р№ Р°РєС†РµРЅС‚ */
.checkout-accent {
  color: var(--accent-dark);
  font-weight: 700;
}

/* РђРґР°РїС‚РёРІ */
@media (max-width: 640px) {
  .checkout-list li {
    font-size: 15px;
    padding: 8px 0;
  }

  .checkout-checkmark {
    font-size: 16px;
  }

  #checkout .sub .checkout-result {
    font-size: 1em;
    padding: 0 3px;
  }
}
/* ===================================
   FAQ SECTION - РђРљР¦Р•РќРўР« v2.0
   =================================== */

/* Р—Р°РіРѕР»РѕРІРѕРє - РєР°РІС‹С‡РєРё */
#faq .h2 .faq-highlight {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
}

/* РџРѕРґР·Р°РіРѕР»РѕРІРѕРє - Р°РєС†РµРЅС‚ */
#faq .sub .faq-accent {
  color: var(--accent-dark);
  font-weight: 700;
}

/* РћС‚РІРµС‚С‹ - Р¶РёСЂРЅС‹Рµ РєР»СЋС‡РµРІС‹Рµ СЃР»РѕРІР° */
#faq details p strong {
  color: var(--accent-dark);
  font-weight: 700;
}

/* РћС‚РІРµС‚С‹ - "РЅРµ С†РµР»СЊ" (РїСЂРёРіР»СѓС€С‘РЅРЅРѕ) */
#faq details p .faq-not {
  color: var(--text-muted);
  font-style: italic;
}

/* РђРґР°РїС‚РёРІ */
@media (max-width: 640px) {
  #faq .h2 .faq-highlight {
    font-style: normal;
  }
}
/* ===================================
   FINAL SECTION - РђРљР¦Р•РќРўР« v2.0
   =================================== */

/* Р—Р°РіРѕР»РѕРІРѕРє - РіР»Р°РІРЅРѕРµ СЃР»РѕРІРѕ */
.final .h2 .final-highlight {
  color: var(--accent);
  font-weight: 800;
}

/* РџРѕРґР·Р°РіРѕР»РѕРІРѕРє - "РЅРµ С†РµР»СЊ" (РїСЂРёРіР»СѓС€С‘РЅРЅРѕ) */
.final .sub .final-not {
  color: var(--text-muted);
  font-style: italic;
  text-decoration: line-through;
}

/* РџРѕРґР·Р°РіРѕР»РѕРІРѕРє - РєР»СЋС‡РµРІС‹Рµ СЃР»РѕРІР° */
.final .sub strong {
  color: var(--text);
  font-weight: 700;
}

/* РџРѕРґР·Р°РіРѕР»РѕРІРѕРє - СЂРµР·СѓР»СЊС‚Р°С‚ */
.final .sub .final-result {
  color: var(--accent-dark);
  font-weight: 700;
}

/* РџРѕРґР·Р°РіРѕР»РѕРІРѕРє - РїСЂРёР·С‹РІ Рє РґРµР№СЃС‚РІРёСЋ */
.final .sub .final-cta {
  color: var(--accent);
  font-weight: 800;
}

/* РњРёРєСЂРѕ-С‚РµРєСЃС‚ - С†РёС„СЂС‹ */
.final .micro .final-number {
  color: var(--accent);
  font-weight: 700;
}

/* РљР°СЂС‚РѕС‡РєР° - "РЅРµ С†РµР»СЊ" */
.final .card .final-not-goal {
  color: var(--text-muted);
  font-style: italic;
  text-decoration: line-through;
}

/* РљР°СЂС‚РѕС‡РєР° - С†РµР»СЊ */
.final .card .final-goal {
  color: var(--accent);
  font-weight: 800;
}

/* РљР°СЂС‚РѕС‡РєР° - РєР»СЋС‡РµРІС‹Рµ СЃР»РѕРІР° */
.final .card strong {
  color: var(--accent-dark);
  font-weight: 700;
}

/* Р¦РёС‚Р°С‚Р° РІ С„РёРЅР°Р»Рµ */
.final-quote-text {
  display: block;
  margin-bottom: 12px;
  font-style: italic;
  color: var(--text);
}

.final-quote-highlight {
  color: var(--accent);
  font-weight: 700;
  font-style: normal;
}

/* РђРґР°РїС‚РёРІ */
@media (max-width: 640px) {
  .final .h2 .final-highlight {
    display: inline;
  }
  
  .final .sub .final-cta {
    display: block;
    margin-top: 8px;
  }
}
.hidden {
  display: none !important;
}
.slider-wrapper,
.mirror-slider-wrapper,
.program-slider-wrapper,
.testimonials-slider-wrapper {
  overflow: hidden;
}

.slider-track,
.mirror-slider-track,
.program-slider-track, 
.testimonials-slider-track {
  overflow: visible;
  will-change: transform;
}


/* ===================================
   MODAL (POP-UP) — Чистая версия
=================================== */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: block;
  opacity: 1;
}

/* Overlay (тёмный фон) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

/* Wrapper для центрирования */
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}

/* Контейнер модалки (скроллится) */
.modal-container {
  position: relative;
  background: var(--bg);
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 40px); /* Отступ сверху и снизу */
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  pointer-events: all;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Кнопка закрыть */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(90deg);
}

/* Заголовок (фиксированный) */
.modal-header {
  flex-shrink: 0;
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px 0;
  line-height: 1.2;
  padding-right: 50px;
}

.modal-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Тело модалки (скроллится) */
.modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 32px;
  -webkit-overflow-scrolling: touch;
}

/* Кастомный скроллбар (для Webkit) */
.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: var(--bg-card);
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* Mobile */
@media (max-width: 640px) {
  .modal-wrapper {
    padding: 10px;
  }
  
  .modal-container {
    max-height: calc(100vh - 20px);
    border-radius: 20px;
  }
  
  .modal-header {
    padding: 24px 20px 20px;
  }
  
  .modal-title {
    font-size: 24px;
    padding-right: 40px;
  }
  
  .modal-body {
    padding: 24px 20px;
  }
  
  .modal-close {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
}

/* Убираем скролл body когда модалка открыта */
body.modal-open {
  overflow: hidden;
}
/* ============================================
   СЕКЦИЯ: ОТЗЫВЫ (v4.0 - В стиле сайта)
   ============================================ */

.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-soft), var(--bg));
    overflow: hidden;
    width: 100%;
    border-top: 1px solid var(--border);
}

.testimonials-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.testimonials-header .section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.testimonials-header .section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

/* Слайдер-контейнер */
.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y;
    will-change: transform;
}

/* Карточка отзыва */
.testimonial-card {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: 0 16px;
    box-sizing: border-box;
}

.testimonial-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Блоки "До" и "После" */
.testimonial-before,
.testimonial-after {
    margin-bottom: 20px;
}

.testimonial-before .label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.04);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.testimonial-after .label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-dark);
    background: var(--accent-glow);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.testimonial-before p,
.testimonial-after p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

/* Цитата */
.testimonial-quote {
    margin-top: 20px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08), rgba(255, 160, 96, 0.06));
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    font-style: italic;
    font-weight: 500;
}

/* Автор отзыва */
.testimonial-author {
    margin-top: 20px;
    padding: 0 20px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.author-status {
    font-size: 13px;
    color: var(--text-muted);
}

/* Навигация (стрелки) */
.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 0 16px;
}

.testimonials-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text);
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--text-muted);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 600;
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.25);
}

.testimonials-btn:active {
    transform: scale(0.95);
}

.testimonials-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 6px 24px rgba(255, 140, 66, 0.3);
}


.testimonials-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonials-btn svg {
    width: 20px;
    height: 20px;
}

/* Индикаторы (dots) */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 16px;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonials-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

.testimonials-dot:hover {
    background: var(--accent);
    opacity: 0.7;
}

/* ============================================
   АДАПТИВ: ПЛАНШЕТЫ
   ============================================ */
@media (min-width: 481px) and (max-width: 768px) {
    .testimonials-section {
        padding: 70px 0;
    }

    .testimonials-header {
        margin-bottom: 50px;
        padding: 0 24px;
    }

    .testimonials-header .section-title {
        font-size: 32px;
    }

    .testimonials-header .section-subtitle {
        font-size: 17px;
    }

    .testimonial-card {
        padding: 0 24px;
    }

    .testimonial-content {
        padding: 32px 28px;
        border-radius: 18px;
    }

    .testimonial-before .label,
    .testimonial-after .label {
        font-size: 12px;
        padding: 5px 12px;
    }

    .testimonial-before p,
    .testimonial-after p {
        font-size: 15px;
    }

    .testimonial-quote {
        font-size: 16px;
        padding: 18px 22px;
        margin-top: 24px;
    }

    .testimonial-author {
        margin-top: 24px;
        padding: 0 28px;
    }

    .author-name {
        font-size: 17px;
    }

    .author-status {
        font-size: 14px;
    }

    .testimonials-navigation {
        margin-top: 32px;
        gap: 14px;
    }

    .testimonials-btn {
        width: 44px;
        height: 44px;
    }

    .testimonials-btn svg {
        width: 22px;
        height: 22px;
    }

    .testimonials-dots {
        margin-top: 24px;
        gap: 10px;
    }

    .testimonials-dot {
        width: 10px;
        height: 10px;
    }

    .testimonials-dot.active {
        width: 28px;
    }
}

/* ============================================
   АДАПТИВ: ДЕСКТОП
   ============================================ */
@media (min-width: 769px) {
    .testimonials-section {
        padding: 80px 20px;
    }

    .testimonials-section .container {
        max-width: var(--container);
        padding: 0 20px;
    }

    .testimonials-header {
        margin-bottom: 60px;
        padding: 0;
    }

    .testimonials-header .section-title {
        font-size: 36px;
    }

    .testimonials-header .section-subtitle {
        font-size: 18px;
    }

    .testimonials-slider {
        max-width: 900px;
    }

    .testimonial-card {
        padding: 0 10px;
    }

    .testimonial-content {
        padding: 40px 30px;
        border-radius: 18px;
    }

    .testimonial-content:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
    }

    .testimonial-before .label,
    .testimonial-after .label {
        font-size: 13px;
        padding: 4px 12px;
    }

    .testimonial-before p,
    .testimonial-after p {
        font-size: 16px;
    }

    .testimonial-quote {
        font-size: 17px;
        padding: 20px 24px;
        margin-top: 28px;
    }

    .testimonial-author {
        margin-top: 24px;
        padding: 0 30px;
    }

    .author-name {
        font-size: 18px;
    }

    .author-status {
        font-size: 14px;
    }

    .testimonials-navigation {
        margin-top: 40px;
        gap: 16px;
        padding: 0;
    }

    .testimonials-btn {
        width: 48px;
        height: 48px;
    }

    .testimonials-btn svg {
        width: 24px;
        height: 24px;
    }

    .testimonials-dots {
        margin-top: 30px;
        gap: 10px;
        padding: 0;
    }

    .testimonials-dot {
        width: 10px;
        height: 10px;
    }

    .testimonials-dot.active {
        width: 28px;
        border-radius: 5px;
    }
}

/* ============================================
   СЕКЦИЯ WHO v3.0 - С НУЛЯ
   ============================================ */

.who {
    background: var(--bg);
    padding: 80px 0;
}

.who .who-highlight {
    color: var(--accent);
    font-weight: 800;
    position: relative;
    padding: 0 4px;
    background: linear-gradient(120deg, rgba(255, 140, 66, 0.15) 0%, rgba(255, 140, 66, 0.15) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 85%;
}

.who .sub .who-result {
    color: var(--accent-dark);
    font-weight: 700;
}

.who .sub .who-thought {
    color: var(--text-muted);
    font-style: italic;
}

.who .card .who-accent {
    color: var(--accent);
    font-weight: 700;
    font-style: italic;
}

.who .card strong {
    color: var(--accent-dark);
    font-weight: 700;
}

/* ============================================
   ДЕСКТОП: Сетка 3 колонки
   ============================================ */
.who-grid-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.who-image-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.who-image-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.who-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.who-image-item:hover .who-img {
    transform: scale(1.08);
}

/* Скрываем мобильный слайдер на десктопе */
.who-slider-mobile {
    display: none;
}

/* ============================================
   ПЛАНШЕТЫ (768px - 980px)
   ============================================ */
@media (max-width: 980px) {
    .who {
        padding: 70px 0;
    }

    .who-grid-desktop {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Третья картинка на полную ширину */
    .who-image-item:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* ============================================
   МОБИЛЬНЫЕ (до 640px) - СЛАЙДЕР
   ============================================ */
@media (max-width: 640px) {
    .who {
        padding: 60px 0;
    }

    /* Скрываем десктопную сетку */
    .who-grid-desktop {
        display: none;
    }

    /* Показываем слайдер */
    .who-slider-mobile {
        display: block;
        position: relative;
        width: 100%;
        margin: 40px 0;
    }

    .who-slider-container {
        width: 100%;
        overflow: hidden; /* ← КРИТИЧНО: скрывает слайды за экраном */
        position: relative;
    }

    .who-slider-track {
        display: flex;
        width: 100%;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }

    .who-slider-item {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 0 16px; /* ← Отступы для "воздуха" */
        box-sizing: border-box;
    }

    .who-slider-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/5;
        object-fit: cover;
        display: block;
        border-radius: 16px;
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
    }

    /* Кнопки навигации */
    .who-slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-card);
        border: 1.5px solid var(--border);
        color: var(--text);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        z-index: 10;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    .who-slider-btn:hover {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
        box-shadow: 0 6px 24px rgba(255, 140, 66, 0.3);
    }

    .who-slider-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    .who-slider-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .who-slider-prev {
        left: 8px;
    }

    .who-slider-next {
        right: 8px;
    }

    /* Dots (индикаторы) */
    .who-slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }

    .who-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .who-dot.active {
        background: var(--accent);
        width: 24px;
        border-radius: 4px;
    }

    .who-dot:hover {
        background: var(--accent);
        opacity: 0.7;
    }
}
/* ============================================
   FIX: Отступ между слайдером и карточками
   ============================================ */

/* Отступ снизу у dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    margin-bottom: 40px; /* ← ДОБАВЛЕНО: отступ снизу */
}

/* Или альтернативно: отступ сверху у grid */
#for-who .grid {
    margin-top: 40px; /* ← Отступ между слайдером и карточками */
}

/* На мобильных — чуть меньше */
@media (max-width: 640px) {
    .slider-dots {
        margin-bottom: 32px;
    }
    
    #for-who .grid {
        margin-top: 32px;
    }
}

/* ===================================
   LIVE NOTES WRAPPER (Grid for Desktop)
   =================================== */
.live-notes-wrapper {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) {
  .live-notes-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}