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

:root {
  --teal-900: #0d3d52;
  --teal-700: #1a6b8a;
  --teal-500: #2590b8;
  --teal-100: #d6eef7;
  --amber-600: #c4882d;
  --amber-400: #e0a84e;
  --amber-100: #fdf3e0;
  --cream: #faf8f3;
  --cream-dark: #f0ede4;
  --ink: #1c1c1c;
  --ink-soft: #4a4a4a;
  --ink-muted: #7a7a7a;
  --white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --container: 1160px;
  --section-y: 88px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, color .18s, box-shadow .18s, transform .12s;
  border: 2px solid transparent;
  padding: .6rem 1.4rem;
  gap: .4rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-700);
  color: var(--white);
  border-color: var(--teal-700);
}
.btn-primary:hover { background: var(--teal-900); border-color: var(--teal-900); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--teal-700);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--teal-100); color: var(--teal-900); }

.btn-outline {
  background: transparent;
  color: var(--teal-700);
  border-color: var(--teal-700);
}
.btn-outline:hover { background: var(--teal-100); }

.btn-lg { padding: .85rem 2rem; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: .4rem .9rem; font-size: .875rem; }
.btn-full { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}

.header-scrolled {
  border-bottom-color: var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  font-size: 1.3rem;
  color: var(--amber-600);
  line-height: 1;
}
.logo-text {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: bold;
  color: var(--teal-900);
  letter-spacing: .02em;
}

.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.main-nav ul li a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.main-nav ul li a:hover { color: var(--teal-700); background: var(--teal-100); }

.header-cta { margin-left: auto; flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.burger-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-active span:nth-child(2) { opacity: 0; }
.burger-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: .75rem;
  color: var(--teal-900);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.section-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber-600);
  margin-bottom: .5rem;
}

.hero {
  padding: 80px 0 70px;
  background: linear-gradient(135deg, var(--cream) 0%, #f5f8fa 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--amber-600);
  background: var(--amber-100);
  padding: .3rem .75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--teal-900);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.proof-item strong {
  font-size: 1.4rem;
  font-family: Georgia, serif;
  color: var(--teal-700);
}
.proof-item span {
  font-size: .78rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--cream-dark);
}

.hero-image { position: relative; }
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 16/10;
}

.for-whom {
  padding: var(--section-y) 0;
  background: var(--white);
}

.whom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.whom-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--cream-dark);
  transition: box-shadow .2s, transform .2s;
}
.whom-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.whom-icon { font-size: 2rem; margin-bottom: 1rem; line-height: 1; }
.whom-card h3 {
  font-size: 1rem;
  font-family: Georgia, serif;
  color: var(--teal-900);
  margin-bottom: .5rem;
}
.whom-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }

.results {
  padding: var(--section-y) 0;
  background: var(--cream);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.result-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.result-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.result-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.result-info { padding: 1.5rem; }
.result-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--amber-600);
  background: var(--amber-100);
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-bottom: .6rem;
}
.result-info h3 {
  font-size: 1.1rem;
  color: var(--teal-900);
  margin-bottom: .4rem;
}
.result-info p { font-size: .9rem; color: var(--ink-soft); }

.how-it-works {
  padding: var(--section-y) 0;
  background: var(--white);
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.format-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 16/10;
}

.format-items { display: flex; flex-direction: column; gap: 1.75rem; }

.format-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.format-num {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--teal-100);
  min-width: 2.5rem;
  line-height: 1;
  padding-top: .15rem;
}
.format-text h3 {
  font-size: 1rem;
  color: var(--teal-900);
  margin-bottom: .35rem;
}
.format-text p { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }

.steps {
  padding: var(--section-y) 0;
  background: var(--teal-900);
}
.steps .section-title { color: var(--white); }

.steps-track {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
}
.step-num {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--amber-400);
  margin-bottom: .75rem;
  line-height: 1;
}
.step-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.step-card p { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.step-arrow {
  font-size: 1.5rem;
  color: var(--amber-400);
  opacity: .6;
  padding-top: 1.75rem;
  flex-shrink: 0;
  align-self: flex-start;
}

.materials-section {
  padding: var(--section-y) 0;
  background: var(--amber-100);
}
.materials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.materials-text h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--teal-900);
  margin-bottom: 1rem;
}
.materials-text p {
  font-size: .95rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.materials-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.instructor {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.instructor-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.instructor-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.instructor-bio h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--teal-900);
  margin-bottom: .25rem;
}
.instructor-tagline {
  font-size: 1rem;
  color: var(--amber-600);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.instructor-bio p {
  font-size: .95rem;
  color: var(--ink-soft);
  margin-bottom: .9rem;
  line-height: 1.75;
}
.instructor-facts {
  display: flex;
  gap: 2rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--cream-dark);
}
.fact-item { display: flex; flex-direction: column; gap: .1rem; }
.fact-item strong {
  font-size: 1.6rem;
  font-family: Georgia, serif;
  color: var(--teal-700);
}
.fact-item span { font-size: .8rem; color: var(--ink-muted); }

.reviews {
  padding: var(--section-y) 0;
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--cream-dark);
}
.review-stars { color: var(--amber-600); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.review-text {
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 1.1rem;
  font-style: italic;
}
.review-author { display: flex; flex-direction: column; gap: .1rem; }
.review-author strong { font-size: .9rem; color: var(--teal-900); }
.review-author span { font-size: .8rem; color: var(--ink-muted); }

.faq {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-size: .975rem;
  font-weight: 600;
  color: var(--teal-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .15s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--amber-600);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary { background: var(--teal-100); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--cream); }
.faq-answer { padding: 0 1.5rem 1.1rem; }
.faq-answer p { font-size: .925rem; color: var(--ink-soft); line-height: 1.7; }

.lead-form-section {
  padding: var(--section-y) 0;
  background: linear-gradient(160deg, var(--teal-900) 0%, #0f4d66 100%);
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.form-intro p { font-size: .975rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 1.5rem; }

.form-promise {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.form-promise li {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  padding-left: 1.4rem;
  position: relative;
}
.form-promise li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--amber-400);
  font-weight: bold;
}

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
}

.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
}
.req { color: var(--teal-700); }

.form-field input,
.form-field textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px var(--teal-100);
  background: var(--white);
}
.form-field input.input-error { border-color: #d64040; }
.field-error {
  display: block;
  font-size: .8rem;
  color: #c0392b;
  margin-top: .3rem;
  min-height: .9rem;
}

.form-consent label { display: block; margin-bottom: 0; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
}
.checkbox-label input[type=checkbox] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: .15rem;
  accent-color: var(--teal-700);
  cursor: pointer;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}
.checkbox-label input[type=checkbox]:focus { box-shadow: none; }
.checkbox-label span { font-size: .875rem; color: var(--ink-soft); line-height: 1.5; }
.checkbox-label a { color: var(--teal-700); text-decoration: underline; text-underline-offset: 2px; }

.form-note {
  font-size: .78rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: .9rem;
  line-height: 1.5;
}

.site-footer { background: var(--ink); color: var(--white); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 56px 24px 40px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand .logo { margin-bottom: .75rem; }
.logo-footer .logo-text { color: var(--white); }
.logo-footer .logo-mark { color: var(--amber-400); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.5); }

.footer-links h4,
.footer-legal-links h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: .75rem;
  font-family: -apple-system, sans-serif;
}
.footer-links ul,
.footer-legal-links ul {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.footer-links a,
.footer-legal-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer-links a:hover,
.footer-legal-links a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; }
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.4); }
.legal-details { font-size: .75rem; color: rgba(255,255,255,.3); }

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  padding: 1.25rem 1.5rem;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  font-size: .875rem;
  color: rgba(255,255,255,.85);
  flex: 1;
  min-width: 200px;
}
.cookie-banner a { color: var(--amber-400); text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }

.page-success {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-success .site-footer { margin-top: auto; }

.success-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--cream);
}
.success-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: var(--teal-700);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.success-card h1 {
  font-size: 2rem;
  color: var(--teal-900);
  margin-bottom: 1rem;
}
.success-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.success-hint {
  font-size: .9rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}

.legal-main { padding: 64px 0 80px; background: var(--cream); }
.legal-container { max-width: 740px; }
.legal-container h1 {
  font-size: 2rem;
  color: var(--teal-900);
  margin-bottom: .5rem;
}
.legal-updated {
  font-size: .85rem;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
}
.legal-container h2 {
  font-size: 1.15rem;
  color: var(--teal-900);
  margin: 2rem 0 .75rem;
}
.legal-container h3 {
  font-size: 1rem;
  color: var(--teal-700);
  margin: 1.5rem 0 .5rem;
}
.legal-container p {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.legal-container ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: .75rem;
}
.legal-container ul li {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: .35rem;
}
.legal-container a { color: var(--teal-700); text-decoration: underline; }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .whom-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .instructor-inner { grid-template-columns: 260px 1fr; gap: 2.5rem; }
  .format-grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --section-y: 60px; }

  .burger { display: flex; }
  .header-cta { display: none; }

  .main-nav {
    display: none;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--cream);
    padding: 1.5rem;
    z-index: 99;
    overflow-y: auto;
  }
  .main-nav.nav-open { display: block; }
  .main-nav ul { flex-direction: column; gap: .25rem; }
  .main-nav ul li a { display: block; padding: .7rem 1rem; font-size: 1rem; }

  .hero { padding: 48px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { order: -1; }

  .whom-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .format-visual { display: none; }
  .materials-inner { grid-template-columns: 1fr; gap: 2rem; }
  .instructor-inner { grid-template-columns: 1fr; gap: 2rem; }
  .instructor-photo img { max-height: 340px; aspect-ratio: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .steps-track { flex-direction: column; }
  .step-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 40px 24px 32px; }
  .footer-bottom .container { flex-direction: column; gap: .25rem; align-items: flex-start; }
  .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; }
}

@media (max-width: 480px) {
  .whom-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .instructor-facts { flex-direction: column; gap: 1rem; }
  .lead-form { padding: 1.5rem; }
  .form-wrap { gap: 1.5rem; }
}
