/* ================================================
   ELITE PASSAGES — CSS
   Palette: Navy #0B1629 | Gold #C9A96E | White #FAFAF8 | Muted #8A8A8A
   Type: Cormorant Garamond (display) | Inter (body)
================================================ */

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

:root {
  --navy:       #0B1629;
  --navy-mid:   #152035;
  --navy-light: #1E2E45;
  --gold:       #C9A96E;
  --gold-light: #DFC090;
  --white:      #FAFAF8;
  --off-white:  #F2EFE9;
  --muted:      #8A8A8A;
  --muted-dark: #555;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w: 1180px;
  --section-py: 100px;
  --radius: 2px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

em { font-style: italic; }

p { font-size: 0.975rem; line-height: 1.75; color: var(--muted-dark); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.eyebrow--gold { color: var(--gold); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-top: 8px; }
.section-header--light h2, .section-header--light p { color: var(--white); }
.section-header--light .eyebrow { color: var(--muted); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,169,110,0.3); }

.btn--ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--ghost:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.07); }

.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--navy); }

.btn--full { width: 100%; text-align: center; }
.btn--lg { padding: 18px 40px; font-size: 0.85rem; }

/* ================================================
   NAV
================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(11, 22, 41, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.15);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.nav__logo-ep {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__links .nav__cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 500;
}
.nav__links .nav__cta:hover { background: var(--gold-light); color: var(--navy); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.25s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.05em;
}
.nav__mobile .nav__cta {
  margin-top: 12px;
  text-align: center;
  background: var(--gold);
  color: var(--navy);
  padding: 12px;
  border-radius: var(--radius);
  border: none;
  font-weight: 500;
}

/* ================================================
   HERO
================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,22,41,0.35) 0%,
    rgba(11,22,41,0.5) 50%,
    rgba(11,22,41,0.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__headline {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 24px;
}
.hero__headline em { color: var(--gold); font-style: italic; }
.hero__sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  padding-right: 36px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.hero__divider {
  width: 1px;
  height: 40px;
  background: rgba(201,169,110,0.3);
  margin: 0 36px 0 0;
}
.hero__scroll {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ================================================
   TRUST STRIP
================================================ */
.trust {
  background: var(--off-white);
  padding: 28px 0;
  border-bottom: 1px solid rgba(11,22,41,0.08);
}
.trust .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust__logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust__logo {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted-dark);
  letter-spacing: 0.03em;
}
.trust__sep { color: var(--gold); font-size: 0.8rem; }

/* ================================================
   HOW IT WORKS
================================================ */
.how {
  padding: var(--section-py) 0;
  background: var(--white);
}
.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 56px;
}
.how__step {
  flex: 1;
  padding: 40px 32px;
  background: var(--off-white);
  border: 1px solid rgba(11,22,41,0.07);
}
.how__step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,169,110,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.how__step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.how__step-desc { font-size: 0.9rem; }
.how__connector {
  width: 40px;
  flex-shrink: 0;
  height: 1px;
  background: var(--gold);
  align-self: center;
  opacity: 0.4;
}
.how__cta { text-align: center; }

/* ================================================
   RESULTS
================================================ */
.results {
  padding: var(--section-py) 0;
  background: var(--navy);
}
.results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.1);
}
.results__card {
  background: var(--navy-mid);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}
.results__card:hover { background: var(--navy-light); }
.results__card--featured {
  background: var(--navy-light);
}
.results__card-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 4px 12px;
  margin-bottom: 24px;
}
.results__card-tag--military {
  color: #7EB8FF;
  border-color: rgba(126,184,255,0.3);
}
.results__card-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.results__card-city {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
}
.results__card-arrow { color: var(--gold); font-size: 1.2rem; }
.results__card-class {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.results__card-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.results__card-stat { display: flex; flex-direction: column; gap: 4px; }
.results__card-stat-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.results__card-stat--gold .results__card-stat-val { color: var(--gold); }
.results__card-stat-label { font-size: 0.65rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.results__card-cpp { font-size: 0.7rem; color: rgba(201,169,110,0.5); letter-spacing: 0.05em; }

/* ================================================
   TESTIMONIALS
================================================ */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonials__card {
  padding: 40px 32px;
  border: 1px solid rgba(11,22,41,0.08);
  background: var(--off-white);
  transition: box-shadow 0.2s;
}
.testimonials__card:hover { box-shadow: 0 12px 40px rgba(11,22,41,0.08); }
.testimonials__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.testimonials__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testimonials__meta { display: flex; flex-direction: column; gap: 4px; }
.testimonials__name { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.testimonials__route { font-size: 0.72rem; color: var(--muted); }

/* ================================================
   SERVICES
================================================ */
.services {
  padding: var(--section-py) 0;
  background: var(--navy);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.08);
}
.services__card {
  background: var(--navy-mid);
  padding: 40px 32px;
  transition: background 0.2s;
}
.services__card:hover { background: var(--navy-light); }
.services__card--military { border-top: 2px solid var(--gold); }
.services__icon {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.7;
}
.services__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
}
.services__card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.services__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  transition: letter-spacing 0.2s;
}
.services__link:hover { letter-spacing: 0.14em; }

/* ================================================
   ABOUT
================================================ */
.about {
  padding: var(--section-py) 0;
  background: var(--white);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
}
.about__img-badge {
  position: absolute;
  bottom: 32px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__img-badge-line {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.about__copy h2 { margin: 8px 0 24px; }
.about__copy p { margin-bottom: 16px; }
.about__credentials {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(11,22,41,0.08);
}
.about__cred {
  padding: 16px 0;
  border-bottom: 1px solid rgba(11,22,41,0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__cred-title { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.about__cred-desc { font-size: 0.78rem; color: var(--muted); }

/* ================================================
   MILITARY
================================================ */
.military {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.military__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.military__img { width: 100%; height: 100%; object-fit: cover; }
.military__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,22,41,0.96) 50%, rgba(11,22,41,0.7) 100%);
}
.military__inner {
  position: relative;
  z-index: 1;
}
.military__copy { max-width: 580px; }
.military__copy h2 { color: var(--white); margin: 8px 0 20px; }
.military__copy > p { color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.military__list { margin-bottom: 40px; display: flex; flex-direction: column; gap: 12px; }
.military__list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.military__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}
.military__stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.military__stat { display: flex; flex-direction: column; gap: 4px; }
.military__stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.military__stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; max-width: 120px; }

/* ================================================
   LEAD MAGNET
================================================ */
.lead-magnet {
  padding: var(--section-py) 0;
  background: var(--off-white);
  border-top: 1px solid rgba(11,22,41,0.08);
  border-bottom: 1px solid rgba(11,22,41,0.08);
}
.lead-magnet__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lead-magnet__copy h2 { margin: 8px 0 28px; }
.lead-magnet__list { display: flex; flex-direction: column; gap: 12px; }
.lead-magnet__list li {
  font-size: 0.9rem;
  color: var(--muted-dark);
  padding-left: 20px;
  position: relative;
}
.lead-magnet__list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 5px;
}
.lead-magnet__form {
  background: var(--navy);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lead-magnet__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 8px;
}
.lead-magnet__input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: var(--radius);
}
.lead-magnet__input::placeholder { color: rgba(255,255,255,0.35); }
.lead-magnet__input:focus { border-color: var(--gold); }
.lead-magnet__disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ================================================
   PRICING
================================================ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--navy);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.1);
  margin-bottom: 28px;
}
.pricing__card {
  background: var(--navy-mid);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing__card--featured {
  background: var(--navy-light);
}
.pricing__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
}
.pricing__tier {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  margin-top: 16px;
}
.pricing__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.2;
}
.pricing__price span {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}
.pricing__desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 36px;
}
.pricing__features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding-left: 18px;
  position: relative;
}
.pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.7;
  font-size: 0.75rem;
}
.pricing__note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
}

/* ================================================
   FAQ
================================================ */
.faq {
  padding: var(--section-py) 0;
  background: var(--white);
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(11,22,41,0.1);
}
.faq__item { border-bottom: 1px solid rgba(11,22,41,0.1); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq__q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq__q[aria-expanded="true"] { color: var(--gold); }
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__a {
  display: none;
  padding: 0 0 22px;
}
.faq__a.open { display: block; }
.faq__a p { font-size: 0.9rem; }

/* ================================================
   BOOK CTA
================================================ */
.book {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.book__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.book__img { width: 100%; height: 100%; object-fit: cover; }
.book__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,22,41,0.82);
}
.book__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.book__inner h2 { color: var(--white); margin: 8px 0 20px; }
.book__sub {
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 1rem;
}
.book__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================================
   FOOTER
================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,0.12);
  padding: 64px 0 32px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer__brand { max-width: 260px; }
.footer__brand .nav__logo-ep { font-size: 1.4rem; }
.footer__tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 12px 0 20px;
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__social a:hover { color: var(--gold); }
.footer__links { display: flex; gap: 60px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer__col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer__bottom a { font-size: 0.75rem; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--gold); }

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 900px) {
  :root { --section-py: 72px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__actions { flex-direction: column; align-items: flex-start; }

  .how__steps { flex-direction: column; }
  .how__connector { width: 1px; height: 32px; margin: 0 auto; }

  .results__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__img-badge { right: 16px; }
  .lead-magnet__inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing__grid { grid-template-columns: 1fr; }
  .footer__links { gap: 36px; }
}

@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .military__stats { gap: 24px; }
  .footer__top { flex-direction: column; }
  .footer__links { flex-direction: column; gap: 28px; }
  .trust .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__scroll { display: none; }
  .about__img-badge { display: none; }
}

/* ================================================
   REDUCED MOTION
================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
