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

:root {
  --clay:       #C4785A;
  --clay-light: #E8A98A;
  --clay-dark:  #9C5A3E;
  --cream:      #FAF6F1;
  --cream-mid:  #F2EBE2;
  --cream-dark: #E5D9CC;
  --bark:       #3D2B1F;
  --bark-mid:   #6B4A38;
  --sage:       #7A9471;
  --sage-light: #A8C4A0;
  --white:      #FFFFFF;
  --text:       #2E1F14;
  --text-muted: #7A6B62;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-card: 0 4px 24px rgba(61, 43, 31, 0.10);
  --shadow-btn:  0 2px 12px rgba(196, 120, 90, 0.35);

  --max-w: 1140px;
  --section-py: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

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-heading);
  line-height: 1.25;
  color: var(--bark);
}

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

p { color: var(--text); }

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

section {
  padding: var(--section-py) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 120, 90, 0.45);
}

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

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

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow 0.2s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(61, 43, 31, 0.08);
}

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bark);
}
.logo-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--clay);
  text-transform: uppercase;
}

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

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--bark-mid);
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--clay); }

.nav-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 20px 24px;
  gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  color: var(--bark);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.hero {
  padding-top: 100px;
  padding-bottom: 0;
  background: var(--cream);
  overflow: hidden;
}

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

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-mid);
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  color: var(--bark-mid);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}

.hero-title {
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--clay);
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clay);
}
.trust-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(61, 43, 31, 0.18);
  aspect-ratio: 4/3;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}
.hero-card-icon {
  font-size: 1.4rem;
}
.hero-card-label {
  font-weight: 600;
  color: var(--bark);
}
.hero-card-sub {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.hero-wave {
  width: 100%;
  margin-top: 0;
  line-height: 0;
}
.hero-wave svg {
  display: block;
  width: 100%;
}

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

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

.benefit-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.benefit-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
}

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

.format-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.format-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.format-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.format-content {}
.format-steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.format-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--clay);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.step-body h4 { margin-bottom: 4px; }
.step-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.for-whom {
  background: var(--bark);
  color: var(--cream);
}
.for-whom h2, .for-whom h3 {
  color: var(--cream);
}
.for-whom .section-label {
  color: var(--clay-light);
}
.for-whom .section-subtitle {
  color: var(--cream-dark);
}

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

.whom-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.whom-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}
.whom-item h4 {
  color: var(--cream);
  margin-bottom: 6px;
}
.whom-item p {
  font-size: 0.9rem;
  color: var(--cream-dark);
}

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

.learn-header {
  margin-bottom: 52px;
}

.learn-seasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.season-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: transform 0.22s;
}
.season-card:hover { transform: translateY(-5px); }

.season-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.season-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.season-card:hover .season-img img {
  transform: scale(1.04);
}

.season-info {
  background: var(--cream);
  padding: 20px 18px;
}

.season-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.tag-spring { background: #E8F5E9; color: #388E3C; }
.tag-summer { background: #FFF8E1; color: #F57F17; }
.tag-autumn { background: #FBE9E7; color: #BF360C; }
.tag-winter { background: #E3F2FD; color: #1565C0; }

.season-info h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.season-topics {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.season-topics li {
  font-size: 0.83rem;
  color: var(--text-muted);
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.season-topics li::before {
  content: '—';
  color: var(--clay);
  flex-shrink: 0;
}

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

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

.results-text {}
.results-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.result-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.result-check {
  width: 24px;
  height: 24px;
  background: var(--sage-light);
  color: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.result-item p {
  font-size: 0.97rem;
}

.results-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.result-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.result-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.result-photo.tall {
  grid-row: span 2;
}
.result-photo.tall img {
  aspect-ratio: auto;
  height: 100%;
  object-fit: cover;
}

.mentor {
  background: var(--cream-mid);
}

.mentor-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.mentor-photo {
  position: relative;
}
.mentor-photo img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(61, 43, 31, 0.15);
}
.mentor-quote {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  max-width: 220px;
  box-shadow: var(--shadow-card);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--bark-mid);
  border-left: 3px solid var(--clay);
}

.mentor-content {}
.mentor-name {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.mentor-role {
  color: var(--clay);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.mentor-bio {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.mentor-facts {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.mentor-fact {
  display: flex;
  flex-direction: column;
}
.fact-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clay);
}
.fact-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.faq-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--bark);
  user-select: none;
}

.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.25s;
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.lead-form-section {
  background: linear-gradient(135deg, var(--bark) 0%, var(--clay-dark) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.lead-form-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.lead-form-section h2 {
  color: var(--cream);
  margin-bottom: 16px;
}
.lead-form-section .section-label {
  color: var(--clay-light);
}
.lead-form-desc {
  color: var(--cream-dark);
  margin-bottom: 44px;
  font-size: 1.05rem;
}

.lead-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream-dark);
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.97rem;
  color: var(--cream);
  font-family: var(--font-body);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder {
  color: rgba(250,246,241,0.4);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clay-light);
  background: rgba(255,255,255,0.15);
}

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

.form-consent {
  margin: 20px 0 28px;
  font-size: 0.82rem;
  color: rgba(250,246,241,0.6);
  line-height: 1.5;
}
.form-consent a {
  color: var(--clay-light);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  background: var(--clay);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(196, 120, 90, 0.4);
}
.btn-submit:hover {
  background: var(--clay-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 120, 90, 0.5);
}
.btn-submit:active {
  transform: translateY(0);
}

.site-footer {
  background: var(--bark);
  color: var(--cream);
  padding: 60px 0 32px;
}

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

.footer-brand {}
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--cream-dark);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 300px;
}
.footer-company {
  font-size: 0.8rem;
  color: rgba(250,246,241,0.5);
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--cream-dark);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--clay-light); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(250,246,241,0.45);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(250,246,241,0.5);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--clay-light); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bark);
  color: var(--cream);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--cream-dark);
  flex: 1;
  min-width: 220px;
}
.cookie-text a {
  color: var(--clay-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--clay);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-cookie-accept:hover { background: var(--clay-dark); }

.btn-cookie-decline {
  background: transparent;
  color: var(--cream-dark);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-cookie-decline:hover { background: rgba(255,255,255,0.06); }

.legal-page {
  padding-top: 100px;
  min-height: 100vh;
  background: var(--cream);
}

.legal-hero {
  background: var(--bark);
  padding: 64px 0;
  margin-bottom: 0;
}
.legal-hero h1 { color: var(--cream); }
.legal-hero .section-label { color: var(--clay-light); }

.legal-content {
  padding: 60px 0 80px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--clay);
  text-decoration: underline;
}

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

.success-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.success-page h1 {
  margin-bottom: 16px;
}

.success-page p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
}

@media (max-width: 1024px) {
  :root { --section-py: 64px; }

  .hero-inner { gap: 40px; }
  .format-inner { gap: 48px; }
  .mentor-inner { grid-template-columns: 320px 1fr; gap: 48px; }
  .learn-seasons { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-py: 52px; }

  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .hero-card { bottom: 16px; left: 16px; }
  .hero-content { max-width: 100%; }

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

  .format-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .learn-seasons { grid-template-columns: 1fr 1fr; }

  .results-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mentor-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mentor-quote {
    bottom: 16px;
    right: 16px;
    max-width: 180px;
  }

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

  .lead-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .learn-seasons { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-trust { justify-content: space-between; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
