/* ==========================================
   ROOMSKY — Стили сайта
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@400;500;600&display=swap');

/* === ПЕРЕМЕННЫЕ === */
:root {
  --bg: #F8F4EE;
  --surface: #EFE8DC;
  --surface-dark: #E2D8CB;
  --accent: #C26F4B;
  --accent-dark: #A75B38;
  --sage: #7A9B6E;
  --text: #1A1714;
  --text-muted: #6B5E52;
  --border: #D4C9BC;
  --white: #FFFBF7;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1160px;
  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.22s ease;
}

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

/* === УТИЛИТЫ === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* === ТИПОГРАФИКА === */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }
.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* === КНОПКИ === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(194,111,75,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
}

/* === COOKIE БАННЕР === */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--text);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  max-width: 680px;
}
#cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--accent);
  color: white;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--accent-dark); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  padding: 10px 16px;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.cookie-decline:hover { color: rgba(255,255,255,1); }

/* === НАВИГАЦИЯ === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,244,238,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }

/* Мобильное меню */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* === HERO === */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  min-height: 76vh;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(194,111,75,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-label { margin-bottom: 20px; }
.hero h1 {
  margin-bottom: 24px;
  color: var(--text);
  font-style: italic;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 16px;
}
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 80px rgba(0,0,0,0.14);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(248,244,238,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text);
}

/* === СЕКЦИИ ОБЩИЕ === */
section { padding: 88px 0; }
.section-header { margin-bottom: 56px; }
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-top: 20px;
}

/* === ДЛЯ КОГО === */
.for-whom { background: var(--surface); }
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.for-whom-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.for-whom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.for-whom-icon {
  width: 44px;
  height: 44px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.for-whom-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.for-whom-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* === РЕЗУЛЬТАТЫ === */
.outcomes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.outcomes-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.outcomes-image img { width: 100%; height: 100%; object-fit: cover; }
.outcomes-list { display: flex; flex-direction: column; gap: 28px; }
.outcome-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.outcome-item:hover {
  background: var(--surface);
  border-color: var(--border);
}
.outcome-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.outcome-text h3 { margin-bottom: 6px; font-size: 1.05rem; }
.outcome-text p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* === КАК ПРОХОДИТ ОБУЧЕНИЕ === */
.format { background: var(--surface); }
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.format-item {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
}
.format-item:hover { background: var(--surface); }
.format-step {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 16px;
}
.format-item h3 { margin-bottom: 10px; font-size: 1.1rem; }
.format-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* === ПРИМЕРЫ РАБОТ === */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.example-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.example-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.example-card:hover img { transform: scale(1.04); }
.example-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 18px;
  background: linear-gradient(to top, rgba(26,23,20,0.75) 0%, transparent 100%);
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* === ПРОГРАММА === */
.curriculum { background: var(--surface); }
.curriculum-list { display: flex; flex-direction: column; gap: 2px; }
.curriculum-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.curriculum-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.curriculum-header:hover { background: var(--surface); }
.curriculum-header-left { display: flex; align-items: center; gap: 20px; }
.curriculum-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--accent);
  opacity: 0.6;
  width: 32px;
  flex-shrink: 0;
}
.curriculum-title { font-size: 1rem; font-weight: 500; }
.curriculum-subtitle { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.curriculum-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.curriculum-item.open .curriculum-toggle { transform: rotate(45deg); background: var(--accent); color: white; }
.curriculum-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.curriculum-body-inner {
  padding: 0 28px 24px 80px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.curriculum-body-inner ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.curriculum-body-inner li::before {
  content: '—';
  margin-right: 10px;
  color: var(--accent);
  opacity: 0.6;
}

/* === ИНСТРУМЕНТЫ === */
.tools-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tools-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.tools-image img { width: 100%; height: 100%; object-fit: cover; }
.tools-content {}
.tools-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.tool-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.tool-item-icon {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.tool-item-text h3 { font-size: 0.95rem; font-weight: 500; margin-bottom: 4px; }
.tool-item-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* === FAQ === */
.faq { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--surface); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 300;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === ФОРМА ЗАЯВКИ === */
.lead-form-section {
  background: linear-gradient(135deg, #2A1F17 0%, #1A1714 60%, #1E1A16 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(194,111,75,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(122,155,110,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.lead-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.lead-form-content .label { color: var(--accent); }
.lead-form-content h2 { color: var(--white); margin-bottom: 20px; }
.lead-form-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.form-perks { display: flex; flex-direction: column; gap: 12px; }
.form-perk {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.form-perk-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.lead-form-box {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.11);
}
.form-group input:invalid:not(:placeholder-shown) { border-color: #e5534b; }
.form-submit {
  width: 100%;
  background: var(--accent);
  color: white;
  padding: 15px 24px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(194,111,75,0.35);
}
.form-note {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}
.form-note a { color: rgba(255,255,255,0.5); text-decoration: underline; }

/* === ФУТЕР === */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 56px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { color: var(--white); font-size: 1.4rem; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.65;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
}
.footer-legal strong { color: rgba(255,255,255,0.45); }
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* === СТРАНИЦА УСПЕХА === */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background: var(--bg);
}
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 32px;
  border: 2px solid var(--border);
}
.success-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.success-page p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* === LEGAL-СТРАНИЦЫ === */
.legal-page { padding: 80px 0 96px; min-height: 80vh; }
.legal-page .container { max-width: 760px; }
.legal-page h1 { margin-bottom: 8px; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.legal-page .legal-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-body h2 {
  font-size: 1.25rem;
  margin-top: 44px;
  margin-bottom: 14px;
}
.legal-body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-body ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-body a { color: var(--accent); text-decoration: underline; }
.legal-body strong { color: var(--text); font-weight: 500; }

/* === АДАПТИВНОСТЬ === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 48px; }
  .hero-image { max-width: 600px; }
  .hero-subtitle { max-width: 100%; }
  .outcomes-layout { grid-template-columns: 1fr; gap: 48px; }
  .outcomes-image { max-width: 500px; }
  .tools-layout { grid-template-columns: 1fr; gap: 48px; }
  .lead-form-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav-cta { display: none; }
  .nav { position: relative; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; gap: 1px; }
  .examples-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .examples-grid .example-card:last-child { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .lead-form-box { padding: 28px 22px; }
  .curriculum-body-inner { padding-left: 52px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .examples-grid { grid-template-columns: 1fr; }
  .examples-grid .example-card:last-child { display: block; }
}
