

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

:root {
  --cream: #FDF8F3;
  --cream-dark: #F2EAE0;
  --terracotta: #C4704E;
  --terracotta-dark: #A85D3B;
  --terracotta-light: #E8A98A;
  --brown: #6B4C3B;
  --brown-light: #9E7B67;
  --brown-dark: #3D2B1F;
  --peach: #F0D5C0;
  --sage: #A8B89A;
  --white: #FFFFFF;
  --text: #3D2B1F;
  --text-muted: #7A5C4C;
  --border: #DFD0C4;
  --shadow: rgba(61, 43, 31, 0.12);

  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--terracotta-dark);
}

ul {
  list-style: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--brown-dark);
  text-decoration: none;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.nav__link:hover {
  color: var(--text);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--terracotta);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
}

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

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 72px 0 80px;
  overflow: hidden;
  position: relative;
}

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

.hero__eyebrow {
  display: inline-block;
  background: var(--peach);
  color: var(--terracotta-dark);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__title em {
  color: var(--terracotta);
  font-style: normal;
}

.hero__text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(196, 112, 78, 0.35);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 112, 78, 0.45);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: transparent;
  color: var(--text);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--terracotta-light);
  background: var(--peach);
  color: var(--text);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

.hero__trust-dots {
  display: flex;
  gap: 3px;
}

.hero__trust-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: var(--terracotta-light);
  overflow: hidden;
}

.hero__trust-dot:nth-child(2) { background: var(--sage); margin-left: -8px; }
.hero__trust-dot:nth-child(3) { background: var(--peach); margin-left: -8px; }

.hero__image-wrap {
  position: relative;
}

.hero__image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px var(--shadow);
}

.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 32px var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__badge-icon {
  font-size: 28px;
}

.hero__badge-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero__badge-text strong {
  display: block;
  font-size: 18px;
  color: var(--text);
  font-weight: 700;
}

.for-whom {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow);
}

.card__icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

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

.outcomes {
  padding: 80px 0;
}

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

.outcomes__image {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px var(--shadow);
}

.outcomes__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.outcome-item__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--terracotta-dark);
}

.outcome-item__body {}

.outcome-item__title {
  font-weight: 700;
  color: var(--brown-dark);
  font-size: 16px;
  margin-bottom: 4px;
}

.outcome-item__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.format {
  padding: 80px 0;
  background: var(--white);
}

.format__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.format-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.format-card__icon {
  font-size: 40px;
  margin-bottom: 14px;
  line-height: 1;
}

.format-card__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.format-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.teacher {
  padding: 80px 0;
}

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

.teacher__image {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 3/4;
  box-shadow: 0 16px 48px var(--shadow);
}

.teacher__quote {
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  margin: 24px 0;
  font-size: 17px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.75;
}

.teacher__name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.teacher__role {
  color: var(--terracotta);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.teacher__bio {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.teacher__facts {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.teacher__fact {
  text-align: center;
}

.teacher__fact-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--terracotta);
  display: block;
}

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

.lead-form-section {
  padding: 80px 0;
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
}

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

.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

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

.lead-form__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.lead-form__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.65;
}

.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

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

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

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

.form-input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 112, 78, 0.15);
}

.form-input::placeholder {
  color: var(--brown-light);
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.form-checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--terracotta);
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-checkbox-label a {
  color: var(--terracotta);
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-body);
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: left;
}

.faq {
  padding: 80px 0;
  background: var(--white);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
  text-align: left;
}

.faq-question__text {
  font-size: 17px;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.4;
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  font-size: 14px;
  color: var(--terracotta-dark);
  font-weight: 700;
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: var(--white);
}

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

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

.final-cta {
  padding: 80px 0;
  text-align: center;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.final-cta__text {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--white);
}

.footer__company {
  font-size: 13px;
  line-height: 1.7;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 13px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 560px;
  background: var(--brown-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
  transform: translateY(0);
  transition: transform var(--transition), opacity var(--transition);
}

.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--terracotta-light);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-btn-accept {
  padding: 10px 22px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
}

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

.cookie-btn-decline {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  font-family: var(--font-body);
}

.cookie-btn-decline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

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

.success-icon {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 24px;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 14px;
}

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

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.legal-page .legal-date {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--brown-dark);
  margin: 28px 0 10px;
}

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

.legal-page a {
  color: var(--brown-dark);
}

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

  .teacher__inner {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    box-shadow: 0 8px 24px var(--shadow);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__link {
    padding: 10px 12px;
    border-radius: var(--radius);
    width: 100%;
    font-size: 16px;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .nav__burger {
    display: flex;
  }

  .nav {
    position: relative;
  }

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

  .hero__image-wrap {
    order: -1;
  }

  .hero__badge {
    bottom: -12px;
    left: 12px;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .format__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .teacher__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .teacher__image {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 1;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

@media (max-width: 480px) {
  .format__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-secondary {
    width: 100%;
  }

  .teacher__facts {
    justify-content: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
