:root {
  --navy:   #0A1628;
  --navy2:  #0D1F3C;
  --blue:   #1B4F8A;
  --gold:   #C9A84C;
  --gold2:  #E8C96A;
  --white:  #FFFFFF;
  --offwhite: #F4F2EE;
  --gray:   #8A9BB0;
  --light:  #EEF2F7;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  padding: 0 48px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

/* Compass house SVG mark */
.nav-mark {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.nav-wordmark span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-wordmark span:last-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px !important;
  letter-spacing: 1.5px !important;
}

.nav-cta:hover {
  background: var(--gold2) !important;
  color: var(--navy) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 88px 0 0;
}

/* Blueprint grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 79, 138, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 79, 138, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--navy), transparent);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-headline em {
  color: var(--gold);
  font-style: normal;
  display: block;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  transition: all 0.2s;
}

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

/* Hero stats card */
.hero-card {
  background: rgba(27, 79, 138, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px;
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.hero-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.hero-card-tagline {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.hero-card-tagline strong {
  color: var(--gold);
  font-weight: 600;
}

/* Pride spectrum bar at bottom of hero */
.pride-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  display: flex;
  z-index: 3;
}

.pride-bar span {
  flex: 1;
  opacity: 0.45;
}

/* ── SECTION BASE ── */
section { position: relative; }

.page-wrap { padding-top: 88px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}

/* ── WHY US ── */
.why {
  background: var(--navy2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 64px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
}

.why-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.how-step {
  background: rgba(27, 79, 138, 0.08);
  border: 1px solid rgba(27, 79, 138, 0.25);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}

.how-step:hover {
  background: rgba(27, 79, 138, 0.18);
  border-color: rgba(201, 168, 76, 0.4);
}

.how-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
}

.how-step:hover::before { opacity: 1; }

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
}

/* ── SIGNING TYPES ── */
.signing-types {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.type-card {
  border: 1px solid rgba(27, 79, 138, 0.3);
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.type-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}

.type-card:hover::after { width: 100%; }

.type-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(27, 79, 138, 0.1);
}

.type-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
}

.type-range {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}

.type-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

/* ── MARQUEE / STATES ── */
.marquee-section {
  background: var(--gold);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--navy);
  padding: 0 32px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-item::after {
  content: '★';
  font-size: 10px;
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── PARTNER PAGE ── */
.partner {
  background: var(--navy);
}

.partner-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: start;
}

.partner-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.partner-feature {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}

.partner-feature:last-child { border-bottom: none; }

.pf-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  min-width: 44px;
  opacity: 0.6;
}

.pf-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 6px;
}

.pf-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.65;
}

/* Contact form card */
.contact-card {
  background: rgba(27, 79, 138, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 44px;
  position: sticky;
  top: 108px;
}

.contact-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.1;
}

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

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--navy);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px;
  transition: background 0.2s;
  margin-top: 8px;
}

.form-submit:hover { background: var(--gold2); }

/* ── NETWORK PAGE ── */
.network {
  background: var(--navy2);
}

.network-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: start;
}

.requirements {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.requirement {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: center;
}

.requirement:last-child { border-bottom: none; }

.req-check {
  width: 24px;
  height: 24px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 12px;
}

.req-text {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}

.pay-card {
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px;
  position: sticky;
  top: 108px;
}

.pay-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}

.pay-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.1;
}

.pay-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pay-row:last-of-type { border-bottom: none; }

.pay-type {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

.pay-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 1px;
}

.pay-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 20px;
  line-height: 1.6;
}

/* ── CONTACT PAGE ── */
.contact-page {
  background: var(--navy);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { margin-top: 48px; }

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-item:last-child { border-bottom: none; }

.ci-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.ci-value {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
}

.ci-sub {
  font-size: 13px;
  color: var(--gray);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--blue);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-band-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}

.cta-band p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  background: #050D1A;
  padding: 60px 48px 36px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
}

.footer-brand {}

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-brand-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  max-width: 260px;
}

/* Pride foundation in footer */
.footer-pride {
  display: flex;
  gap: 4px;
  margin-top: 20px;
}

.footer-pride span {
  height: 3px;
  flex: 1;
  border-radius: 2px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-col li a {
  font-size: 15px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-col p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.5);
}

/* ── VETERAN BADGE ── */
.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 14px;
  margin-top: 24px;
}

.veteran-badge span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { }
.hero-headline { }
.hero-sub { }
.hero-actions { }
.veteran-badge { }
.hero-card { }

/* ── ABOUT / FOUNDERS ── */
.about-photo-frame {
  margin-top: 48px;
  max-width: 780px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(27, 79, 138, 0.08);
  padding: 10px;
}

.about-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.about-photo-caption {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
  margin-bottom: 40px;
}

.about-body { max-width: 720px; }

.about-body p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

.about-body p:last-child { margin-bottom: 0; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); margin: 0 8px; }

/* ── FAQ ── */
.faq-section { margin-top: 64px; max-width: 720px; }
.faq-item { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 10px;
}
.faq-a {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
}

/* Active nav */
.nav-links a.active { color: var(--gold); }

/* Hamburger — hidden on desktop */
.nav-hamburger { display: none; }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {

  nav { padding: 0 24px; height: 72px; }

  .nav-mark { width: 44px; height: 44px; }
  .nav-wordmark span:last-child { font-size: 28px; }
  .nav-wordmark span:first-child { font-size: 9px; letter-spacing: 3px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #050D1A;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 24px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    z-index: 99;
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 15px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a.nav-cta {
    margin: 16px 24px 0;
    padding: 14px 24px !important;
    text-align: center;
    display: block;
  }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
  }

  .hero { padding: 72px 0 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px 60px;
  }
  .hero-headline { font-size: 62px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .hero-card { padding: 28px; }
  .hero-stat-num { font-size: 40px; }

  .section-inner { padding: 64px 24px; }
  .section-headline { font-size: 44px; }

  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .types-grid { grid-template-columns: 1fr; }

  .partner-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-card { position: static !important; padding: 28px; }

  .network-layout { grid-template-columns: 1fr; gap: 48px; }
  .pay-card { position: static !important; padding: 28px; }

  .contact-layout { grid-template-columns: 1fr; gap: 48px; }

  footer { padding: 48px 24px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cta-band { padding: 60px 24px; }

  .page-wrap { padding-top: 72px !important; }
  .about-photo-caption { margin-bottom: 28px; }
}
