/* A.S.A.P. — Water Theme + Highway DOT Design System */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --yellow: #FFD600;
  --black: #0D0D0D;
  --navy: #0F1B2D;
  --white: #FAFAF8;
  --gray: #9B9A93;
  --blue: #00A8E8;
  --blue-light: #E8F7FC;
  --blue-mid: #B8E5F5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   STICKY BAR
═══════════════════════════════════════ */
.sticky-bar {
  background: var(--yellow);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.sticky-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.sticky-cta {
  background: var(--black);
  color: var(--yellow);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.sticky-cta:hover { background: var(--navy); }

/* ═══════════════════════════════════════
   HERO — Water spray animated background
═══════════════════════════════════════ */
.hero {
  background: var(--black);
  padding: 0 0 0;
  position: relative;
  overflow: hidden;
}

/* Animated water spray — subtle, not cheesy */
.hero-spray {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.spray-drop {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 168, 232, 0.12);
  animation: spray-fall linear infinite;
}
.spray-drop:nth-child(1) { width: 6px; height: 6px; left: 12%; bottom: -10px; animation-duration: 3.2s; animation-delay: 0s; }
.spray-drop:nth-child(2) { width: 4px; height: 4px; left: 22%; bottom: -10px; animation-duration: 2.8s; animation-delay: 0.6s; }
.spray-drop:nth-child(3) { width: 8px; height: 8px; left: 35%; bottom: -10px; animation-duration: 4.1s; animation-delay: 1.2s; }
.spray-drop:nth-child(4) { width: 5px; height: 5px; left: 48%; bottom: -10px; animation-duration: 3.5s; animation-delay: 0.3s; }
.spray-drop:nth-child(5) { width: 7px; height: 7px; left: 58%; bottom: -10px; animation-duration: 2.9s; animation-delay: 1.8s; }
.spray-drop:nth-child(6) { width: 4px; height: 4px; left: 67%; bottom: -10px; animation-duration: 3.7s; animation-delay: 0.9s; }
.spray-drop:nth-child(7) { width: 6px; height: 6px; left: 75%; bottom: -10px; animation-duration: 3.0s; animation-delay: 2.1s; }
.spray-drop:nth-child(8) { width: 5px; height: 5px; left: 88%; bottom: -10px; animation-duration: 3.8s; animation-delay: 0.5s; }
.spray-drop:nth-child(9) { width: 3px; height: 3px; left: 18%; bottom: -10px; animation-duration: 2.5s; animation-delay: 2.4s; }
.spray-drop:nth-child(10) { width: 6px; height: 6px; left: 52%; bottom: -10px; animation-duration: 3.4s; animation-delay: 1.5s; }
.spray-drop:nth-child(11) { width: 4px; height: 4px; left: 82%; bottom: -10px; animation-duration: 2.7s; animation-delay: 0.2s; }
.spray-drop:nth-child(12) { width: 5px; height: 5px; left: 41%; bottom: -10px; animation-duration: 3.9s; animation-delay: 1.1s; }

@keyframes spray-fall {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.8; }
  80% { opacity: 0.4; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 32px 0;
}

.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(72px, 12vw, 128px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-headline .asap {
  color: var(--yellow);
  display: block;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.5;
}
.hero-sub strong { color: var(--white); }

/* CTA with ripple effect */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 36px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  cursor: pointer;
  border: none;
  transition: color 0.2s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255,255,255,0.35) 0%, transparent 60%);
  transform: scale(0);
  transition: transform 0.4s ease-out;
}
.btn-primary:hover::after { transform: scale(2.5); }

.btn-secondary {
  color: rgba(255,255,255,0.5);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--white); }

/* Hero stats strip — now separate from hero */
.hero-stats-strip {
  background: linear-gradient(135deg, #0D0D0D 0%, #0F1B2D 100%);
  padding: 48px 32px;
  border-top: 1px solid rgba(0, 168, 232, 0.15);
  border-bottom: 1px solid rgba(0, 168, 232, 0.15);
  display: flex;
  gap: 64px;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
.hero-stat {
  border-left: 2px solid rgba(0, 168, 232, 0.3);
  padding-left: 24px;
}
.hero-stat-val {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* ═══════════════════════════════════════
   WAVY SECTION DIVIDER
═══════════════════════════════════════ */
.wavy-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.wavy-divider svg {
  display: block;
  width: 100%;
}

/* ═══════════════════════════════════════
   SERVICES STRIP — Blue-tinted, above fold
═══════════════════════════════════════ */
.services-strip {
  background: var(--blue-light);
  padding: 80px 32px;
  position: relative;
}
.services-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--yellow) 100%);
}
.services-inner { max-width: 900px; margin: 0 auto; }
.services-strip .section-label { color: var(--blue); }
.services-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.services-title em { font-style: normal; color: var(--blue); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.service-card {
  background: white;
  border-radius: 10px;
  padding: 24px 20px;
  cursor: pointer;
  border: 1.5px solid var(--blue-mid);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 168, 232, 0.2);
  border-color: var(--blue);
}
.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.service-card p { font-size: 12px; color: var(--gray); margin-bottom: 8px; line-height: 1.4; }
.service-price {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   HOW IT WORKS — White section with blue accents
═══════════════════════════════════════ */
.hiw {
  background: var(--white);
  padding: 80px 32px;
}
.hiw::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, transparent 100%);
  margin-bottom: 80px;
}
.hiw-inner { max-width: 900px; margin: 0 auto; }
.hiw .section-label { color: var(--blue); }
.hiw-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 56px;
}
.hiw-title em { font-style: normal; color: var(--blue); }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.hiw-step { padding: 0; }
.hiw-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: rgba(0, 168, 232, 0.12);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.hiw-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hiw-step p { font-size: 15px; color: var(--gray); line-height: 1.6; }

/* ═══════════════════════════════════════
   SOCIAL PROOF BAR — After services
═══════════════════════════════════════ */
.social-proof-bar {
  background: var(--navy);
  padding: 32px 32px;
  border-top: 1px solid rgba(0, 168, 232, 0.2);
  border-bottom: 1px solid rgba(0, 168, 232, 0.2);
  display: flex;
  align-items: center;
  gap: 24px;
}
.proof-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 168, 232, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proof-text {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.proof-text em { color: var(--blue); font-style: normal; }
.proof-label { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ═══════════════════════════════════════
   LAUNCH BAND — 50% OFF, deposit framed correctly
═══════════════════════════════════════ */
.launch-band {
  background: linear-gradient(135deg, var(--yellow) 0%, #FFE033 100%);
  padding: 80px 32px;
  position: relative;
}
.launch-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
}
.launch-band-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.launch-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.launch-sub {
  font-size: 17px;
  color: rgba(0,0,0,0.6);
  margin-bottom: 32px;
  max-width: 420px;
  line-height: 1.5;
}

/* Before copy — big and bold */
.launch-before-copy {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.launch-before-copy::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.launch-cta-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.spots-counter { margin-bottom: 8px; }
.spots-counter-num {
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.spots-counter-label { font-size: 13px; font-weight: 600; color: rgba(0,0,0,0.5); margin-top: 6px; }

/* After copy — small footnote */
.launch-after-copy {
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  line-height: 1.4;
  max-width: 340px;
}

/* Blue right panel — social proof in launch band */
.launch-social {
  text-align: center;
}
.launch-social-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 168, 232, 0.15);
  border: 1.5px solid rgba(0, 168, 232, 0.3);
  border-radius: 40px;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.launch-social-badge svg { flex-shrink: 0; }
.launch-social-text {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.launch-social-label {
  font-size: 12px;
  color: rgba(0, 168, 232, 0.8);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.launch-urgency {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary-black {
  background: var(--black);
  color: var(--yellow);
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  border: none;
}
.btn-primary-black::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255,255,255,0.2) 0%, transparent 60%);
  transform: scale(0);
  transition: transform 0.4s ease-out;
}
.btn-primary-black:hover::after { transform: scale(2.5); }

/* ═══════════════════════════════════════
   SUBSCRIPTIONS — Navy with blue accents
═══════════════════════════════════════ */
.subs-section {
  background: var(--navy);
  padding: 80px 32px;
  border-top: 3px solid var(--blue);
}
.subs-inner { max-width: 900px; margin: 0 auto; }
.subs-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.subs-sub { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 48px; }
.subs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sub-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0, 168, 232, 0.15);
  border-radius: 8px;
  padding: 32px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.sub-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.sub-plan-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.sub-freq { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.sub-savings {
  display: inline-block;
  background: rgba(0, 168, 232, 0.15);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}
.sub-bullets { list-style: none; margin-bottom: 24px; }
.sub-bullets li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sub-cta {
  display: block;
  text-align: center;
  background: rgba(0, 168, 232, 0.1);
  border: 1px solid rgba(0, 168, 232, 0.3);
  color: var(--blue);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.sub-cta:hover { background: var(--blue); color: var(--navy); }
.sub-card.featured .sub-cta { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.sub-card.featured { border-color: rgba(0, 168, 232, 0.4); }

/* ═══════════════════════════════════════
   RUSH SECTION — Black, blue divider
═══════════════════════════════════════ */
.rush-section {
  background: var(--black);
  padding: 80px 32px;
  border-top: 2px solid rgba(0, 168, 232, 0.15);
}
.rush-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.rush-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rush-title .asap { color: var(--blue); }
.rush-sub { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 32px; }
.rush-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.rush-table th {
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rush-table td { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); color: rgba(255,255,255,0.5); }
.rush-table td:first-child { color: var(--white); font-weight: 500; }
.rush-surcharge { color: var(--blue) !important; font-weight: 700; }

/* ═══════════════════════════════════════
   FAQ — Navy section
═══════════════════════════════════════ */
.faq-section {
  background: var(--navy);
  padding: 80px 32px;
  border-top: 2px solid rgba(0, 168, 232, 0.15);
}
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}
.faq-icon {
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: color 0.2s;
}
.faq-item.open .faq-icon { color: var(--blue); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.2s;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ═══════════════════════════════════════
   FOOTER — Black
═══════════════════════════════════════ */
.site-footer {
  background: var(--black);
  padding: 48px 32px;
  border-top: 1px solid rgba(0, 168, 232, 0.15);
}
.footer-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.footer-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.footer-logo-accent { color: var(--blue); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--yellow); }
.footer-phone-note { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 4px; }
.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-areas { display: flex; flex-direction: column; gap: 8px; }
.footer-area { font-size: 14px; color: rgba(255,255,255,0.4); }
.footer-links-col { display: flex; flex-direction: column; gap: 8px; }
.footer-links-col a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--blue); }
.footer-bottom {
  max-width: 900px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { padding: 56px 20px 0; }
  .hiw-steps { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .launch-band-inner { grid-template-columns: 1fr; gap: 40px; }
  .subs-grid { grid-template-columns: 1fr; }
  .rush-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats-strip { gap: 32px; padding: 40px 20px; flex-wrap: wrap; }
  .social-proof-bar { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 600px) {
  .sticky-bar { padding: 12px 16px; }
  .hero-stats-strip { flex-direction: column; gap: 24px; padding: 32px 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-inner { padding-top: 40px; }
  .social-proof-bar { flex-direction: column; align-items: flex-start; }
  .spots-counter-num { font-size: 48px; }
}