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

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

:root {
  --brown: #8B5E3C;
  --gold: #C4943A;
  --gold-light: #D9A84E;
  --green: #3D5A3E;
  --green-dark: #2A3F2B;
  --cream: #F7F0E6;
  --cream-dark: #EDE3D3;
  --dark: #1A1208;
  --text: #2C1A0A;
  --text-muted: #6B5240;
  --white: #FFFFFF;
  --radius: 4px;
  --shadow: 0 2px 20px rgba(26, 18, 8, 0.10);
  --shadow-lg: 0 8px 40px rgba(26, 18, 8, 0.15);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 500;
}

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

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

/* ==============================
   COOKIE BANNER
   ============================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--cream);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.5;
  min-width: 200px;
}

.cookie-banner a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-accept {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: var(--gold-light);
}

/* ==============================
   NAVIGATION
   ============================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(247, 240, 230, 0.97);
  box-shadow: 0 2px 12px rgba(26, 18, 8, 0.08);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.nav-logo span {
  color: var(--gold);
}

.nav-cta {
  background: var(--green);
  color: var(--cream);
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ==============================
   HERO
   ============================== */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/hero.png');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.55);
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 18, 8, 0.65) 0%,
    rgba(26, 18, 8, 0.2) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 40px 80px;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(247, 240, 230, 0.85);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 520px;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.02em;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 148, 58, 0.4);
}

.btn-outline {
  color: rgba(247, 240, 230, 0.85);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(247, 240, 230, 0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  color: var(--cream);
  border-color: var(--cream);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247, 240, 230, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(247, 240, 230, 0.4);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==============================
   SECTION COMMON
   ============================== */

section {
  padding: 96px 40px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 400;
}

.section-title em {
  font-style: italic;
  color: var(--green);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 56px;
}

/* ==============================
   FOR WHOM
   ============================== */

.for-whom {
  background: var(--white);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.for-whom-card {
  padding: 40px 32px;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  position: relative;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.for-whom-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.for-whom-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--cream-dark);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}

.for-whom-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 500;
}

.for-whom-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==============================
   WHAT YOU LEARN
   ============================== */

.learn {
  background: var(--cream);
}

.learn-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.learn-image {
  border-radius: 2px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.learn-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.learn-image:hover img {
  transform: scale(1.03);
}

.learn-list {
  padding-top: 16px;
}

.learn-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.learn-item:last-child {
  border-bottom: none;
}

.learn-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.learn-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.learn-item h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 500;
}

.learn-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==============================
   COURSE FORMAT
   ============================== */

.format {
  background: var(--green-dark);
  color: var(--cream);
}

.format .section-title {
  color: var(--cream);
}

.format .section-desc {
  color: rgba(247, 240, 230, 0.7);
}

.format-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(247, 240, 230, 0.12);
  border: 1px solid rgba(247, 240, 230, 0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 56px;
}

.format-step {
  padding: 40px 32px;
  background: var(--green-dark);
  position: relative;
  transition: background 0.3s;
}

.format-step:hover {
  background: rgba(247, 240, 230, 0.04);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: rgba(196, 148, 58, 0.3);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}

.format-step h3 {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 500;
}

.format-step p {
  font-size: 0.88rem;
  color: rgba(247, 240, 230, 0.65);
  line-height: 1.65;
}

/* ==============================
   MATERIALS
   ============================== */

.materials {
  background: var(--cream-dark);
}

.materials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.materials-image {
  border-radius: 2px;
  overflow: hidden;
}

.materials-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.materials-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.materials-group h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.materials-group ul {
  list-style: none;
}

.materials-group li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(139, 94, 60, 0.1);
  line-height: 1.5;
}

.materials-group li:last-child {
  border-bottom: none;
}

.materials-group li::before {
  content: "—";
  color: var(--gold);
  margin-right: 8px;
  font-size: 0.8rem;
}

/* ==============================
   INSTRUCTOR
   ============================== */

.instructor {
  background: var(--white);
}

.instructor-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

.instructor-photo {
  border-radius: 2px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.instructor-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.instructor-name {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 400;
}

.instructor-role {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
}

.instructor-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.instructor-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

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

.fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--green);
  font-weight: 500;
  line-height: 1;
}

.fact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==============================
   RESULTS
   ============================== */

.results {
  background: var(--cream);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.result-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.result-card:hover img {
  transform: scale(1.04);
}

.result-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(26,18,8,0.75) 0%, transparent 100%);
  color: var(--cream);
  font-size: 0.85rem;
  transform: translateY(4px);
  opacity: 0.9;
}

/* ==============================
   FAQ
   ============================== */

.faq {
  background: var(--white);
}

.faq-list {
  max-width: 740px;
  margin-top: 56px;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--green);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--text-muted);
  transition: transform 0.3s, stroke 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--green);
  border-color: var(--green);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding-bottom: 24px;
}

/* ==============================
   LEAD FORM
   ============================== */

.lead-form-section {
  background: var(--green-dark);
  color: var(--cream);
}

.lead-form-section .section-title {
  color: var(--cream);
}

.lead-form-section .section-desc {
  color: rgba(247, 240, 230, 0.7);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.form-trust {
  padding-top: 8px;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.trust-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.trust-item h4 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 4px;
  font-weight: 500;
}

.trust-item p {
  font-size: 0.85rem;
  color: rgba(247, 240, 230, 0.6);
  line-height: 1.6;
}

.lead-form {
  background: rgba(247, 240, 230, 0.05);
  border: 1px solid rgba(247, 240, 230, 0.12);
  border-radius: 2px;
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.6);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(247, 240, 230, 0.06);
  border: 1px solid rgba(247, 240, 230, 0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}

.form-group input::placeholder {
  color: rgba(247, 240, 230, 0.3);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(247, 240, 230, 0.09);
}

.form-group select option {
  background: var(--green-dark);
  color: var(--cream);
}

.form-consent {
  font-size: 0.78rem;
  color: rgba(247, 240, 230, 0.45);
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-consent a {
  color: rgba(247, 240, 230, 0.65);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.form-submit:active {
  transform: translateY(0);
}

/* ==============================
   FOOTER
   ============================== */

.footer {
  background: var(--dark);
  color: rgba(247, 240, 230, 0.55);
  padding: 56px 40px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 240, 230, 0.08);
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(247, 240, 230, 0.45);
}

.footer-links-group h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 240, 230, 0.4);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  font-size: 0.88rem;
  color: rgba(247, 240, 230, 0.55);
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(247, 240, 230, 0.3);
}

.footer-legal p + p {
  margin-top: 4px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(247, 240, 230, 0.25);
  white-space: nowrap;
}

/* ==============================
   SUCCESS PAGE
   ============================== */

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  text-align: center;
  padding: 40px;
}

.success-box {
  max-width: 520px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-title {
  font-size: 2.4rem;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 400;
}

.success-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.success-back {
  display: inline-block;
  color: var(--green);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--green);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.success-back:hover {
  opacity: 0.7;
}

/* ==============================
   LEGAL PAGES
   ============================== */

.legal-page {
  padding: 120px 40px 80px;
  max-width: 740px;
  margin: 0 auto;
  background: var(--cream);
  min-height: 100vh;
}

.legal-page h1 {
  font-size: 2.4rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 400;
}

.legal-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 12px;
  font-weight: 500;
}

.legal-page p,
.legal-page li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-page ul, .legal-page ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-page a {
  color: var(--green);
  text-decoration: underline;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  transition: color 0.2s;
}

.legal-back:hover {
  color: var(--green);
}

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

@media (max-width: 1024px) {
  .for-whom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .learn-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .learn-image {
    position: static;
  }

  .learn-image img {
    height: 340px;
  }

  .instructor-layout {
    grid-template-columns: 280px 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 24px;
  }

  .nav {
    padding: 16px 24px;
  }

  .hero-content {
    padding: 100px 24px 72px;
  }

  .for-whom-grid {
    grid-template-columns: 1fr;
  }

  .format-steps {
    grid-template-columns: 1fr;
  }

  .materials-layout,
  .instructor-layout,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .instructor-photo {
    position: static;
    max-width: 280px;
  }

  .materials-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer {
    padding: 48px 24px 32px;
  }

  .lead-form {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .instructor-facts {
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
