/* ============================================
   DEBT FREE ACADEMY — Global Styles
   ============================================ */

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

:root {
  --navy:        #0B1F3A;
  --navy-dark:   #071428;
  --navy-mid:    #132D50;
  --orange:      #FF6B35;
  --orange-dark: #E55A28;
  --orange-glow: rgba(255, 107, 53, 0.18);
  --white:       #FFFFFF;
  --off-white:   #F4F7FB;
  --gray:        #8A9DB8;
  --gray-light:  #D1DBE8;
  --text:        #E8EEF6;
  --text-dim:    #8A9DB8;
  --success:     #2ECC71;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { font-size: 1.05rem; color: var(--text-dim); }

.accent { color: var(--orange); }
.highlight {
  background: linear-gradient(135deg, var(--orange), #FF9A5C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #FF9A5C);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(255, 107, 53, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange-glow);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.6rem;
  font-size: 1.15rem;
}

.btn-xl {
  padding: 1.3rem 3rem;
  font-size: 1.25rem;
}

/* ── Layout ──────────────────────────────────── */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.section-title {
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.text-center { text-align: center; }

/* ── Navbar ──────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(7, 20, 40, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  padding: 0.7rem 0;
  box-shadow: var(--shadow);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--orange), #FF9A5C);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

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

.nav-cta { margin-left: 0.5rem; }

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Hero ─────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 70vw;
  height: 70vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse, rgba(11, 31, 58, 0.9) 0%, transparent 65%);
  border-radius: 50%;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-glow);
  border: 1px solid rgba(255, 107, 53, 0.35);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 .line-block {
  display: block;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.proof-avatars {
  display: flex;
}

.proof-avatars .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--navy-dark);
  margin-right: -10px;
  font-size: 1.2rem;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.4;
}

.proof-text strong {
  color: var(--white);
  display: block;
}

/* ── Stats Bar ────────────────────────────────── */

.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

/* ── Why Section ─────────────────────────────── */

.why {
  background: var(--navy-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-text h2 {
  margin-bottom: 1.2rem;
  color: var(--white);
}

.why-text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.9;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 500;
}

.check-list li::before {
  content: '✓';
  min-width: 24px;
  height: 24px;
  background: var(--orange-glow);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  border: 1px solid rgba(255, 107, 53, 0.3);
  margin-top: 0.1rem;
}

.why-visual {
  position: relative;
}

.visual-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #FF9A5C);
}

.vc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.vc-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.vc-badge {
  background: rgba(46, 204, 113, 0.15);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.debt-meter {
  margin-bottom: 1.5rem;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.meter-bar {
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 50px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--orange), #FF9A5C);
  transition: width 1.5s ease;
}

.vc-milestones {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.milestone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.ms-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ms-dot.done   { background: var(--success); }
.ms-dot.active { background: var(--orange); animation: pulse 2s infinite; }
.ms-dot.next   { background: rgba(255,255,255,0.2); }

.ms-label { color: var(--text); font-weight: 500; }
.ms-check { margin-left: auto; color: var(--success); font-size: 0.85rem; }

.floating-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, var(--orange), #FF9A5C);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
  text-align: center;
  min-width: 130px;
}

.fb-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
}

.fb-label {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.3;
}

/* ── Courses Page: Hero ──────────────────────── */

.page-hero {
  padding: 9rem 0 5rem;
  text-align: center;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% -10%, rgba(255,107,53,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

/* ── Courses Grid ─────────────────────────────── */

.courses {
  background: var(--navy-dark);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.course-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 53, 0.3);
}

.course-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow);
}

.card-badge-wrap {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
}

.card-popular {
  background: linear-gradient(135deg, var(--orange), #FF9A5C);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.card-img-1 { background: linear-gradient(135deg, #0D2440, #163860); }
.card-img-2 { background: linear-gradient(135deg, #1A1A0A, #2D3010); }
.card-img-3 { background: linear-gradient(135deg, #1A0A20, #2D1040); }

.card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, var(--navy-mid));
}

.card-body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.card-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
  flex: 1;
}

.card-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.card-includes li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  font-size: 0.8rem;
}

.card-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-old {
  font-size: 1rem;
  color: var(--gray);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}

.price-sub {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.btn-buy {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  background: linear-gradient(135deg, var(--orange), #FF9A5C);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

.btn-buy-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: none;
}

.btn-buy-outline:hover {
  background: var(--orange-glow);
}

.guarantee-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.75rem;
}

/* ── Guarantee Banner ─────────────────────────── */

.guarantee {
  background: linear-gradient(135deg, var(--navy-mid), #0D2440);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 3.5rem 0;
}

.guarantee-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 16px rgba(255,107,53,0.3));
}

.guarantee-text h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.guarantee-text p {
  font-size: 1rem;
  line-height: 1.8;
}

/* ── Testimonials ─────────────────────────────── */

.testimonials {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.testi-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.25);
}

.testi-stars {
  color: #FFB347;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--orange);
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -1rem;
  margin-right: 0.2rem;
  opacity: 0.5;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.author-detail {
  font-size: 0.8rem;
  color: var(--gray);
}

.author-result {
  margin-left: auto;
  background: rgba(46, 204, 113, 0.12);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  border: 1px solid rgba(46, 204, 113, 0.25);
  white-space: nowrap;
}

/* ── About ────────────────────────────────────── */

.about {
  background: var(--navy-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-photo-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-photo-bg {
  height: 340px;
  background: linear-gradient(135deg, #0D1F3A, #1A3260);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
}

.about-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, var(--navy-mid));
}

.about-photo-info {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.ap-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

.ap-role {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 600;
}

.about-credentials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.cred-item {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  flex: 1;
  text-align: center;
}

.cred-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--orange);
}

.cred-lbl {
  font-size: 0.75rem;
  color: var(--gray);
}

.about-content h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.about-content p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-content p:last-of-type { margin-bottom: 2rem; }

/* ── CTA Section ─────────────────────────────── */

.cta-section {
  background: linear-gradient(135deg, #0D1F3A 0%, #0A1628 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(ellipse, rgba(255,107,53,0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 550px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gray);
}

/* ── Footer ──────────────────────────────────── */

.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--white); }

/* ── FAQ ─────────────────────────────────────── */

.faq {
  background: var(--navy);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-q:hover { color: var(--orange); }

.faq-icon {
  font-size: 1.4rem;
  color: var(--orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0 1.5rem 1.3rem;
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}

/* ── Mobile Menu ─────────────────────────────── */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7, 20, 40, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  backdrop-filter: blur(20px);
}

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

.mobile-menu a {
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--orange); }

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ── Scroll animations ───────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────────── */

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

@media (max-width: 820px) {
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .guarantee-inner       { flex-direction: column; text-align: center; }
  .about-credentials     { justify-content: center; }
}

@media (max-width: 768px) {
  section { padding: 4rem 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger            { display: flex; }

  .courses-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-xl       { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-item   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1.5rem; }
}
