/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #1a2744;
  --navy-dark: #101930;
  --navy-light: #253460;
  --gold: #c8a84b;
  --gold-light: #e8c97a;
  --cream: #f7f2ea;
  --cream-dark: #ede6d6;
  --white: #ffffff;
  --text: #1a1f2e;
  --text-muted: #5a6275;
  --border: #ddd5c4;
  --font: 'Segoe UI', 'Arial', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(26,39,68,0.10);
  --shadow-lg: 0 8px 40px rgba(26,39,68,0.16);
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.section {
  padding: 80px 0;
}

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

.section--navy {
  background: var(--navy);
  color: var(--white);
}

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

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

.section--navy .section-title {
  color: var(--white);
}

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

.section--navy .section-subtitle {
  color: rgba(255,255,255,0.75);
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.header__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

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

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

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--gold);
  border-color: var(--navy-light);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 10px;
}

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

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

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  list-style: none;
  gap: 4px;
}

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

.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--cream-dark);
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 0;
  overflow: hidden;
}

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

.hero__content {
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__badge {
  display: inline-block;
  background: rgba(200,168,75,0.2);
  color: var(--gold-light);
  border: 1px solid rgba(200,168,75,0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

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

.hero__trust-item {
  display: flex;
  flex-direction: column;
}

.hero__trust-item strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero__trust-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.hero__image-wrap {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: stretch;
}

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

/* ===== PROBLEM ===== */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.problem-card__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.problem-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.problem-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.problem__transition {
  margin-top: 48px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.6;
}

.problem__transition strong {
  color: var(--gold);
}

/* ===== COURSE OVERVIEW ===== */
.overview__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 0;
}

.overview__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.overview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

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

.overview__feature-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.overview__feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.overview__feature-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
}

.step__num {
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ===== PROGRAM ===== */
.program__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.program-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.program-item__num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.program-item__text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  padding-top: 6px;
}

/* ===== WHO IT'S FOR ===== */
.audience__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
}

.audience-item__check {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.audience-item__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}

/* ===== LEAD FORM ===== */
.form-section {
  background: var(--cream);
}

.form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-section__info {
  padding-top: 8px;
}

.form-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 32px;
  max-height: 280px;
}

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

.form-section__benefits {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.form-benefit::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

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

.form-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-card__subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

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

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--navy);
}

.form-input::placeholder {
  color: #bbb;
}

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

.form-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

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

.form-consent {
  margin-top: 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--navy);
}

.form-consent-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-consent-text a {
  color: var(--navy);
  text-decoration: underline;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== FAQ ===== */
.faq__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

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

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
  transition: background var(--transition);
}

.faq-item__question:hover {
  background: var(--cream);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--white);
  transition: transform var(--transition);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

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

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

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  text-align: center;
  padding: 72px 24px;
}

.cta-strip__title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-strip__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 52px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.footer__brand-name span {
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer__company {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
}

.footer__col-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: var(--navy-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 8px 48px rgba(0,0,0,0.36);
  max-width: 680px;
  width: calc(100% - 32px);
  flex-wrap: wrap;
  transition: opacity 0.3s, transform 0.3s;
}

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.cookie-banner__text {
  font-size: 0.87rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  flex: 1;
}

.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}

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

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 48px;
}

.legal-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-hero__date {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

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

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
}

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

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

.legal-content ul {
  margin: 12px 0 16px 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-content ul li {
  margin-bottom: 6px;
}

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

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

.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
}

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

.success-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}

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

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__content {
    padding-bottom: 0;
  }

  .hero__image-wrap {
    max-height: 300px;
    border-radius: var(--radius-lg);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps::before {
    display: none;
  }

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

  .form-section__inner {
    grid-template-columns: 1fr;
  }

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

  .footer__top > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 48px 0 0;
  }

  .hero__trust {
    gap: 20px;
  }

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .header__inner {
    gap: 12px;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .btn {
    flex: 1;
    justify-content: center;
  }
}
