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

:root {
  --bg:          #0C0804;
  --bg-2:        #181006;
  --bg-card:     #1E1509;
  --border:      rgba(200, 145, 50, 0.18);
  --amber:       #C8830A;
  --amber-light: #E09A25;
  --amber-pale:  rgba(200, 131, 10, 0.12);
  --text:        #EDE5D0;
  --text-muted:  #8C8070;
  --text-soft:   #B8A990;
  --heading:     'Cormorant Garamond', Georgia, serif;
  --body:        'Nunito Sans', system-ui, sans-serif;
  --radius:      10px;
  --radius-lg:   18px;
  --max-w:       1100px;
  --transition:  0.25s ease;
}

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

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

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--dark { background: var(--bg); }
.section--mid  { background: var(--bg-2); }

.tag {
  display: inline-block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 18px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 600px;
  line-height: 1.8;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin: 20px 0 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  padding: 15px 32px;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: #0C0804;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 131, 10, 0.35);
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(12, 8, 4, 0.96);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

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

.nav__logo {
  font-family: var(--heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav__logo span { color: var(--amber); }

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

.nav__links a {
  font-size: 0.875rem;
  color: var(--text-soft);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }

.nav__cta {
  padding: 11px 24px;
  font-size: 0.85rem;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 8, 4, 0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
}
.nav__mobile a:hover { color: var(--amber); }

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

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 8, 4, 0.93) 40%,
    rgba(12, 8, 4, 0.6) 70%,
    rgba(12, 8, 4, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--amber);
}

.hero__title {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #FAF5EA;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--amber-light);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}

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

.hero__note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.pain {
  background: var(--bg-2);
  padding: 72px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.pain__item {
  display: flex;
  gap: 16px;
}
.pain__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pain__item-title {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.pain__item-text { font-size: 0.9rem; color: var(--text-soft); }

.benefits {
  background: var(--bg);
}
.benefits__header { margin-bottom: 56px; }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color var(--transition), transform var(--transition);
}
.benefit-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
}

.benefit-card__num {
  font-family: var(--heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}
.benefit-card__title {
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.benefit-card__text { font-size: 0.9rem; color: var(--text-soft); line-height: 1.75; }

.format {
  background: var(--bg-2);
}
.format__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.format__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.format__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.format__image:hover img { transform: scale(1.03); }
.format__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,131,10,0.15), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.format__frame {
  position: absolute;
  inset: -1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  z-index: 2;
  pointer-events: none;
}

.format__steps { margin-top: 36px; }

.step {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber-pale);
  border: 1px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--amber);
  flex-shrink: 0;
}
.step__title {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.step__text { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; }

.learn {
  background: var(--bg);
}
.learn__header { margin-bottom: 56px; }
.learn__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.learn-item:hover { border-color: rgba(200, 145, 50, 0.45); }

.learn-item__icon {
  width: 36px;
  height: 36px;
  background: var(--amber-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.learn-item__text {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
  padding-top: 4px;
}
.learn-item__text strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
}

.forwhom {
  background: var(--bg-2);
}
.forwhom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.forwhom__col-title {
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.forwhom__col-title.yes { color: var(--amber); }
.forwhom__col-title.no  { color: var(--text-muted); }

.forwhom__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.forwhom__list li span.mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.forwhom__list li span.mark.yes {
  background: rgba(200, 131, 10, 0.2);
  color: var(--amber);
}
.forwhom__list li span.mark.no {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
}

.progress {
  background: var(--bg);
}
.progress__header { margin-bottom: 56px; }
.progress__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 48px;
}
.progress__timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--amber), transparent);
}

.progress-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}
.progress-item:last-child { margin-bottom: 0; }
.progress-item__dot {
  position: absolute;
  left: -48px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--amber);
}
.progress-item__period {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  min-width: 90px;
  padding-top: 4px;
}
.progress-item__body {}
.progress-item__title {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.progress-item__text { font-size: 0.88rem; color: var(--text-soft); line-height: 1.75; }

.student-block {
  background: var(--bg-2);
}
.student-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.student-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.student-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.student-block__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,8,4,0.5) 0%, transparent 50%);
}

.quote {
  margin-top: 28px;
  padding: 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border-left: 3px solid var(--amber);
}
.quote__text {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.quote__attribution {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.faq {
  background: var(--bg);
}
.faq__list { max-width: 740px; }

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

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}
.faq-item__question {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-item__btn:hover .faq-item__question { color: var(--amber); }

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-muted);
}
.faq-item.open .faq-item__icon {
  border-color: var(--amber);
  color: var(--amber);
  transform: rotate(45deg);
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-item.open .faq-item__answer {
  max-height: 400px;
}
.faq-item__answer-inner {
  padding: 0 0 24px;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.leadform {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.leadform__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.leadform__promise {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.leadform__promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.leadform__promise-item::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber-pale);
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.form-box__title {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-box__sub {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  line-height: 1.7;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200, 145, 50, 0.22);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus { border-color: var(--amber); }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238C8070' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
.form-group select option { background: #1A1208; color: var(--text); }

.form-consent {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 24px;
}
.form-consent a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  font-size: 0.95rem;
  justify-content: center;
}

.form-error {
  display: none;
  color: #E87040;
  font-size: 0.8rem;
  margin-top: 6px;
}
.form-error.show { display: block; }

.footer {
  background: #070503;
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.footer__logo {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.footer__logo span { color: var(--amber); }
.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
}
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer__col ul li {
  margin-bottom: 12px;
}
.footer__col ul li a {
  font-size: 0.875rem;
  color: var(--text-soft);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--text); }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 200;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.cookie-banner__text {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}
.cookie-banner__text a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cookie-accept,
.btn-cookie-decline {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  padding: 9px 18px;
  transition: var(--transition);
}
.btn-cookie-accept {
  background: var(--amber);
  color: #0C0804;
}
.btn-cookie-accept:hover { background: var(--amber-light); }
.btn-cookie-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-cookie-decline:hover { color: var(--text); border-color: var(--text-muted); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}
.legal-page__title {
  font-family: var(--heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 12px;
}
.legal-page__updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.legal-content {
  max-width: 740px;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.85;
}
.legal-content h2 {
  font-family: var(--heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 14px;
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg);
}
.success-box {
  max-width: 520px;
}
.success-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  display: block;
}
.success-title {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.2;
}
.success-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .format__inner,
  .forwhom__grid,
  .student-block__inner,
  .leadform__inner { grid-template-columns: 1fr; gap: 48px; }

  .format__image { max-height: 320px; }
  .student-block__image { max-height: 320px; }

  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .section { padding: 72px 0; }
}

@media (max-width: 600px) {
  .hero__content { padding: 60px 0; }
  .hero__actions { flex-direction: column; align-items: flex-start; }

  .benefits__grid { grid-template-columns: 1fr; }
  .forwhom__grid  { grid-template-columns: 1fr; }
  .learn__grid    { grid-template-columns: 1fr; }

  .form-box { padding: 28px 20px; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }

  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

  .section { padding: 60px 0; }
}
