/* =====================================================
   MB-COMAND — Flexible Learning Orbit
   Design System & Full Stylesheet
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --blue:       #1e3a5f;
  --blue-mid:   #2d5282;
  --blue-light: #3a6fa8;
  --teal:       #00b4d8;
  --teal-dark:  #0096b7;
  --teal-light: #48cae4;
  --milk:       #f9f8f5;
  --milk-dark:  #f0ede7;
  --amber:      #f4a261;
  --amber-dark: #e76f1f;
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-300:   #cbd5e1;
  --gray-400:   #94a3b8;
  --gray-500:   #64748b;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-800:   #1e293b;
  --gray-900:   #0f172a;

  --font-main:  'Plus Jakarta Sans', sans-serif;
  --font-alt:   'Space Grotesk', sans-serif;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(30,58,95,.08);
  --shadow:     0 4px 16px rgba(30,58,95,.12);
  --shadow-md:  0 8px 32px rgba(30,58,95,.14);
  --shadow-lg:  0 20px 60px rgba(30,58,95,.18);
  --shadow-teal:0 8px 32px rgba(0,180,216,.25);

  --transition: .25s ease;
  --transition-slow: .4s ease;

  --header-h: 72px;
  --max-w:    1200px;
  --max-w-sm: 800px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--milk);
  color: var(--gray-800);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-alt); font-weight: 700; line-height: 1.15; color: var(--blue); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--gray-600); }

.accent { color: var(--teal); }
.highlight { color: var(--amber); }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; max-width: 560px; margin: 0 auto; color: var(--gray-500); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,180,216,.1);
  border: 1px solid rgba(0,180,216,.25);
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,180,216,.35); }
.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--gray-200);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-amber {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(244,162,97,.3);
}
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(249,248,245,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30,58,95,.06);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo__icon svg { width: 22px; height: 22px; }
.logo__text {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue);
}
.logo__text span { color: var(--teal); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}
.nav a:hover, .nav a.active { color: var(--blue); background: var(--milk-dark); }

.header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.lang-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-200);
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: .04em;
  transition: var(--transition);
}
.lang-btn:hover { border-color: var(--teal); color: var(--teal); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-50);
}
.mobile-nav a:hover { background: var(--milk); color: var(--blue); }
.mobile-nav .btn { margin-top: 12px; justify-content: center; }

/* Page spacer */
.page-top { padding-top: var(--header-h); }

/* ════════════════════════════════════
   HERO — INDEX
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: var(--blue);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Orbit decorations */
.hero__orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(0,180,216,.15);
  border-radius: 50%;
}
.orbit-ring-1 { width: 600px; height: 600px; top: -100px; right: -150px; animation: orbit-spin 40s linear infinite; }
.orbit-ring-2 { width: 900px; height: 900px; top: -250px; right: -350px; animation: orbit-spin 60s linear infinite reverse; }
.orbit-ring-3 { width: 400px; height: 400px; bottom: -200px; left: -100px; border-color: rgba(244,162,97,.1); animation: orbit-spin 30s linear infinite; }

.orbit-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(0,180,216,.6);
}

/* Hero geo lines */
.hero__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__geo::before {
  content: '';
  position: absolute;
  top: 30%; right: 10%;
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(0,180,216,.3), transparent);
}
.hero__geo::after {
  content: '';
  position: absolute;
  top: 50%; left: 8%;
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(244,162,97,.3), transparent);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content { max-width: 580px; }
.hero__badge .badge { background: rgba(0,180,216,.12); border-color: rgba(0,180,216,.3); color: #7dd3fc; }
.hero__title { color: var(--white); margin-bottom: 24px; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.hero__subtitle { color: rgba(255,255,255,.72); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.7; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stat-num {
  font-family: var(--font-alt);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.hero__stat-label { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 4px; }

/* Hero image */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero__img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero__img-badge {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__img-badge-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-badge-icon svg { width: 20px; height: 20px; color: white; }
.hero__img-badge strong { display: block; font-size: .9rem; color: var(--blue); }
.hero__img-badge span { font-size: .75rem; color: var(--gray-400); }

.hero__orbit-el {
  position: absolute;
  top: 24px;
  right: -16px;
  background: rgba(244,162,97,.15);
  border: 1px solid rgba(244,162,97,.3);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  backdrop-filter: blur(8px);
}
.hero__orbit-el span { font-size: .8rem; color: var(--amber); font-weight: 600; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--blue);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  border-radius: 50%;
  border: 1px solid rgba(0,180,216,.12);
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  bottom: -200px; left: -100px;
  border-radius: 50%;
  border: 1px solid rgba(244,162,97,.1);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero__content { max-width: 640px; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; }

/* ════════════════════════════════════
   FEATURES GRID
════════════════════════════════════ */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--milk);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-slow);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gray-100); }

.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,180,216,.1), rgba(30,58,95,.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--teal); }
.feature-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.feature-card p { font-size: .9rem; line-height: 1.6; }

/* ════════════════════════════════════
   HOW IT WORKS — STEPS
════════════════════════════════════ */
.how { background: var(--milk); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 32px);
  right: calc(10% + 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(0,180,216,.2));
}
.step-item { text-align: center; padding: 0 16px; position: relative; }
.step-num {
  width: 64px; height: 64px;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--teal);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-teal);
  transition: var(--transition);
}
.step-item:hover .step-num { background: var(--teal); color: var(--white); transform: scale(1.1); }
.step-item h4 { margin-bottom: 10px; font-size: .95rem; color: var(--blue); }
.step-item p { font-size: .85rem; line-height: 1.55; }

/* ════════════════════════════════════
   PROGRAMS PREVIEW CARDS
════════════════════════════════════ */
.programs-preview { background: var(--white); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.prog-card {
  background: var(--milk);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--milk-dark);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gray-200); }
.prog-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prog-card__icon svg { width: 28px; height: 28px; color: var(--white); }
.prog-card__icon.blue { background: var(--blue); }
.prog-card__icon.teal { background: var(--teal); }
.prog-card__icon.amber { background: var(--amber); }
.prog-card__icon.mid { background: var(--blue-mid); }
.prog-card h3 { font-size: 1.1rem; }
.prog-card p { font-size: .9rem; flex: 1; }
.prog-card__link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.prog-card__link:hover { gap: 10px; }

.programs-preview__cta { text-align: center; }

/* ════════════════════════════════════
   FORMAT PREVIEW
════════════════════════════════════ */
.format-preview {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.format-preview::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  top: -300px; right: -200px;
  border-radius: 50%;
  border: 1px solid rgba(0,180,216,.1);
}
.format-preview .container { position: relative; z-index: 2; }
.format-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.format-preview__content h2 { color: var(--white); margin-bottom: 24px; }
.format-preview__content p { color: rgba(255,255,255,.7); margin-bottom: 32px; line-height: 1.7; }
.format-preview__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.format-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.format-tag {
  padding: 6px 16px;
  background: rgba(0,180,216,.12);
  border: 1px solid rgba(0,180,216,.25);
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal-light);
}

/* ════════════════════════════════════
   ORBIT TRAJECTORY
════════════════════════════════════ */
.orbit-section { background: var(--milk); overflow: hidden; }
.orbit-viz {
  position: relative;
  height: 280px;
  margin: 64px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-path {
  position: absolute;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--blue-light), var(--amber), transparent);
  top: 50%;
  left: 10%;
}
.orbit-nodes {
  display: flex;
  gap: 0;
  justify-content: space-between;
  width: 80%;
  position: relative;
  z-index: 2;
}
.orbit-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.orbit-node__dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-teal);
  transition: var(--transition);
  cursor: default;
}
.orbit-node__dot:hover { background: var(--teal); transform: scale(1.2); }
.orbit-node__dot svg { width: 20px; height: 20px; color: var(--teal); }
.orbit-node__dot:hover svg { color: var(--white); }
.orbit-node span {
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
}
.orbit-node:nth-child(4) .orbit-node__dot { border-color: var(--amber); }
.orbit-node:nth-child(5) .orbit-node__dot { border-color: var(--amber); background: rgba(244,162,97,.1); }

/* ════════════════════════════════════
   STATS
════════════════════════════════════ */
.stats-section { background: var(--blue); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-alt);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-num sup { font-size: 1.8rem; vertical-align: super; }
.stat-label { font-size: .95rem; color: rgba(255,255,255,.6); }
.stat-sub { font-size: .8rem; color: rgba(255,255,255,.4); margin-top: 4px; }

/* ════════════════════════════════════
   FAQ PREVIEW
════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-item:first-child { border-top: 1px solid var(--gray-100); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  text-align: left;
  transition: var(--transition);
}
.faq-btn:hover { color: var(--teal); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--gray-400); transition: var(--transition); }
.faq-item.open .faq-icon { background: var(--teal); border-color: var(--teal); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding-bottom: 20px;
  line-height: 1.7;
}

/* ════════════════════════════════════
   CTA BAND
════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, var(--teal-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.7); margin-bottom: 36px; font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════
   MAP
════════════════════════════════════ */
.map-section { background: var(--milk); padding: 80px 0; }
.map-section__header { text-align: center; margin-bottom: 32px; }
.map-section__header h2 { font-size: 1.6rem; margin-bottom: 8px; }
.map-section__header p { color: var(--gray-500); }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 360px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════ */
.philosophy { background: var(--white); }
.philosophy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.philosophy__texts { display: flex; flex-direction: column; gap: 20px; }
.philosophy__texts p { line-height: 1.75; font-size: 1rem; }
.philosophy__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.for-whom { background: var(--milk); }
.for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.for-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: var(--transition-slow);
}
.for-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.for-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.for-card__icon svg { width: 28px; height: 28px; }
.for-card h3 { font-size: 1rem; margin-bottom: 10px; }
.for-card p { font-size: .875rem; }

.why-flex { background: var(--white); }
.why-flex__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-flex__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.why-flex__content h2 { margin-bottom: 24px; }
.why-flex__content p { font-size: 1.05rem; line-height: 1.8; }

.env-section { background: var(--milk); }
.env-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.env-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.env-card:hover { box-shadow: var(--shadow); }
.env-card__icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(0,180,216,.1), rgba(30,58,95,.06));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.env-card__icon svg { width: 22px; height: 22px; color: var(--teal); }
.env-card h4 { margin-bottom: 8px; color: var(--blue); }
.env-card p { font-size: .9rem; }

/* ════════════════════════════════════
   PROGRAMS PAGE
════════════════════════════════════ */
.prog-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.prog-full-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-100);
  transition: var(--transition-slow);
}
.prog-full-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prog-full-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.prog-full-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prog-full-card__icon svg { width: 30px; height: 30px; color: var(--white); }
.prog-level {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  background: var(--milk);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}
.prog-full-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.prog-full-card > p { font-size: .95rem; margin-bottom: 24px; line-height: 1.7; }
.prog-modules-list { margin-bottom: 28px; }
.prog-modules-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.prog-module-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-50);
  font-size: .875rem;
  color: var(--gray-700);
}
.prog-module-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.prog-full-card__actions { display: flex; gap: 12px; }

.learning-path { background: var(--milk); }
.lp-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
  padding: 40px 0;
}
.lp-timeline::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  z-index: 0;
}
.lp-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.lp-dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 1rem;
  color: var(--teal);
  box-shadow: var(--shadow-teal);
}
.lp-node span { font-size: .8rem; font-weight: 600; color: var(--blue); text-align: center; max-width: 100px; }

.levels-section { background: var(--white); }
.levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.level-card {
  background: var(--milk);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--milk-dark);
  transition: var(--transition);
}
.level-card:hover { box-shadow: var(--shadow); }
.level-num {
  font-family: var(--font-alt);
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal);
  opacity: .2;
  line-height: 1;
  margin-bottom: 12px;
}
.level-card h3 { margin-bottom: 12px; }
.level-card p { font-size: .9rem; }

/* ════════════════════════════════════
   FORMAT PAGE
════════════════════════════════════ */
.format-intro { background: var(--white); }
.format-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.format-intro__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.format-intro__content h2 { margin-bottom: 20px; }
.format-intro__content p { font-size: 1.05rem; line-height: 1.8; }

.format-features-section { background: var(--milk); }
.format-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.ff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ff-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,180,216,.1), rgba(30,58,95,.06));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ff-icon svg { width: 24px; height: 24px; color: var(--teal); }
.ff-card h3 { font-size: 1rem; margin-bottom: 10px; }
.ff-card p { font-size: .9rem; }

.journey-section { background: var(--white); }
.journey-timeline {
  max-width: 720px;
  margin: 0 auto;
}
.journey-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.journey-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  width: 2px;
  height: calc(100% - 12px);
  background: linear-gradient(to bottom, var(--teal), var(--gray-100));
}
.journey-step__dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-alt);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  box-shadow: var(--shadow-teal);
}
.journey-step__content h4 { margin-bottom: 8px; color: var(--blue); padding-top: 12px; }
.journey-step__content p { font-size: .9rem; line-height: 1.65; }

/* ════════════════════════════════════
   MATERIALS PAGE
════════════════════════════════════ */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.mat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: var(--transition-slow);
}
.mat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.mat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mat-icon svg { width: 28px; height: 28px; color: var(--white); }
.mat-card h3 { margin-bottom: 12px; font-size: 1.05rem; }
.mat-card p { font-size: .9rem; margin-bottom: 20px; flex: 1; }
.mat-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mat-tag {
  padding: 4px 12px;
  background: var(--milk);
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}

.repeat-block {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.repeat-block h2 { color: var(--white); margin-bottom: 16px; }
.repeat-block p { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.75; }
.repeat-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}
.repeat-pill {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid rgba(0,180,216,.3);
  color: var(--teal-light);
  background: rgba(0,180,216,.08);
}
.repeat-pill.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

/* ════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════ */
.contact-steps { background: var(--white); }
.csteps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.csteps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 28px);
  right: calc(10% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), rgba(0,180,216,.1));
  z-index: 0;
}
.cstep {
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.cstep__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.cstep h4 { font-size: .9rem; margin-bottom: 8px; color: var(--blue); }
.cstep p { font-size: .8rem; line-height: 1.55; }

.contact-main { background: var(--milk); }
.contact-main__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: var(--font-alt);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,216,.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.field-error {
  font-size: .78rem;
  color: #ef4444;
  display: none;
  margin-top: 4px;
}
.form-group.has-error .field-error { display: block; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--teal);
  flex-shrink: 0;
}
.form-consent label {
  font-size: .875rem;
  color: var(--gray-600);
  cursor: pointer;
  line-height: 1.5;
}
.form-consent label a { color: var(--teal); text-decoration: underline; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* Contacts sidebar */
.contacts-info { display: flex; flex-direction: column; gap: 32px; }
.contacts-block h2 { font-size: 1.3rem; margin-bottom: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--milk);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--teal); }
.contact-item__label { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); margin-bottom: 4px; }
.contact-item__value { font-size: .95rem; font-weight: 500; color: var(--gray-800); }
.contact-item__value a { color: var(--teal); transition: var(--transition); }
.contact-item__value a:hover { color: var(--teal-dark); }

/* ════════════════════════════════════
   FULL FAQ PAGE
════════════════════════════════════ */
.faq-full { background: var(--milk); }
.faq-full .faq-list { max-width: 800px; }
.faq-full .faq-btn { font-size: 1.05rem; }

/* ════════════════════════════════════
   PRIVACY PAGE
════════════════════════════════════ */
.privacy-content { background: var(--white); }
.privacy-doc {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-doc__meta {
  padding: 16px 20px;
  background: var(--milk);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .875rem;
  color: var(--gray-500);
  margin-bottom: 48px;
}
.privacy-section { margin-bottom: 40px; }
.privacy-section h3 {
  font-size: 1.15rem;
  color: var(--blue);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.privacy-section p { line-height: 1.8; margin-bottom: 12px; color: var(--gray-700); }
.privacy-section ul {
  list-style: none;
  margin-left: 0;
  margin-top: 12px;
}
.privacy-section ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.7;
}
.privacy-section ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}

/* ════════════════════════════════════
   THANK-YOU PAGE
════════════════════════════════════ */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}
.thankyou-page::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; right: -100px;
  border-radius: 50%;
  border: 1px solid rgba(0,180,216,.1);
  animation: orbit-spin 50s linear infinite;
}
.thankyou-page::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  bottom: -200px; left: -100px;
  border-radius: 50%;
  border: 1px solid rgba(244,162,97,.1);
  animation: orbit-spin 35s linear infinite reverse;
}
.thankyou-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  max-width: 680px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp .6s ease;
}
.thankyou-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: success-pop .5s .2s cubic-bezier(.34,1.56,.64,1) both;
}
.thankyou-icon svg { width: 40px; height: 40px; color: var(--white); }
.thankyou-card h1 { font-size: 2rem; margin-bottom: 16px; }
.thankyou-card > p { color: var(--gray-600); line-height: 1.7; margin-bottom: 40px; }
.thankyou-steps {
  background: var(--milk);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  text-align: left;
}
.thankyou-steps h3 { font-size: 1rem; margin-bottom: 16px; color: var(--blue); }
.ty-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
  color: var(--gray-700);
}
.ty-step:last-child { border-bottom: none; }
.ty-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ty-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.ty-contact {
  font-size: .875rem;
  color: var(--gray-500);
}
.ty-contact a { color: var(--teal); font-weight: 600; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--gray-900);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo__text { color: var(--white); }
.footer-brand p { font-size: .875rem; color: var(--gray-400); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-btn svg { width: 16px; height: 16px; color: var(--gray-400); }
.social-btn:hover { background: var(--teal); border-color: var(--teal); }
.social-btn:hover svg { color: var(--white); }

.footer-col h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact p {
  font-size: .875rem;
  color: var(--gray-400);
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer-contact a { color: var(--teal-light); transition: var(--transition); }
.footer-contact a:hover { color: var(--teal); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: .8rem; color: var(--gray-500); }
.footer__bottom a { color: var(--gray-400); transition: var(--transition); }
.footer__bottom a:hover { color: var(--teal); }

/* ════════════════════════════════════
   COOKIE BANNER
════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  border: 1px solid var(--gray-100);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner h4 {
  font-size: 1rem;
  color: var(--blue);
  margin-bottom: 10px;
}
.cookie-banner p {
  font-size: .8rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--gray-500);
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  transition: var(--transition);
}
.cookie-accept { background: var(--teal); color: var(--white); }
.cookie-accept:hover { background: var(--teal-dark); }
.cookie-decline { background: var(--gray-100); color: var(--gray-600); border: 1px solid var(--gray-200); }
.cookie-decline:hover { background: var(--gray-200); }
.cookie-settings-btn { background: transparent; color: var(--teal); font-size: .8rem; font-weight: 600; padding: 8px 4px; }
.cookie-settings-btn:hover { text-decoration: underline; }

.cookie-settings-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.cookie-settings-panel.show { display: block; }
.cookie-toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.cookie-toggle-text h5 { font-size: .875rem; color: var(--blue); margin-bottom: 4px; }
.cookie-toggle-text p { font-size: .78rem; color: var(--gray-400); }
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}
.toggle input:checked + .toggle-slider { background: var(--teal); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }

.cookie-save { margin-top: 16px; width: 100%; justify-content: center; }

/* ════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-left { transform: translateX(-30px); }
.reveal-left.revealed { transform: none; }
.reveal-right { transform: translateX(30px); }
.reveal-right.revealed { transform: none; }

/* ════════════════════════════════════
   ANIMATIONS
════════════════════════════════════ */
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes success-pop {
  from { opacity: 0; transform: scale(.5); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ════════════════════════════════════
   BREADCRUMB
════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ════════════════════════════════════
   UTILITIES
════════════════════════════════════ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.bg-white { background: var(--white); }
.bg-milk { background: var(--milk); }
.bg-blue { background: var(--blue); }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
  .for-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__actions .btn { display: none; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .hero__inner { justify-items: center; text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }

  .format-preview__inner,
  .philosophy__inner,
  .why-flex__inner,
  .format-intro__inner { grid-template-columns: 1fr; gap: 40px; }
  .philosophy__img { position: static; height: 280px; }
  .format-preview__img,
  .why-flex__img,
  .format-intro__img { height: 260px; }

  .programs-grid { grid-template-columns: 1fr; }
  .prog-full-grid { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: repeat(2, 1fr); }
  .csteps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .csteps-grid::before { display: none; }
  .contact-main__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .env-grid { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .repeat-block { grid-template-columns: 1fr; }
  .lp-timeline { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .lp-timeline::before { display: none; }
  .levels-grid { grid-template-columns: 1fr; }
  .format-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .container { padding: 0 16px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .for-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr; }
  .format-features-grid { grid-template-columns: 1fr; }
  .csteps-grid { grid-template-columns: 1fr; }

  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .cta-band .actions { flex-direction: column; align-items: stretch; }

  .form-card { padding: 28px 20px; }
  .thankyou-card { padding: 40px 24px; }
  .ty-buttons { flex-direction: column; }

  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .orbit-viz { display: none; }
  .lp-timeline { gap: 16px; }
}
