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

:root {
  --cream: #FAF7F2;
  --cream-dark: #F2EBE0;
  --ink: #1C1A17;
  --ink-light: #4A4540;
  --ink-muted: #8A8078;
  --accent: #B5654A;
  --accent-light: #D4896F;
  --accent-pale: #EDE0D4;
  --warm-light: #FDF5EC;
  --border: #E2D8CC;
  --white: #FFFFFF;

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

  --max-width: 1100px;
  --section-padding: 80px 20px;
  --radius: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(28, 26, 23, 0.06);
  --shadow-md: 0 4px 20px rgba(28, 26, 23, 0.10);
  --shadow-lg: 0 8px 40px rgba(28, 26, 23, 0.12);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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


h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
  color: var(--ink);
}

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

p {
  color: var(--ink-light);
  font-size: 1rem;
  line-height: 1.7;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 560px;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-pale);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 16px 40px;
}


.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-light);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

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

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
  z-index: 99;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile ul li a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}

.nav-mobile .btn {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}


.hero {
  padding: 80px 20px 0;
  background: var(--cream);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--ink);
}

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

.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-light);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 16px;
}

.hero-image {
  position: relative;
  padding-bottom: 80px;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.hero-image-tag {
  position: absolute;
  bottom: 100px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.hero-image-tag::before {
  content: "✦";
  margin-right: 6px;
  color: var(--accent);
}


.problem {
  padding: var(--section-padding);
  background: var(--ink);
}

.problem .section-eyebrow {
  color: var(--accent-light);
}

.problem h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.problem .section-subtitle {
  color: rgba(255,255,255,0.55);
}

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

.problem-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background 0.2s;
}

.problem-card:hover {
  background: rgba(255,255,255,0.08);
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(181, 101, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.problem-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.problem-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}


.benefits {
  padding: var(--section-padding);
  background: var(--warm-light);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.benefits-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.benefit-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}


.how {
  padding: var(--section-padding);
  background: var(--cream);
}

.how-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-header .section-subtitle {
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.how-step h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.85rem;
  color: var(--ink-muted);
}


.audience {
  padding: var(--section-padding);
  background: var(--accent-pale);
}

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

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--ink);
}

.audience-list li::before {
  content: "—";
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 600;
  margin-top: 1px;
}

.audience-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}


.teacher {
  padding: var(--section-padding);
  background: var(--cream);
}

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

.teacher-photo {
  position: relative;
}

.teacher-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.teacher-photo-badge {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

.teacher-content .section-eyebrow {
  margin-bottom: 8px;
}

.teacher-name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}

.teacher-bio {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.8;
}

.teacher-values {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.teacher-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
}

.teacher-value::before {
  content: "✓";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
}


.program {
  padding: var(--section-padding);
  background: var(--warm-light);
}

.program-header {
  margin-bottom: 48px;
}

.program-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.module {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.2s;
}

.module:hover {
  box-shadow: var(--shadow-sm);
}

.module-num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--accent-pale);
  line-height: 1;
  width: 40px;
}

.module-body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.module-body p {
  font-size: 0.9rem;
  color: var(--ink-muted);
}


.beforeafter {
  padding: var(--section-padding);
  background: var(--cream);
}

.beforeafter-header {
  text-align: center;
  margin-bottom: 48px;
}

.beforeafter-image {
  max-width: 800px;
  margin: 0 auto;
}

.beforeafter-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.beforeafter-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  gap: 20px;
}

.ba-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ba-label.after {
  color: var(--accent);
}


.faq {
  padding: var(--section-padding);
  background: var(--warm-light);
}

.faq-header {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

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

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s;
  font-weight: 300;
}

.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 20px;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

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


.leadform {
  padding: var(--section-padding);
  background: var(--ink);
}

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

.leadform-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.leadform-content p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

.trust-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.trust-item::before {
  content: "✓";
  color: var(--accent-light);
  font-weight: 600;
  flex-shrink: 0;
}

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

.form-card h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--ink);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-light);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder {
  color: var(--ink-muted);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.form-note a {
  color: var(--accent);
  text-decoration: underline;
}


.ctaband {
  padding: 64px 20px;
  background: var(--accent);
  text-align: center;
}

.ctaband h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.ctaband p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}


.footer {
  background: #111008;
  color: rgba(255,255,255,0.5);
  padding: 48px 20px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

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

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

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

.footer-company {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}


.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 680px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: slideUp 0.4s ease;
}

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

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  flex: 1;
  min-width: 200px;
}

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

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

.cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}

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

.cookie-reject {
  background: none;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.cookie-reject:hover {
  color: rgba(255,255,255,0.8);
}


.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.legal-hero {
  background: var(--ink);
  padding: 64px 20px 48px;
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.legal-hero p {
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-size: 0.9rem;
}

.legal-body {
  padding: 60px 20px 80px;
  background: var(--cream);
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--ink);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--ink-light);
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 0 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--ink-light);
}


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

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 28px;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.success-card p {
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}


@media (max-width: 960px) {
  .nav-links, .nav-cta .btn {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-image {
    padding-bottom: 0;
    max-width: 560px;
    margin: 0 auto;
  }

  .hero-image-tag {
    left: 10px;
    bottom: 16px;
  }

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

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

  .benefits-image {
    max-width: 480px;
  }

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

  .how-steps::before {
    display: none;
  }

  .audience-inner {
    grid-template-columns: 1fr;
  }

  .teacher-layout {
    grid-template-columns: 1fr;
  }

  .teacher-photo {
    max-width: 300px;
  }

  .leadform-inner {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 56px 20px;
  }

  .hero {
    padding-top: 48px;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
  }

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

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

  .success-card {
    padding: 40px 24px;
  }
}
