/* =========================================================
   SALES GOD — THEME TOKENS
   Reuse these variables across every section/page.
   ========================================================= */

:root {
  /* Color */
  --ink: #0B0B0C;
  --charcoal: #1C1B19;
  --gold: #C9A227;
  --gold-light: #E8C766;
  --ivory: #F7F5F0;
  --stone: #A8A29A;

  /* Type */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 120px;

  /* Radius */
  --radius-card: 4px;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  margin: 0;
}

.section-dark {
  background: var(--ink);
  color: var(--ivory);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
}

.display-heading {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.btn-gold {
  font-family: var(--font-body);
  font-weight: 700;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-card);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}
.btn-gold:hover { background: var(--gold-light); color: var(--ink); }

.btn-outline-gold {
  font-family: var(--font-body);
  font-weight: 700;
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--gold);
  padding: 16px 32px;
  border-radius: var(--radius-card);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--ink); }

/* use on light/ivory backgrounds where btn-outline-gold's ivory text would vanish */
.btn-outline-ink {
  font-family: var(--font-body);
  font-weight: 700;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 16px 32px;
  border-radius: var(--radius-card);
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}
.btn-outline-ink:hover { background: var(--ink); color: var(--ivory); }

/* =========================================================
   NAVBAR — sticky top nav
   ========================================================= */

.navbar-sg {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #000;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  padding: 14px var(--space-lg);
}

.navbar-sg .navbar-brand {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--ivory);
  text-transform: uppercase;
}
.navbar-sg .navbar-brand span { color: var(--gold); }

.navbar-sg .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
  padding: 8px 16px !important;
  transition: color 0.2s ease;
}
.navbar-sg .nav-link:hover { color: var(--gold-light) !important; }

.navbar-sg .navbar-toggler {
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 6px 10px;
}
.navbar-sg .navbar-toggler:focus { box-shadow: none; }
.navbar-sg .navbar-toggler-icon {
  filter: invert(72%) sepia(45%) saturate(500%) hue-rotate(1deg);
}

.navbar-sg .btn-gold {
  padding: 10px 22px;
  font-size: 14px;
}

@media (max-width: 991px) {
  .navbar-sg { padding: 12px var(--space-md); }
  .navbar-sg .navbar-collapse {
    background: var(--charcoal);
    margin-top: 12px;
    padding: var(--space-sm);
    border-radius: var(--radius-card);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .navbar-sg .nav-link { padding: 12px 8px !important; }
}

section:not(#bannerSlider), .trust-bar {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  will-change: opacity, transform;
}

section:not(#bannerSlider).is-visible,
.trust-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  section:not(#bannerSlider), .trust-bar,
  section:not(#bannerSlider).is-visible, .trust-bar.is-visible {
    transition: none;
  }
}
/* =========================================================
   HERO SECTION — styles specific to section 1
   ========================================================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* signature element: vertical gold hairline with rotated eyebrow text,
   sits between the content column and the image column */
.hero-signature {
  position: absolute;
  left: 46%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold);
  z-index: 3;
  display: none;
}
.hero-signature span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold);
  background: var(--ink);
  padding: 8px 4px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline {
  font-size: clamp(48px, 7vw, 96px);
  margin: var(--space-sm) 0;
}

.hero-subhead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--stone);
  max-width: 480px;
  margin-bottom: var(--space-md);
}

.hero-cta-row {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ---- placeholder banner image block ----
   Roshan: replace .hero-image-placeholder's background-image
   with the real portrait/banner. Keep the gradient overlay div
   for text-legibility once a real photo goes in. */
.hero-image-col {
  position: relative;
  flex: 1;
  min-height: 420px;
  background: var(--charcoal);
}

.hero-image-placeholder {
  position: absolute;
  inset: 0;
  background: var(--charcoal)
    repeating-linear-gradient(
      45deg,
      rgba(201, 162, 39, 0.08),
      rgba(201, 162, 39, 0.08) 12px,
      transparent 12px,
      transparent 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0) 0%, rgba(11,11,12,0.85) 100%);
  pointer-events: none;
}

.trust-bar {
  background: var(--ink);
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  padding: var(--space-sm) var(--space-lg);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  opacity: 0.85;
}

.trust-item {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--stone);
  text-transform: uppercase;
  white-space: nowrap;
}
/* =========================================================
   SECTION 3 — STORY TIMELINE
   ========================================================= */

.story {
  background: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
}

.story-heading {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: var(--space-lg);
}

.story-image-col {
  position: relative;
  min-height: 480px;
  background: var(--charcoal);
}

.story-image-placeholder {
  position: absolute;
  inset: 0;
  background: var(--charcoal)
    repeating-linear-gradient(
      45deg,
      rgba(201, 162, 39, 0.08),
      rgba(201, 162, 39, 0.08) 12px,
      transparent 12px,
      transparent 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: var(--space-md);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: var(--space-md);
}

.timeline-item {
  position: relative;
  padding: 0 0 var(--space-lg) var(--space-md);
  border-left: 1px solid rgba(201, 162, 39, 0.4);
}
.timeline-item:last-child {
  border-left: 1px solid transparent;
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 4px;
}

.timeline-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--stone);
  margin: 0;
}

.story-cta {
  margin-top: var(--space-md);
}
/* =========================================================
   SECTION 4 — BEFORE / AFTER (POWER OF SALES)
   ========================================================= */

.power {
  background: linear-gradient(180deg, #090909 0%, #12110f 42%, #0b0b0b 100%);
  color: var(--ivory);
  padding: calc(var(--space-xl) + 2rem) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.power::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201,162,39,0.16), transparent 20%),
              radial-gradient(circle at bottom left, rgba(255,255,255,0.06), transparent 16%);
  pointer-events: none;
}

.power-intro {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.power-heading {
  font-size: clamp(38px, 5vw, 68px);
  margin-bottom: 1rem;
}

.power-subhead {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--stone);
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.8;
}

.power-grid {
  position: relative;
  z-index: 1;
}

.power-col {
  padding: var(--space-lg);
  border-radius: var(--radius-card);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
}

.power-col-center {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,162,39,0.22);
}

.power-col-before {
  background: rgba(255,255,255,0.04);
}

.power-col-after {
  background: rgba(201,162,39,0.08);
  border-color: rgba(201,162,39,0.35);
}

.power-col-label {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: var(--space-sm);
}

.power-col-label-center {
  color: var(--stone);
}

.power-col-before .power-col-label { color: var(--stone); }
.power-col-after .power-col-label { color: var(--gold); }

.power-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.power-list li {
  position: relative;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ivory);
  padding: 18px 0 18px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.power-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.power-list li:last-child { border-bottom: none; }

.power-center-title {
  font-size: clamp(24px, 2.5vw, 32px);
  margin: 0 0 12px;
  line-height: 1.15;
}

.power-center-copy {
  font-family: var(--font-body);
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.power-center-features {
  display: grid;
  gap: 10px;
}

.power-center-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(201,162,39,0.12);
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
}

.power-quote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  text-align: center;
  color: var(--gold-light);
  max-width: 840px;
  margin: calc(var(--space-xl) + 0.5rem) auto 0;
  line-height: 1.3;
  padding: 0 var(--space-sm);
}

.power-quote span {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--stone);
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .power-col { min-height: auto; }
}
/* =========================================================
   SECTION 5 — WHY LEARN FROM HIM (credential cards)
   SECTION 6 — WHAT YOU'LL LEARN (curriculum grid)
   ========================================================= */

.credentials {
  background: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
}

.credentials-heading,
.curriculum-heading {
  font-size: clamp(36px, 5vw, 64px);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.credential-card {
  background: #fff;
  border: 1px solid rgba(11,11,12,0.08);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.credential-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.credential-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,162,39,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.credential-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 6px;
}

.credential-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--stone);
  margin: 0;
}

/* --- curriculum grid --- */
.curriculum {
  background: var(--charcoal);
  color: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
}

.curriculum-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: var(--space-sm);
  height: 100%;
  transition: border-color 0.2s ease;
}
.curriculum-card:hover { border-color: var(--gold); }

.curriculum-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: var(--space-xs);
}

.curriculum-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  margin: 0;
}
/* =========================================================
   SECTION 7 — COURSE ROADMAP (week-by-week timeline)
   SECTION 8 — IS THIS COURSE FOR YOU (4 cards)
   ========================================================= */

.roadmap {
  background: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
}

.roadmap-heading,
.audience-heading {
  font-size: clamp(36px, 5vw, 64px);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.roadmap-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 992px) {
  .roadmap-track { flex-direction: row; align-items: stretch; }
}

.roadmap-step {
  flex: 1;
  position: relative;
  padding: var(--space-md);
  border: 1px solid rgba(11,11,12,0.08);
  background: #fff;
}

.roadmap-step:not(:last-child) {
  border-bottom: none;
}
.roadmap-week {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 6px;
}

.roadmap-topic {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

/* --- audience cards --- */
.audience {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
}

.audience-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  height: 100%;
  text-align: center;
}

.audience-check {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: var(--space-xs);
}

.audience-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}
/* =========================================================
   SECTION 9 — MEET YOUR MENTOR
   SECTION 10 — STUDENT SUCCESS STORIES
   ========================================================= */

.mentor {
  background: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
}

.mentor-image-col {
  position: relative;
  min-height: 480px;
  background: var(--charcoal);
}

.mentor-image-placeholder {
  position: absolute;
  inset: 0;
  background: var(--charcoal)
    repeating-linear-gradient(
      45deg,
      rgba(201, 162, 39, 0.08),
      rgba(201, 162, 39, 0.08) 12px,
      transparent 12px,
      transparent 24px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: var(--space-md);
}

.mentor-content {
  padding: var(--space-lg);
}

.mentor-name {
  font-size: clamp(32px, 4vw, 52px);
  margin: var(--space-xs) 0 var(--space-sm);
}

.mentor-bio {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}

.mentor-facts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mentor-facts li {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(11,11,12,0.08);
}
.mentor-facts li::before {
  content: '—';
  color: var(--gold);
  margin-right: 8px;
}

/* --- testimonials --- */
.testimonials {
  background: var(--charcoal);
  color: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
}

.testimonials-heading {
  font-size: clamp(36px, 5vw, 64px);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.testimonial-slide {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,162,39,0.15);
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gold-light);
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ivory);
  margin-bottom: var(--space-md);
}

.testimonial-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  margin: 0;
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--stone);
  margin: 0 0 var(--space-sm);
}

.testimonial-shift {
  display: inline-flex;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--gold-light);
}
/* =========================================================
   SECTION 11 — MEDIA RECOGNITION
   SECTION 12 — UPCOMING BATCH
   ========================================================= */

.media {
  background: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
}

.media-heading {
  font-size: clamp(36px, 5vw, 64px);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  border: 1px solid rgba(11,11,12,0.08);
  border-radius: var(--radius-card);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--stone);
  text-align: center;
  text-decoration: none;
  padding: var(--space-sm);
  transition: border-color 0.2s ease;
}
.media-logo:hover { border-color: var(--gold); color: var(--ink); }

/* --- upcoming batch --- */
.batch {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.batch-heading {
  font-size: clamp(36px, 6vw, 72px);
  margin-bottom: var(--space-md);
}

.batch-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.batch-detail {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--stone);
}
.batch-detail strong {
  display: block;
  color: var(--gold-light);
  font-size: 20px;
  margin-bottom: 4px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.countdown-unit {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius-card);
  padding: var(--space-sm) var(--space-md);
  min-width: 80px;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  display: block;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}
/* =========================================================
   SECTION 13 — PRICING
   SECTION 14 — FAQ
   SECTION 15 — FINAL CTA
   SECTION 16 — FOOTER
   ========================================================= */

.pricing {
  background: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(11,11,12,0.08);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
}

.pricing-card-heading {
  font-size: 32px;
  margin-bottom: var(--space-sm);
}

.pricing-list {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: 0;
  text-align: left;
}

.pricing-list li {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(11,11,12,0.06);
}
.pricing-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  margin-right: 10px;
}

/* --- FAQ --- */
.faq {
  background: var(--charcoal);
  color: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
}

.faq-heading {
  font-size: clamp(36px, 5vw, 64px);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.faq-item {
  max-width: 720px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  padding: var(--space-sm) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon { color: var(--gold); font-size: 20px; transition: transform 0.2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.open .faq-answer { max-height: 240px; }

.faq-answer p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--stone);
  padding-bottom: var(--space-sm);
  margin: 0;
}

/* --- final CTA --- */
.final-cta {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}

.final-cta-heading {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: var(--space-md);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.final-cta-phone {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--stone);
}
.final-cta-phone strong { color: var(--gold-light); }

/* --- footer --- */
.site-footer {
  background: #050506;
  color: var(--stone);
  padding: var(--space-lg);
}

.footer-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--stone);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: var(--space-lg);
  padding-top: var(--space-sm);
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
}
/* =========================================================
   RESPONSIVE.CSS — single source of truth for breakpoints.
   Loaded LAST in index.php, so these rules win the cascade
   without needing !important anywhere.

   Breakpoints match Bootstrap's grid:
   sm 576 · md 768 · lg 992 · xl 1200
   ========================================================= */

/* ---------------------------------------------------------
   GLOBAL — mobile app feel
   --------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  /* leave room so content isn't hidden behind the sticky bottom bar */
  padding-bottom: 72px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0; /* bottom bar is mobile/tablet only */
  }
}

/* bigger tap targets on touch devices — anything under 44px is
   hard to hit reliably with a thumb */
@media (max-width: 991px) {
  .btn-gold,
  .btn-outline-gold,
  .btn-outline-ink {
    padding: 14px 24px;
    min-height: 44px;
  }
  .faq-question {
    min-height: 44px;
  }
}

/* ---------------------------------------------------------
   STICKY BOTTOM APP BAR (mobile/tablet only)
   --------------------------------------------------------- */
.app-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  background: var(--ink);
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  padding-bottom: env(safe-area-inset-bottom, 0); /* iPhone home-bar clearance */
}

@media (min-width: 992px) {
  .app-bar { display: none; }
}

.app-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 4px;
  color: var(--stone);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.app-bar-item.is-primary {
  color: var(--ink);
  background: var(--gold);
}

.app-bar-icon {
  font-size: 18px;
  line-height: 1;
}

/* ---------------------------------------------------------
   HERO — section 1
   --------------------------------------------------------- */
@media (min-width: 992px) {
  .hero-signature { display: block; }
}

@media (max-width: 991px) {
  .hero { min-height: auto; }
  .hero-content { padding: var(--space-lg) var(--space-md); }
  .hero-image-col { min-height: 340px; }
}

/* ---------------------------------------------------------
   ROADMAP — section 7
   --------------------------------------------------------- */
@media (min-width: 992px) {
  .roadmap-step:not(:last-child) {
    border-bottom: 1px solid rgba(11,11,12,0.08);
    border-right: none;
  }
  .roadmap-step::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--gold);
  }
  .roadmap-step:last-child::after { display: none; }
}

/* ---------------------------------------------------------
   UPCOMING BATCH — section 12 (countdown wraps on small screens)
   --------------------------------------------------------- */
@media (max-width: 480px) {
  .countdown { flex-wrap: wrap; gap: var(--space-xs); }
  .countdown-unit { min-width: 64px; padding: var(--space-xs) var(--space-sm); }
  .countdown-number { font-size: 26px; }
}

/* ---------------------------------------------------------
   MENTOR — section 9 (portrait shrinks on mobile so bio isn't
   pushed too far down the page)
   --------------------------------------------------------- */
@media (max-width: 991px) {
  .mentor-image-col { min-height: 320px; }
  .mentor-content { padding: var(--space-md); }
}

/* ---------------------------------------------------------
   FINAL CTA — section 15 (stack buttons full-width on mobile,
   easier thumb reach than side-by-side)
   --------------------------------------------------------- */
@media (max-width: 480px) {
  .final-cta-buttons { flex-direction: column; }
  .final-cta-buttons .btn-gold,
  .final-cta-buttons .btn-outline-gold {
    width: 100%;
    text-align: center;
  }
}




.banner-slider {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  aspect-ratio: 1983 / 793;
  overflow: hidden;
  background: var(--charcoal);
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out;
}

.banner-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.banner-slide.is-leaving {
  opacity: 0;
  transform: translateX(-100%);
}

.banner-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  max-width: none;
}

.banner-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(11,11,12,0.15) 0%, rgba(11,11,12,0.55) 100%); */
  pointer-events: none;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(247, 245, 240, 0.4);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
  padding: 0;
}

.banner-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

html, body {
  overflow-x: hidden;
}




