/* ============================================================
   SOAPSTART — Основные стили
   ============================================================ */

/* ---------- Переменные ---------- */
:root {
  --cream: #FAF6F1;
  --cream-dark: #F0E8DC;
  --cream-darker: #E8DDD0;
  --brown: #7A4C2B;
  --brown-light: #9E6340;
  --brown-dark: #4F2E14;
  --terracotta: #C4714A;
  --terracotta-light: #E8A07B;
  --text: #2C1F13;
  --text-muted: #7A6652;
  --white: #FFFFFF;
  --border: #DDD3C7;
  --shadow: rgba(44, 31, 19, 0.10);
  --shadow-lg: rgba(44, 31, 19, 0.18);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --container: 1120px;
  --transition: 0.25s 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(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

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

ul { list-style: none; }

/* ---------- Типографика ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--brown-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 0; color: var(--text); }

/* ---------- Контейнер ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 18px var(--shadow-lg);
}
.btn-primary:hover { background: var(--brown-dark); box-shadow: 0 8px 28px var(--shadow-lg); }

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--white); }

.btn-lg { padding: 18px 44px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }

/* ---------- Шапка ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg { width: 20px; height: 20px; fill: var(--white); }

.logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.5px;
}

.logo-text span { color: var(--terracotta); }

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

.nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}

.nav a:hover { color: var(--brown); background: var(--cream-dark); }

.header-cta { margin-left: 8px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px var(--shadow);
}

.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 8px; font-size: 1rem; color: var(--text); border-bottom: 1px solid var(--cream-dark); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 12px; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--cream) 55%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--terracotta-light) 0%, transparent 65%);
  opacity: 0.15;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-note::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: 0 8px 32px var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-image-badge .icon {
  width: 40px;
  height: 40px;
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.hero-image-badge .label { font-size: 0.78rem; color: var(--text-muted); }
.hero-image-badge .value { font-size: 0.95rem; font-weight: 700; color: var(--brown-dark); }

/* ---------- Секции ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--cream-dark); }
.section-dark { background: var(--brown-dark); color: var(--cream); }

.section-dark h2 { color: var(--cream); }
.section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(250,246,241,0.8); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.section-dark .section-header p { color: rgba(250,246,241,0.7); }

.section-label {
  display: inline-block;
  padding: 4px 14px;
  background: var(--cream-dark);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.section-dark .section-label { background: rgba(250,246,241,0.12); color: var(--terracotta-light); }

/* ---------- Преимущества ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.benefit-card:hover {
  box-shadow: 0 12px 36px var(--shadow);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--cream-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.benefit-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.benefit-card p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- Для кого ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.audience-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px var(--shadow-lg);
}

.audience-image img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }

.audience-list { display: flex; flex-direction: column; gap: 16px; }

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.audience-check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 1px;
}

.audience-item h4 { font-family: var(--font-body); font-size: 0.97rem; font-weight: 600; color: var(--brown-dark); margin-bottom: 3px; }
.audience-item p { font-size: 0.88rem; color: var(--text-muted); }

/* ---------- Формат курса ---------- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.format-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(250,246,241,0.15);
  background: rgba(250,246,241,0.06);
}

.format-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(250,246,241,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.format-card h3 { font-size: 1rem; margin-bottom: 6px; }

/* ---------- Программа ---------- */
.modules { display: flex; flex-direction: column; gap: 0; }

.module-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  position: relative;
}

.module-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.module-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}

.module-num-badge {
  width: 44px;
  height: 44px;
  background: var(--brown);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 1;
  flex-shrink: 0;
}

.module-content {
  padding: 4px 0 40px 0;
}

.module-content h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--brown-dark); font-family: var(--font-body); font-weight: 600; }
.module-content p { font-size: 0.9rem; color: var(--text-muted); }

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.module-tag {
  padding: 3px 10px;
  background: var(--cream-dark);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--brown);
  font-weight: 500;
}

/* ---------- Материалы ---------- */
.materials-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.materials-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 16px 48px var(--shadow-lg); }
.materials-image img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }

.materials-list { display: flex; flex-direction: column; gap: 12px; }

.material-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--cream-dark);
  border-radius: var(--radius);
}

.material-row span:first-child { font-size: 1.4rem; }
.material-name { font-weight: 600; font-size: 0.95rem; color: var(--brown-dark); flex: 1; }
.material-note { font-size: 0.82rem; color: var(--text-muted); }

.materials-tip {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--white);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- Процесс ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--border);
}

.step { text-align: center; padding: 0 16px; }

.step-circle {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step h3 { font-size: 0.97rem; font-family: var(--font-body); font-weight: 600; color: var(--brown-dark); margin-bottom: 6px; }
.step p { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item + .faq-item { margin-top: 2px; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--brown-dark);
  background: none;
  border: none;
  text-align: left;
  gap: 12px;
}

.faq-question:hover { background: var(--cream); }

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  font-size: 1rem;
  font-weight: 300;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--cream-dark); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--cream-dark);
  padding-top: 16px;
}

.faq-item.open .faq-answer { display: block; }

/* ---------- Форма записи ---------- */
.lead-section { background: var(--cream-dark); }

.lead-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lead-info h2 { margin-bottom: 16px; }
.lead-info p { font-size: 1rem; color: var(--text-muted); margin-bottom: 28px; }

.lead-perks { display: flex; flex-direction: column; gap: 10px; }

.lead-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}

.lead-perk::before { content: '✓'; color: var(--terracotta); font-weight: 700; font-size: 0.9rem; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 12px 48px var(--shadow);
}

.form-card h3 { font-family: var(--font-body); font-size: 1.15rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 6px; }
.form-card .form-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 3px rgba(122, 76, 43, 0.10);
  background: var(--white);
}

.form-group input.error { border-color: #C0392B; }
.form-error { font-size: 0.8rem; color: #C0392B; margin-top: 4px; display: none; }
.form-group.has-error .form-error { display: block; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--brown);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-group a { color: var(--brown); text-decoration: underline; }

.form-submit-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; }

/* ---------- Финальный CTA ---------- */
.final-cta {
  background: var(--brown);
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 { color: var(--white); margin-bottom: 14px; }
.final-cta p { color: rgba(250,246,241,0.8); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.final-cta .btn-primary { background: var(--terracotta); color: var(--white); box-shadow: 0 6px 24px rgba(0,0,0,0.25); }
.final-cta .btn-primary:hover { background: #A85A35; }

/* ---------- Подвал ---------- */
.footer {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo .logo-text { font-size: 1.2rem; }
.footer-logo .logo-mark { background: var(--terracotta); }
.footer-tagline { font-size: 0.87rem; color: rgba(250,246,241,0.6); margin-top: 12px; line-height: 1.6; }

.footer-col h4 { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(250,246,241,0.5); margin-bottom: 16px; }

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col a {
  font-size: 0.88rem;
  color: rgba(250,246,241,0.75);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--terracotta-light); }

.footer-bottom {
  border-top: 1px solid rgba(250,246,241,0.12);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal { font-size: 0.8rem; color: rgba(250,246,241,0.45); line-height: 1.6; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--brown-dark);
  color: var(--cream);
  padding: 20px 24px;
  display: none;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner.visible { display: flex; }
.cookie-banner p { font-size: 0.87rem; color: rgba(250,246,241,0.85); flex: 1; min-width: 240px; }
.cookie-banner a { color: var(--terracotta-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-cookie {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-cookie-accept { background: var(--terracotta); color: var(--white); }
.btn-cookie-accept:hover { background: #A85A35; }
.btn-cookie-decline { background: transparent; color: rgba(250,246,241,0.7); border: 1px solid rgba(250,246,241,0.25); }
.btn-cookie-decline:hover { background: rgba(250,246,241,0.08); }

/* ---------- Страница успеха / Юридические ---------- */
.page-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
  padding: 80px 0 80px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 32px;
  padding: 8px 0;
}

.back-link:hover { color: var(--brown-dark); }

.back-link::before { content: '←'; font-size: 1rem; }

.legal-content h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 12px; }
.legal-content .updated { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 36px; }
.legal-content h2 { font-size: 1.2rem; margin: 32px 0 12px; font-family: var(--font-body); }
.legal-content p { margin-bottom: 14px; font-size: 0.95rem; color: var(--text-muted); }
.legal-content ul { margin: 10px 0 14px 20px; list-style: disc; }
.legal-content ul li { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 6px; }
.legal-content a { color: var(--brown); text-decoration: underline; }

/* ---------- Fade-in анимация ---------- */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Адаптивность ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-width: 520px; margin: 0 auto; }
  .hero-image-badge { left: 8px; bottom: 12px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-image { max-width: 480px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps::before { display: none; }
  .lead-wrap { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .materials-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 40px; }
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .final-cta { padding: 60px 0; }
  .lead-wrap { gap: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .steps { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}
