/* === TOKENS === */
:root {
  --navy: #0D1B2A;
  --navy-light: #152435;
  --amber: #E8A838;
  --amber-dark: #C88E1E;
  --cream: #F8F5EE;
  --cream-dark: #EDE7D8;
  --text: #1A1A1A;
  --text-muted: #5A6A7A;
  --white: #FFFFFF;
}

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

/* === BASE === */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background: var(--navy);
  border-bottom: 3px solid var(--amber);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  letter-spacing: 2px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--amber);
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: var(--navy);
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 60px;
  position: relative;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 8vw, 140px);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 36px;
}
.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-sub p:first-child { color: var(--amber); font-weight: 600; margin-bottom: 10px; }

.hero-divider {
  width: 80px;
  height: 3px;
  background: var(--amber);
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--amber);
  letter-spacing: 1px;
}
.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px;
  position: relative;
}
.hero-image-frame {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/5;
  position: relative;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a2a3a 0%, #0d1b2a 50%, #1a1a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(232,168,56,0.06) 40px,
      rgba(232,168,56,0.06) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(232,168,56,0.06) 40px,
      rgba(232,168,56,0.06) 41px
    );
}
.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1;
}
.placeholder-icon {
  width: 80px;
  height: 80px;
  border: 3px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.placeholder-icon::before {
  content: '';
  width: 30px;
  height: 36px;
  border-left: 8px solid var(--amber);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 6px;
}
.placeholder-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--amber);
  text-align: center;
  max-width: 200px;
  line-height: 1.4;
}

.hero-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  border: 2px solid var(--amber);
  padding: 16px 20px;
  min-width: 220px;
}
.badge-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.badge-icon::before {
  content: '';
  width: 14px;
  height: 16px;
  border-left: 4px solid var(--navy);
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  margin-left: 4px;
}
.badge-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 1px;
}
.badge-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* === PROOF === */
.proof {
  background: var(--cream);
  border-top: 4px solid var(--amber);
  border-bottom: 4px solid var(--amber);
}
.proof-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 60px;
  text-align: center;
}
.proof-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 20px;
}
.proof-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.proof-body {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.proof-cta-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}
.proof-cta-text::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--amber);
  margin-top: 4px;
}

/* === SECTION SHARED === */
.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* === FEATURES === */
.features {
  background: var(--navy);
  padding: 100px 60px;
}
.features-header {
  max-width: 700px;
  margin-bottom: 60px;
}
.features-header .section-tag { color: var(--amber); }
.features-header .section-headline { color: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--navy-light);
  padding: 40px 36px;
  position: relative;
}
.feature-icon-wrap {
  margin-bottom: 24px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--amber);
  position: relative;
}
.feature-icon-1 { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%); }
.feature-icon-2 { clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }
.feature-icon-3 { border-radius: 50%; }
.feature-icon-4 { clip-path: polygon(0 50%, 100% 0, 100% 50%, 0 100%); }
.feature-icon-5 { clip-path: polygon(0 0, 100% 50%, 50% 100%); }
.feature-icon-6 { border-radius: 8px; }

.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* === PROGRAM === */
.program {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  background: var(--cream);
}
.program-visual {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.program-visual::before {
  content: '4';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 400px;
  color: rgba(232,168,56,0.05);
  position: absolute;
  right: -40px;
  bottom: -80px;
  line-height: 1;
}
.program-visual-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
.program-phase {
  border-left: 4px solid var(--amber);
  padding-left: 28px;
}
.phase-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 8px;
}
.phase-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.phase-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.program-arrow {
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 28px;
}
.arrow-line {
  width: 80px;
  height: 2px;
  background: var(--amber);
}
.arrow-head {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid var(--amber);
}

.program-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: var(--cream-dark);
}
.program-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.program-body p { margin-bottom: 14px; }
.program-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}
.check-mark {
  width: 22px;
  height: 22px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.check-mark::before {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
  margin-top: -2px;
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--navy);
  padding: 100px 60px;
}
.testimonials-header {
  max-width: 700px;
  margin-bottom: 60px;
}
.testimonials-header .section-tag { color: var(--amber); }
.testimonials-header .section-headline { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--navy-light);
  padding: 36px;
  border-top: 3px solid var(--amber);
}
.testimonial-quote {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}
.testimonial-attr {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: 1px;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}
.testimonial-detail {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* === CLOSING === */
.closing {
  background: var(--amber);
  padding: 100px 60px;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.closing-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 24px;
  opacity: 0.7;
}
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 17px;
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 48px;
}
.closing-body p { margin-bottom: 14px; }
.closing-cta-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}
.closing-cta-text::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--navy);
  margin-top: 4px;
  opacity: 0.4;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  border-top: 2px solid var(--amber);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 2px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-copy {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 24px; }
  .hero-right { padding: 0 24px 60px; }
  .hero-image-frame { max-width: 360px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .program { grid-template-columns: 1fr; }
  .program-text { padding: 60px 24px; }
  .proof-inner { padding: 60px 24px; }
  .features { padding: 80px 24px; }
  .testimonials { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; flex-wrap: wrap; }
  .footer-copy { margin-left: 0; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-sep { display: none; }
  .footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-copy { margin-left: 0; }
}