/* ============================================================
   weDriveWright — Intentional Progressive Instruction
   Brand: BSU Blue #0033A0 · BSU Orange #D64309 · Deep Navy #001F60
   ============================================================ */

:root {
  --blue: #0033A0;
  --orange: #D64309;
  --navy: #001F60;
  --navy-deep: #001242;
  --white: #ffffff;
  --off-white: #f5f7fc;
  --ink: #0b1430;
  --muted: #5a6582;
  --muted-light: #aab4d4;
  --orange-soft: rgba(214, 67, 9, 0.12);
  --blue-soft: rgba(0, 51, 160, 0.08);

  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 80px -20px rgba(0, 18, 66, 0.45);
  --shadow-md: 0 16px 40px -12px rgba(0, 18, 66, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--orange); color: var(--white); }

.container {
  width: min(var(--max-w), 92vw);
  margin-inline: auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.display-xl {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  font-weight: 800;
}

.display-lg { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.display-md { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.eyebrow.on-dark { color: #ff7a45; }
.eyebrow.on-dark::before { background: #ff7a45; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 60ch;
}

.on-dark .lede, .lede.on-dark { color: var(--muted-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 30px -8px rgba(214, 67, 9, 0.55);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -8px rgba(214, 67, 9, 0.65);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 30px -8px rgba(0, 31, 96, 0.5);
}
.btn-navy:hover { transform: translateY(-3px); background: var(--blue); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.nav.scrolled {
  background: rgba(0, 18, 66, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.7rem 0;
  box-shadow: 0 10px 40px rgba(0, 10, 40, 0.35);
}

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

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: auto -6px -10px auto;
  width: 26px;
  height: 26px;
  background: var(--orange);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.9;
}

.logo .wright { color: #ff8a55; }

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

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 0.5rem; }
.nav-cta .btn { padding: 0.6rem 1.4rem; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero.hero-short { min-height: 72svh; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(0, 18, 66, 0.92) 0%, rgba(0, 31, 96, 0.65) 45%, rgba(0, 31, 96, 0.15) 100%),
    linear-gradient(to top, rgba(0, 18, 66, 0.95) 0%, transparent 38%);
}

.hero-content {
  padding: 9rem 0 6rem;
  max-width: 760px;
}

.hero-content .eyebrow { margin-bottom: 1.4rem; }

.hero-title { margin-bottom: 1.5rem; }

.hero-title .accent {
  background: linear-gradient(95deg, #ff8a55, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 56ch;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat .num sup { font-size: 0.55em; color: #ff8a55; }

.stat .label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.45rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  overflow: hidden;
  position: relative;
}

.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange);
  animation: cueDrop 2.2s var(--ease) infinite;
}

@keyframes cueDrop {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}

/* ---------- Sections ---------- */
section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1.1rem; }

.bg-navy { background: linear-gradient(180deg, var(--navy-deep), var(--navy)); color: var(--white); }
.bg-soft { background: var(--off-white); }

/* ---------- Cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 31, 96, 0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, var(--blue-soft), var(--orange-soft));
}

.card h3 { font-size: 1.25rem; margin-bottom: 0.7rem; color: var(--navy); }
.card p { color: var(--muted); font-size: 0.97rem; }

.card.dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.card.dark h3 { color: var(--white); }
.card.dark p { color: var(--muted-light); }

/* ---------- Image frames ---------- */
.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.img-frame:hover img { transform: scale(1.04); }

.img-frame.tilt { transform: rotate(-1.5deg); }

.img-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(0, 18, 66, 0.8);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ---------- Method steps ---------- */
.steps {
  display: grid;
  gap: 1.2rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 1.6rem;
  padding: 1.9rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 31, 96, 0.08);
  box-shadow: var(--shadow-md);
  transition: transform 0.45s var(--ease), border-color 0.3s;
  align-items: start;
}

.step:hover { transform: translateX(10px); border-color: var(--orange); }

.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(160deg, var(--blue), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.step h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.97rem; }

.step-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

/* ---------- Quote band ---------- */
.quote-band {
  position: relative;
  color: var(--white);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.quote-band .hero-bg img { animation: none; }

.quote-band .overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(rgba(0, 18, 66, 0.88), rgba(0, 31, 96, 0.82));
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 850px;
  margin: 0 auto 1.6rem;
  letter-spacing: -0.01em;
}

.quote-band blockquote .accent { color: #ff8a55; }

.quote-band cite {
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 55%, var(--blue) 100%);
  color: var(--white);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 67, 9, 0.55), transparent 70%);
  pointer-events: none;
}

.cta-band h2 { margin-bottom: 0.9rem; }
.cta-band p { color: var(--muted-light); max-width: 48ch; }
.cta-band .actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-grid h4 {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}

.footer-grid ul { list-style: none; display: grid; gap: 0.7rem; }

.footer-grid ul a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-grid ul a:hover { color: #ff8a55; }

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 36ch;
  margin-top: 1rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 1.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(0, 31, 96, 0.12);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 51, 160, 0.12);
}

.field textarea { min-height: 140px; resize: vertical; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.reveal-left { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-left.visible, .reveal-right.visible { transform: none; }

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; }
}

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--orange);
  color: var(--white);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-track {
  display: inline-flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.strip-track span { display: inline-flex; align-items: center; gap: 3rem; }
.strip-track .dot { opacity: 0.6; }

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

/* ---------- Coming soon ---------- */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange-soft);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid rgba(214, 67, 9, 0.3);
}

.coming-soon-badge .pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 67, 9, 0.5); }
  50% { box-shadow: 0 0 0 9px rgba(214, 67, 9, 0); }
}

.notify-form {
  display: flex;
  gap: 0.8rem;
  max-width: 480px;
  flex-wrap: wrap;
}

.notify-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
}

.notify-form input::placeholder { color: rgba(255, 255, 255, 0.5); }

.notify-form input:focus {
  outline: none;
  border-color: var(--orange);
}

/* ---------- Contact specifics ---------- */
.contact-info-card {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem 2.3rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1.8rem;
  align-content: start;
}

.contact-line { display: flex; gap: 1.1rem; align-items: flex-start; }

.contact-line .ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: rgba(214, 67, 9, 0.2);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.contact-line .label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact-line .value { font-weight: 600; font-size: 1.02rem; }
.contact-line a.value:hover { color: #ff8a55; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1.5px solid rgba(0, 31, 96, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.3s;
}

.faq-item[open] { border-color: var(--orange); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--orange);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body { padding: 0 1.5rem 1.4rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .actions { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(0, 18, 66, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    font-size: 1.3rem;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
    z-index: 105;
  }

  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.25rem; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .form-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 0.6rem; }
  .hero-content { padding-top: 7.5rem; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
}
