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

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

:root {
  --bg: #FDF8F2;
  --text: #1C1208;
  --primary: #C8893A;
  --primary-dark: #A5701F;
  --primary-light: #F2E0C4;
  --muted: #7A6547;
  --surface: #F0E6D3;
  --border: #E0D0B8;
  --dark: #2C1A0E;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1100px;
  --radius: 8px;
  --transition: 0.25s ease;
}

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

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

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

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

/* ── UTILITIES ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--surface);
}

.section--dark {
  background: var(--dark);
  color: var(--bg);
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-title--light {
  color: var(--bg);
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-desc--light {
  color: var(--primary-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

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

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 137, 58, 0.35);
}

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

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(44, 26, 14, 0.06);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

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

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

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}

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

.header-cta {
  padding: 10px 24px;
  font-size: 14px;
}

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

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

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

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28, 18, 8, 0.82) 0%,
    rgba(28, 18, 8, 0.55) 50%,
    rgba(28, 18, 8, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 137, 58, 0.2);
  border: 1px solid rgba(200, 137, 58, 0.4);
  color: #F2C882;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title em {
  color: var(--primary);
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: rgba(253, 248, 242, 0.82);
  margin-bottom: 44px;
  max-width: 480px;
  line-height: 1.65;
}

.hero-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}

.hero-input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}

.hero-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.18);
}

.hero-note {
  font-size: 13px;
  color: rgba(253, 248, 242, 0.5);
  margin-top: 12px;
}

.hero-note a {
  color: rgba(253, 248, 242, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
  background: var(--dark);
  padding: 28px 0;
}

.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.proof-text {
  font-size: 13px;
  color: rgba(253, 248, 242, 0.6);
  margin-top: 4px;
}

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

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

.benefit-card:hover {
  box-shadow: 0 8px 32px rgba(44, 26, 14, 0.08);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PROGRAM ── */
.program-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.program-modules {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}

.module-header:hover {
  background: var(--surface);
}

.module-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.module-num {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  min-width: 32px;
}

.module-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
}

.module-arrow {
  width: 20px;
  height: 20px;
  color: var(--muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.module.open .module-arrow {
  transform: rotate(180deg);
}

.module-body {
  display: none;
  padding: 0 24px 20px 72px;
}

.module.open .module-body {
  display: block;
}

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

.module-body li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.module-body li::before {
  content: '—';
  color: var(--primary);
  flex-shrink: 0;
}

/* ── TEACHER ── */
.teacher-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.teacher-photo {
  position: relative;
}

.teacher-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

.teacher-photo::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  z-index: -1;
}

.teacher-name {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.teacher-role {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 28px;
}

.teacher-bio {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.teacher-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.teacher-stat {
  text-align: left;
}

.teacher-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.teacher-stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* ── RESULTS ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.result-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 137, 58, 0.25);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
}

.result-period {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.result-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 12px;
}

.result-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-items li {
  font-size: 15px;
  color: rgba(253, 248, 242, 0.65);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.result-items li::before {
  content: '✓';
  color: var(--primary);
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}

/* ── LEARNING FORMAT ── */
.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.format-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.format-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.format-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.format-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
  transition: transform var(--transition), background var(--transition);
}

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

.faq-answer {
  display: none;
  padding: 0 28px 22px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

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

/* ── LEAD FORM ── */
.lead-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.lead-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.lead-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.lead-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 28px;
}

.lead-promises {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-promises li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lead-promises li::before {
  content: '✓';
  background: rgba(255, 255, 255, 0.2);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.lead-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 20px 60px rgba(44, 26, 14, 0.2);
}

.lead-form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.lead-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

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

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

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

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 137, 58, 0.12);
}

.form-input.error {
  border-color: #E53E3E;
}

.form-error {
  font-size: 12px;
  color: #E53E3E;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-select {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 16px;
  border-radius: var(--radius);
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6547' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select:focus {
  border-color: var(--primary);
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
  text-align: center;
}

.form-note a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

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

.footer-about {
  font-size: 14px;
  color: rgba(253, 248, 242, 0.5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-legal-info {
  font-size: 12px;
  color: rgba(253, 248, 242, 0.35);
  line-height: 1.8;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 248, 242, 0.4);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(253, 248, 242, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

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

.footer-copy {
  font-size: 13px;
  color: rgba(253, 248, 242, 0.3);
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--dark);
  border-top: 1px solid rgba(200, 137, 58, 0.3);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 14px;
  color: rgba(253, 248, 242, 0.75);
  line-height: 1.5;
  flex: 1;
  min-width: 280px;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all var(--transition);
}

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

.cookie-btn--accept:hover {
  background: var(--primary-dark);
}

.cookie-btn--close {
  background: transparent;
  color: rgba(253, 248, 242, 0.5);
  border: 1px solid rgba(253, 248, 242, 0.15);
}

.cookie-btn--close:hover {
  color: var(--white);
  border-color: rgba(253, 248, 242, 0.4);
}

/* ── LEGAL PAGES ── */
.legal-hero {
  background: var(--surface);
  padding: 120px 0 64px;
  border-bottom: 1px solid var(--border);
}

.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.legal-date {
  font-size: 14px;
  color: var(--muted);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin: 40px 0 12px;
}

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

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

.legal-content ul {
  list-style: none;
  margin: 8px 0 14px;
  padding-left: 0;
}

.legal-content li {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.legal-content li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 32px;
  transition: gap var(--transition);
}

.back-link:hover {
  gap: 12px;
}

/* ── SUCCESS PAGE ── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 36px;
}

.success-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.success-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .teacher-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .teacher-photo img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
  .nav, .header-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .teacher-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .teacher-photo {
    max-width: 340px;
    margin: 0 auto;
  }
  .teacher-photo::before {
    display: none;
  }
  .program-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .format-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lead-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .lead-form-box {
    padding: 32px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > *:first-child {
    grid-column: 1 / -1;
  }
  .proof-bar-inner {
    gap: 32px;
  }
  .hero-form-group {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .teacher-stats {
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .lead-form-box {
    padding: 28px 20px;
  }
}
