:root {
  --color-navy-900: #0a1628;
  --color-navy-700: #14253f;
  --color-navy-500: #1e3a63;
  --color-signal: #ff6b2c;
  --color-signal-hover: #e85a1f;
  --color-sky: #5dade2;
  --color-cream: #f8f4ec;
  --color-white: #ffffff;
  --color-ink: #1a1a1a;
  --color-ink-muted: #5a6270;
  --color-border: #e2e6eb;
  --shadow: 0 18px 48px rgba(10, 22, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 78px;
}

body {
  color: var(--color-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--color-white);
}

a {
  color: #0c5f91;
  font-weight: 700;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
.h1 {
  color: var(--color-navy-900);
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 800;
}


h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.15rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  color: var(--color-white);
  background: var(--color-navy-900);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  min-height: 64px;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.navbar {
  min-height: 64px;
}

.navbar-brand img {
  width: 190px;
  height: 43px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--color-white);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.35);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-offcanvas {
  color: var(--color-white);
  background: rgba(8, 17, 31, 0.98);
}

.nav-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-offcanvas .offcanvas-title {
  max-width: none;
  margin: 0;
  color: var(--color-white);
  font-size: 1.05rem;
}

.nav-offcanvas .offcanvas-body {
  display: flex;
  gap: 0.75rem;
}

.nav-offcanvas .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.nav-offcanvas .nav-link:hover,
.nav-offcanvas .nav-link.active {
  color: var(--color-white);
}

.btn {
  border-radius: 6px;
  font-weight: 600;
}

.btn-primary {
  border-color: var(--color-signal);
  background: var(--color-signal);
  color: var(--bs-white);
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--color-signal-hover);
  background: var(--color-signal-hover);
  color: var(--bs-white);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100vh - 64px));
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-navy-900);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.48) 48%, rgba(10, 22, 40, 0.12));
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.hero h1,
.hero .h1 {
  color: var(--color-white);
}

.hero-sub {
  margin: 1rem 0 1.5rem;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.eyebrow {
  color: var(--color-signal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-bar {
  color: var(--color-white);
  background: var(--color-navy-700);
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-alt,
.form-band {
  background: var(--color-cream);
}

.form-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.narrow {
  max-width: 860px;
}

.lead {
  color: var(--color-navy-700);
  font-weight: 500;
}

.rounded-img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stat-grid,
.cards-3,
.post-grid {
  display: grid;
  gap: 1rem;
}

.stat-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
}

.stat-grid div,
.cards-3 article,
.post-card,
.sticky-card,
.inline-cta {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.06);
}

.stat-grid div {
  padding: 1rem;
}

.stat-grid strong {
  display: block;
  color: var(--color-signal);
  font-size: 2rem;
  font-weight: 900;
}

.stat-grid span {
  color: var(--color-ink-muted);
  font-weight: 700;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-3 article,
.post-card,
.sticky-card,
.inline-cta {
  padding: 1.5rem;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.timeline div {
  padding-left: 1rem;
  border-left: 4px solid var(--color-signal);
}

.sticky-card {
  position: sticky;
  top: 92px;
}

.lead-form .form-control,
.lead-form .form-select {
  min-height: 48px;
  border-color: #cbd3dc;
  border-radius: 6px;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
  border-color: var(--color-sky);
  box-shadow: 0 0 0 0.2rem rgba(93, 173, 226, 0.2);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.compare {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.compare th {
  color: var(--color-navy-900);
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
}

.faq summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  color: var(--color-navy-900);
  font-weight: 900;
}

.faq p {
  padding: 0 1.25rem 1rem;
  margin: 0;
}

.display-phone a {
  color: var(--color-signal-hover);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-decoration: none;
}

.map-frame {
  border: 0;
}

.post-grid {
  grid-template-columns: repeat(3, 1fr);
}

.post-card h2 {
  font-size: 1.35rem;
}

.article h2 {
  margin-top: 2rem;
}

.byline {
  color: var(--color-ink-muted);
  font-weight: 700;
}

.inline-cta {
  margin: 2rem 0;
  background: var(--color-navy-900);
}

.inline-cta h2,
.inline-cta p {
  color: var(--color-white);
}

.final-cta {
  padding: 3.5rem 0;
  color: var(--color-white);
  background: var(--color-navy-900);
}

.final-cta h2 {
  color: var(--color-white);
}

.site-footer {
  padding: 3rem 0;
  color: rgba(255, 255, 255, 0.82);
  background: #07101d;
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer-title {
  color: var(--color-white);
  font-size: 1rem;
}

.mobile-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  display: none;
  padding: 0.85rem 1rem;
  color: var(--color-navy-900);
  background: var(--color-signal);
  border-radius: 999px;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.mobile-fab.is-visible {
  display: inline-flex;
}

.simple-page {
  min-height: 58vh;
  padding: 8rem 0 5rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .call-link {
    width: 100%;
    margin-top: 0.75rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(10, 22, 40, 0.92), rgba(10, 22, 40, 0.48));
  }

  .cards-3,
  .post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .site-header,
  .navbar {
    min-height: 56px;
  }

  .navbar-brand img {
    width: 164px;
    height: 37px;
  }

  .hero-inner {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .mobile-fab.is-visible {
    display: inline-flex;
  }
}

/* Modern visual layer */
:root {
  --surface: rgba(255, 255, 255, 0.86);
  --surface-dark: rgba(10, 22, 40, 0.74);
  --ring: rgba(255, 107, 44, 0.34);
  --shadow-lg: 0 28px 80px rgba(10, 22, 40, 0.22);
  --shadow-soft: 0 16px 44px rgba(10, 22, 40, 0.1);
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(93, 173, 226, 0.11), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 42%, #ffffff 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(10, 22, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 22, 40, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 17, 31, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.site-header.is-scrolled {
  background: rgba(8, 17, 31, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.navbar .nav-link {
  position: relative;
  padding-inline: 0.65rem;
  transition: color 0.2s ease;
}

.navbar .nav-link::after {
  position: absolute;
  right: 0.65rem;
  bottom: 0.28rem;
  left: 0.65rem;
  height: 2px;
  content: "";
  background: var(--color-signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  transform: translateZ(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  box-shadow: 0 14px 34px rgba(255, 107, 44, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 18px 44px rgba(255, 107, 44, 0.38);
}

.hero {
  isolation: isolate;
  min-height: min(820px, calc(100vh - 64px));
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(0deg, rgba(6, 13, 24, 0.92), transparent);
}

.hero::after {
  z-index: 0;
  background:
    radial-gradient(circle at 76% 30%, rgba(255, 107, 44, 0.3), transparent 22rem),
    linear-gradient(90deg, rgba(5, 11, 21, 0.95), rgba(10, 22, 40, 0.66) 48%, rgba(10, 22, 40, 0.18));
}

.hero-bg {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-skyline {
  position: absolute;
  right: -8%;
  bottom: 10%;
  z-index: 1;
  width: 48vw;
  max-width: 720px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 52%),
    conic-gradient(from 220deg, rgba(255, 107, 44, 0.28), rgba(93, 173, 226, 0.12), rgba(255, 255, 255, 0.04), rgba(255, 107, 44, 0.28));
  opacity: 0.76;
  animation: slowSpin 28s linear infinite;
}

.hero-route {
  position: absolute;
  right: 4vw;
  bottom: 8vh;
  z-index: 1;
  width: min(54vw, 780px);
  min-width: 440px;
  height: auto;
  overflow: visible;
  opacity: 0.9;
  pointer-events: none;
}

.hero-route path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-route-shadow {
  stroke: rgba(0, 0, 0, 0.36);
  stroke-width: 12;
  filter: blur(5px);
}

.hero-route-line {
  stroke: rgba(255, 255, 255, 0.78);
  stroke-dasharray: 18 18;
  stroke-width: 3;
  animation: routeDash 2.4s linear infinite;
}

.route-dot {
  fill: var(--color-signal);
  filter: drop-shadow(0 0 18px rgba(255, 107, 44, 0.75));
}

.route-dot-end {
  fill: var(--color-sky);
}

.hero-route::after {
  content: "";
}

.hero-inner {
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.hero-copy {
  animation: riseIn 0.8s ease both;
}

.hero h1 {
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.88);
}

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

.hero-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(10, 22, 40, 0.72), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  animation: panelIn 0.9s 0.15s ease both;
}

.hero-panel div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel span {
  color: var(--color-signal);
  font-size: 2.35rem;
  font-weight: 600;
}

.hero-panel small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.trust-bar {
  border-block: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(90deg, var(--color-navy-900), var(--color-navy-500), var(--color-navy-900));
}

.route-strip {
  color: rgba(255, 255, 255, 0.86);
  background: #08111f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.route-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 54px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-strip i {
  position: relative;
  width: clamp(2.4rem, 8vw, 6rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 107, 44, 0.18), rgba(255, 107, 44, 0.95));
}

.route-strip i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  border-radius: 999px;
  background: var(--color-signal);
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(255, 107, 44, 0.8);
}

.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-bar span::before {
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  border-radius: 999px;
  background: var(--color-signal);
  box-shadow: 0 0 0 0.28rem rgba(255, 107, 44, 0.13);
}

.section {
  position: relative;
}

.section > .container,
.form-band > .container {
  position: relative;
  z-index: 1;
}

.section-alt {
  background:
    linear-gradient(135deg, rgba(248, 244, 236, 0.96), rgba(238, 246, 251, 0.96)),
    var(--color-cream);
}

.form-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--color-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(248, 244, 236, 0.92)),
    var(--color-cream);
}

.form-band::before {
  position: absolute;
  inset: 12% auto auto -8rem;
  width: 24rem;
  height: 24rem;
  content: "";
  border: 1px solid rgba(255, 107, 44, 0.18);
  border-radius: 999px;
  background: rgba(255, 107, 44, 0.08);
}

.lead-form {
  padding: clamp(1.15rem, 3vw, 2rem);
  border: 1px solid rgba(226, 230, 235, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.form-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin: -0.35rem 0 1.2rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 107, 44, 0.18);
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(255, 107, 44, 0.1), rgba(93, 173, 226, 0.1));
}

.form-status span,
.form-status strong {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-status span {
  color: var(--color-ink-muted);
}

.form-status strong {
  color: var(--color-navy-900);
}

.lead-form .form-label {
  color: var(--color-navy-700);
  font-size: 0.86rem;
  font-weight: 900;
}

.lead-form .form-control,
.lead-form .form-select {
  border-radius: 7px;
  background-color: rgba(255, 255, 255, 0.92);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
  transform: translateY(-1px);
}

.lead-form .btn {
  min-height: 54px;
}

.rounded-img {
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-lg);
  transform: perspective(900px) rotateY(-2deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rounded-img:hover {
  box-shadow: 0 34px 90px rgba(10, 22, 40, 0.26);
  transform: perspective(900px) rotateY(0deg) translateY(-5px);
}

.stat-grid div,
.cards-3 article,
.post-card,
.sticky-card,
.inline-cta {
  border-color: rgba(226, 230, 235, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.stat-grid div:hover,
.cards-3 article:hover,
.post-card:hover {
  border-color: rgba(255, 107, 44, 0.36);
  box-shadow: 0 24px 64px rgba(10, 22, 40, 0.16);
  transform: translateY(-6px);
}

.cards-3 article,
.post-card {
  position: relative;
  overflow: hidden;
}

.cards-3 article::before,
.post-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--color-signal), var(--color-sky));
}

.cards-3 article::after,
.post-card::after,
.stat-grid div::after {
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 3.2rem;
  height: 3.2rem;
  content: "";
  border: 1px solid rgba(93, 173, 226, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(93, 173, 226, 0.28) 48%, rgba(93, 173, 226, 0.28) 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(255, 107, 44, 0.22) 48%, rgba(255, 107, 44, 0.22) 52%, transparent 53%);
  opacity: 0.42;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.cards-3 article:hover::after,
.post-card:hover::after,
.stat-grid div:hover::after {
  opacity: 0.8;
  transform: rotate(22deg) scale(1.1);
}

.stat-grid div {
  position: relative;
  overflow: hidden;
}

.timeline div {
  position: relative;
  padding: 1.05rem 1rem 1.05rem 1.35rem;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-signal);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(10, 22, 40, 0.06);
}

.sticky-card {
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.compare {
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: var(--shadow-soft);
}

.compare thead th {
  color: var(--color-white);
  background: var(--color-navy-900);
}

.compare tbody tr {
  transition: background-color 0.18s ease;
}

.compare tbody tr:hover {
  background: rgba(93, 173, 226, 0.1);
}

.faq details {
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(10, 22, 40, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq details[open] {
  border-color: rgba(255, 107, 44, 0.42);
  box-shadow: var(--shadow-soft);
}

.faq summary {
  list-style: none;
}

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

.faq summary::after {
  float: right;
  color: var(--color-signal);
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.map-frame {
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(10, 22, 40, 0.96), rgba(30, 58, 99, 0.98)),
    var(--color-navy-900);
}

.final-cta::before {
  position: absolute;
  right: -10rem;
  bottom: -15rem;
  width: 36rem;
  height: 36rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.18), transparent 62%);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-fab {
  align-items: center;
  min-width: 4.5rem;
  justify-content: center;
  font-weight: 900;
  animation: fabIn 0.28s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease var(--reveal-delay, 0ms), transform 0.65s ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  --reveal-delay: 55ms;
}

.reveal-delay-2 {
  --reveal-delay: 110ms;
}

.reveal-delay-3 {
  --reveal-delay: 165ms;
}

.reveal-delay-4 {
  --reveal-delay: 220ms;
}

.reveal-delay-5 {
  --reveal-delay: 275ms;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fabIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (max-width: 991.98px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
  }

  .hero-skyline {
    right: -35%;
    width: 85vw;
  }

  .hero-route {
    right: -16vw;
    bottom: 18vh;
    width: 88vw;
    min-width: 360px;
    opacity: 0.52;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 720px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    padding: 0.8rem;
  }

  .hero-panel div {
    padding: 0.75rem;
  }

  .hero-panel span {
    font-size: 1.8rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .route-strip .container {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .route-strip span {
    white-space: nowrap;
  }
}

/* Responsive QA layer: typography, rhythm, and small-screen fit */
:root {
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --space-section: clamp(3.25rem, 7vw, 6.5rem);
}

html {
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p,
li,
td,
th,
label,
input,
select,
textarea {
  font-size: clamp(0.98rem, 0.2vw + 0.94rem, 1.06rem);
}

h1,
h2,
h3,
.h1 {
  font-family: var(--font-display);
  overflow-wrap: anywhere;
  line-height: 1.5;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.45rem, 6.2vw, 40px);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.72rem, 2.55vw, 2.75rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.08rem, 0.7vw + 0.94rem, 1.32rem);
}

.lead {
  font-size: clamp(1.08rem, 0.55vw + 0.98rem, 1.26rem);
  line-height: 1.68;
}

.section,
.form-band {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section .container > p,
.article .container > p,
.narrow > p {
  max-width: 74ch;
}

.navbar > .container {
  gap: 0.75rem;
}

.navbar-brand {
  flex: 0 0 auto;
  margin-right: clamp(0.5rem, 1.4vw, 1.25rem);
}

.navbar-brand img {
  display: block;
  object-fit: contain;
}

.navbar .nav-link {
  white-space: nowrap;
}

.desktop-nav .navbar-nav {
  flex-direction: row;
}

.call-link {
  white-space: nowrap;
}

.hero {
  min-height: clamp(680px, calc(100svh - 64px), 860px);
}

.hero-inner {
  width: 100%;
  /*padding-top: clamp(5.25rem, 10vh, 8rem);*/
  /*padding-bottom: clamp(4rem, 9vh, 7rem);*/
}

.hero-copy {
  max-width: 760px;
}

.hero-sub {
  max-width: 62ch;
  font-size: clamp(1.06rem, 1.05vw + 0.9rem, 1.42rem);
  line-height: 1.55;
}

.hero-panel {
  width: min(100%, 360px);
  justify-self: end;
}

.cards-3,
.post-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cards-3 article,
.post-card,
.sticky-card,
.inline-cta,
.lead-form {
  border-radius: 8px;
}

.cards-3 article,
.post-card {
  min-height: 100%;
}

.post-card h2 {
  max-width: none;
  font-size: clamp(1.18rem, 0.8vw + 1rem, 1.46rem);
  line-height: 1.18;
}

.stat-grid {
  gap: clamp(0.85rem, 1.4vw, 1.25rem);
}

.stat-grid div {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.stat-grid strong {
  font-size: clamp(1.8rem, 2.2vw, 2.35rem);
}

.form-band .narrow,
.simple-page .narrow,
.article .narrow {
  width: min(100%, 860px);
}

.lead-form {
  width: 100%;
}

.lead-form .row {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.lead-form .form-control,
.lead-form .form-select {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
}

.lead-form textarea.form-control {
  min-height: 120px;
}

.form-status {
  line-height: 1.2;
}

.table-responsive {
  border-radius: 8px;
}

.compare {
  min-width: 680px;
  margin-bottom: 0;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.28;
}

.faq summary::after {
  flex: 0 0 auto;
  float: none;
}

.final-cta .h1 {
  font-size: clamp(2rem, 4vw, 30px);
}

.site-footer img {
  max-width: min(220px, 100%);
  height: auto;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .navbar-brand img {
    width: 166px;
    height: auto;
  }

  .navbar .nav-link {
    padding-inline: 0.38rem;
    font-size: 0.82rem;
  }

  .navbar .btn {
    padding: 0.42rem 0.72rem;
    font-size: 0.82rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(245px, 320px);
    gap: 2rem;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl .nav-offcanvas {
    position: static;
    visibility: visible !important;
    flex-grow: 1;
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    transform: none !important;
    transition: none;
  }

  .navbar-expand-xl .nav-offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-xl .nav-offcanvas .offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    padding: 0;
    overflow: visible;
  }
}

@media (max-width: 1199.98px) {
  .nav-offcanvas.offcanvas {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 340px !important;
    max-width: 86vw;
    min-width: 280px;
    height: 100vh;
    background: rgba(8, 17, 31, 0.98);
  }

  .navbar-expand-xl .nav-offcanvas.offcanvas {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    visibility: hidden;
    width: 340px !important;
    max-width: 86vw;
    min-width: 280px;
    height: 100vh;
    background: rgba(8, 17, 31, 0.98);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .navbar-expand-xl .nav-offcanvas.offcanvas.show,
  .navbar-expand-xl .nav-offcanvas.offcanvas.showing {
    visibility: visible;
    transform: none;
  }

  .navbar-expand-xl .nav-offcanvas .offcanvas-header {
    display: flex;
  }

  .navbar-expand-xl .nav-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1.1rem;
    overflow-y: auto;
  }
}

@media (max-width: 1200px) {
  html {
    scroll-padding-top: 68px;
  }

  .navbar-collapse {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.75rem;
  }

  .nav-offcanvas {
    width: min(86vw, 380px);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: -28px 0 80px rgba(0, 0, 0, 0.34);
  }

  .nav-offcanvas .offcanvas-body {
    flex-direction: column;
    align-items: stretch;
    padding: 1.1rem;
  }

  .nav-offcanvas .navbar-nav {
    gap: 0.15rem;
  }

  .navbar .nav-link {
    padding: 0.72rem 0;
    font-size: 0.98rem;
  }

  .navbar .nav-link::after {
    right: auto;
    bottom: 0.45rem;
    left: 0;
    width: 3rem;
  }

  .nav-offcanvas .nav-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .nav-offcanvas .call-link {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    align-items: start;
    padding-top: 5.5rem;
    padding-bottom: 4rem;
  }

  .hero-panel {
    justify-self: start;
  }

  .cards-3,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-card {
    position: static;
  }
}

@media (max-width: 767.98px) {
  html {
    font-size: 15.5px;
    scroll-padding-top: 64px;
  }

  .container {
    --bs-gutter-x: 1.35rem;
  }

  .site-header,
  .navbar {
    min-height: 58px;
  }

  .navbar-brand img {
    width: min(52vw, 164px);
    height: auto;
  }

  .navbar > .container > .btn-primary {
    padding: 0.42rem 0.74rem;
    font-size: 0.82rem;
  }


  .hero-inner {
    padding-top: 4.6rem;
    padding-bottom: 3.2rem;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-route {
    bottom: 24vh;
    min-width: 320px;
    opacity: 0.38;
  }

  .hero-panel {
    width: 100%;
  }

  .cards-3,
  .post-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .cards-3 article,
  .post-card,
  .sticky-card,
  .inline-cta {
    padding: 1.2rem;
  }

  .lead-form {
    padding: 1rem;
  }

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

  .lead-form .btn {
    white-space: normal;
  }

  .display-phone a {
    font-size: clamp(1.75rem, 9vw, 2.6rem);
  }

  .final-cta .d-flex {
    width: 100%;
  }

  .final-cta .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .navbar-brand img {
    width: 146px;
  }

  .navbar > .container > .btn-primary {
    padding-inline: 0.62rem;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .hero-panel span {
    font-size: 1.55rem;
  }

  .hero-panel small {
    font-size: 0.68rem;
  }
}

/* Mobile overflow fixes from screenshot QA */
@media (max-width: 767.98px) {
  .navbar > .container {
    --bs-gutter-x: 0.95rem;
    gap: 0.45rem;
    flex-wrap: nowrap;
  }

  .navbar-brand {
    order: 1;
    min-width: 0;
    margin-right: 0;
  }

  .navbar-brand img {
    width: min(42vw, 150px);
  }

  .navbar > .container > .btn-primary {
    display: none;
  }

  .navbar-toggler {
    order: 2;
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.45rem;
    margin-left: auto !important;
    padding: 0.35rem;
  }

  .navbar-collapse {
    order: 4;
    flex-basis: 100%;
  }

  .hero-route {
    right: -40vw;
    bottom: 27vh;
    min-width: 300px;
    opacity: 0.24;
  }

  .route-strip .container {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.35rem;
    min-height: 0;
    overflow-x: hidden;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.72rem;
  }

  .route-strip i {
    width: 2.5rem;
    transform: rotate(90deg);
  }

  .trust-bar .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    justify-items: center;
    font-size: 0.86rem;
    text-align: center;
  }

  .trust-bar span {
    justify-content: center;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .navbar > .container {
    --bs-gutter-x: 0.8rem;
    gap: 0.35rem;
  }

  .navbar-brand img {
    width: 132px;
  }

  .navbar > .container > .btn-primary {
    display: none;
  }
}
h2.reveal{
    margin: 1rem 0;
}
