:root {
  --navy: #0a1930;
  --navy-deep: #050d1c;
  --blue-electric: #1a56ff;
  --blue-sky: #29b6f6;
  --ink: #0e1526;
  --paper: #f5f7fb;
  --slate: #5b6b8c;
  --line: #dbe3f0;

  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-display: 'Bricolage Grotesque', 'IBM Plex Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}


* {
  box-sizing: border-box;
}

.skip-to-content {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--blue-electric);
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  background: var(--paper);
  color: var(--ink);
}

h1, h2, h3, h4 {
  margin: 0;
}

p {
  margin: 0;
}

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

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

[hidden] {
  display: none !important;
}

.font-display {
  font-family: var(--font-display);
}

.text-balance {
  text-wrap: balance;
}

.accent {
  color: var(--blue-sky);
}


:focus-visible {
  outline: 2px solid var(--blue-sky);
  outline-offset: 2px;
  border-radius: 4px;
}


.container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--narrow { max-width: 56rem; }
.container--medium { max-width: 64rem; }

.section {
  position: relative;
  padding-block: 7rem;
}
.section--paper { background: var(--paper); }
.section--white { background: #fff; border-block: 1px solid var(--line); }
.section--navy { background: var(--navy); overflow: hidden; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  border: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.btn--primary {
  background: var(--blue-electric);
  color: #fff;
}
.btn--primary:hover {
  box-shadow: 0 0 28px 6px rgba(26, 86, 255, 0.4);
}
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}


.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow--blue { color: var(--blue-electric); }
.eyebrow--sky { color: var(--blue-sky); }


.heading { max-width: 42rem; }
.heading__title {
  color: var(--navy);
  font-size: clamp(1.875rem, 1.2rem + 2.6vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 0.75rem;
}
.heading__title--light { color: #fff; }
.heading__copy {
  margin-top: 1.25rem;
  color: var(--slate);
  font-size: 1.125rem;
  line-height: 1.7;
}


.pill {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

.page-hero {
  padding: 8.5rem 0 4rem;
  background: linear-gradient(135deg, rgba(26, 86, 255, 0.1), rgba(41, 182, 246, 0.08));
}

.page-hero__inner {
  max-width: 52rem;
}

.page-hero__title {
  font-size: clamp(2.2rem, 1.4rem + 3vw, 3.2rem);
  line-height: 1.05;
  margin-top: 0.8rem;
  color: var(--navy);
}

.page-hero__lead {
  margin-top: 1rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--slate);
  max-width: 45rem;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
.hero-in {
  opacity: 0;
  animation: hero-in 0.9s var(--ease) forwards;
}


@keyframes draw-route { to { stroke-dashoffset: 0; } }
.route-path {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: draw-route 3.2s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
}
@keyframes truck-drive {
  0%   { offset-distance: 0%;   opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
.truck-marker {
  offset-path: path('M 10,210 C 180,210 220,60 400,60 C 560,60 580,190 760,190 C 900,190 920,90 1040,90');
  animation: truck-drive 3.2s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.6); opacity: 0.4; }
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  33%  { transform: translate3d(-3%, 2%, 0) scale(1.06); }
  66%  { transform: translate3d(2%, -3%, 0) scale(0.97); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
.drift { animation: drift 14s ease-in-out infinite; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.float-up { animation: float-up 5s ease-in-out infinite; }


.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


.header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  transition: background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
}
.header.is-scrolled {
  background: rgba(5, 13, 28, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(5, 13, 28, 0.35);
}
.header.menu-is-open,
body[data-header="solid"] .header {
  background: rgba(5, 13, 28, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(5, 13, 28, 0.35);
}
.header__inner {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand__logo {
  width: 2.75rem;
  height: 2.75rem;
  transition: transform 0.5s ease;
}
.brand:hover .brand__logo { transform: rotate(8deg); }
.brand__name {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--blue-sky);
  font-weight: 500;
}

.nav { display: flex; align-items: center; gap: 2.25rem; }
.nav__link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}
.nav__link:hover { color: #fff; }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  height: 1.5px;
  width: 0;
  background: var(--blue-sky);
  transition: width 0.3s ease;
}
.nav__link:hover::after { width: 100%; }

.header__cta { font-size: 0.875rem; padding: 0.625rem 1.25rem; }


.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.menu-toggle__bar {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease, margin 0.3s ease;
}
.menu-toggle__bar--3 { width: 1rem; align-self: flex-start; margin-left: 0.5rem; }
.menu-toggle.is-open .menu-toggle__bar--1 { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar--2 { opacity: 0; }
.menu-toggle.is-open .menu-toggle__bar--3 {
  width: 1.5rem;
  margin-left: 0;
  transform: translateY(-8px) rotate(-45deg);
}


.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  background: var(--navy-deep);
  transition: max-height 0.5s var(--ease);
}
.mobile-menu.is-open { max-height: 24rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.mobile-menu__inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-menu__link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
}
.mobile-menu__cta { padding: 0.75rem 1.25rem; }

.header__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(to right, var(--blue-electric), var(--blue-sky));
}


.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  padding-top: 11rem;
  padding-bottom: 9rem;
}
.hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(110px);
}
.hero__orb--1 {
  top: -8rem;
  left: -6rem;
  width: 32rem;
  height: 32rem;
  background: rgba(26, 86, 255, 0.25);
}
.hero__orb--2 {
  bottom: 0;
  right: 0;
  width: 28rem;
  height: 28rem;
  background: rgba(41, 182, 246, 0.2);
  filter: blur(120px);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.375rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-sky);
  font-weight: 500;
  margin-bottom: 2rem;
}
.badge__dot {
  position: relative;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--blue-sky);
  color: var(--blue-sky);
}

.hero__title {
  color: #fff;
  font-size: clamp(2.75rem, 1.5rem + 4vw, 3.75rem);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero__lead {
  margin-top: 1.75rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
}
.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
}
.hero__stats {
  margin-top: 3.5rem;
  max-width: 28rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}
.stat__value {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  line-height: 1.3;
}

.hero__panel-wrap { position: relative; }
.hero__panel {
  position: relative;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 13, 28, 0.45);
  padding: 2rem;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  transform-style: preserve-3d;
  overflow: hidden;
}
.hero__truck {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  display: block;
}
.hero__route { width: 100%; height: auto; }
.hero__route-labels {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.hero__route-city-right { text-align: right; }
.hero__route-city { color: #fff; font-weight: 500; }
.hero__route-labels span { font-size: 0.75rem; }

.hero__card {
  position: absolute;
  bottom: -2rem;
  left: -1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  padding: 1rem 1.25rem;
  max-width: 13rem;
}
.hero__card-top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.hero__card-dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; background: #10b981; }
.hero__card-id { font-size: 0.75rem; font-weight: 600; color: var(--ink); }
.hero__card-copy { font-size: 0.7rem; color: var(--slate); line-height: 1.4; }


.trustbar { background: #fff; border-bottom: 1px solid var(--line); }
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  padding-block: 2.25rem;
}
.trust { display: flex; align-items: flex-start; gap: 0.75rem; }
.trust__icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--blue-electric);
  transition: transform 0.5s ease;
}
.trust:hover .trust__icon { transform: translateY(-2px); }
.trust__label { font-size: 0.875rem; font-weight: 600; color: var(--navy); line-height: 1.2; }
.trust__detail { margin-top: 0.25rem; font-size: 0.75rem; color: var(--slate); line-height: 1.3; }


.services {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 2.25rem 2.5rem;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
}
.service-row:hover {
  border-color: transparent;
  box-shadow: 0 24px 60px -20px rgba(10, 25, 48, 0.25);
}
.service-row__num {
  font-size: 3.75rem;
  font-weight: 600;
  color: var(--line);
  transition: color 0.5s ease;
  user-select: none;
}
.service-row:hover .service-row__num { color: rgba(26, 86, 255, 0.15); }
.service-row__title { font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.service-row__copy { margin-top: 0.625rem; color: var(--slate); line-height: 1.7; max-width: 36rem; }
.service-row__stat {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-electric);
  white-space: nowrap;
}

.service-row--reversed .service-row__num { order: 3; }
.service-row--reversed .service-row__body { order: 2; }
.service-row--reversed .service-row__stat { order: 1; }


.process__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(var(--blue-sky) 1px, transparent 1px),
    linear-gradient(90deg, var(--blue-sky) 1px, transparent 1px);
  background-size: 64px 64px;
}
.process .container { position: relative; }
.steps {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}
.step {
  position: relative;
  background: var(--navy);
  padding: 2.25rem;
  transition: background 0.5s ease;
}
.step:hover { background: var(--navy-deep); }
.step__num {
  color: var(--blue-sky);
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease;
}
.step:hover .step__num { transform: translateY(-4px); }
.step__title { color: #fff; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.625rem; }
.step__copy { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; line-height: 1.7; }


.whyus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.reasons { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.reason { display: flex; gap: 1rem; }
.reason__dot {
  margin-top: 0.375rem;
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--blue-electric);
}
.reason__title { font-size: 1.125rem; font-weight: 600; color: var(--ink); }
.reason__copy { margin-top: 0.375rem; color: var(--slate); line-height: 1.7; }

.whyus__stats {
  position: relative;
  border-radius: 1.75rem;
  background: var(--navy-deep);
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  transform: translateY(2rem);
}
.whyus__stats-glow {
  position: absolute;
  inset: 0;
  border-radius: 1.75rem;
  opacity: 0.4;
  background: radial-gradient(circle at 20% 15%, rgba(41, 182, 246, 0.25), transparent 55%);
}
.whyus__stat { position: relative; }
.whyus__stat-value {
  font-family: var(--font-display);
  color: #fff;
  font-size: 2.25rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.whyus__stat-label { margin-top: 0.5rem; color: rgba(255, 255, 255, 0.55); font-size: 0.875rem; line-height: 1.3; }


.testimonials__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.quote-card {
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.5s ease;
  transform-style: preserve-3d;
}
.quote-card--offset { margin-top: 2rem; }
.quote-card:hover { box-shadow: 0 24px 60px -24px rgba(10, 25, 48, 0.2); }
.quote-card__mark { margin-bottom: 1.25rem; color: rgba(26, 86, 255, 0.25); }
.quote-card__text { color: var(--ink); line-height: 1.7; flex: 1; margin: 0; }
.quote-card__foot { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.quote-card__name { font-weight: 600; color: var(--navy); font-size: 0.875rem; }
.quote-card__role { color: var(--slate); font-size: 0.75rem; margin-top: 0.125rem; }


.faq__list { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(26, 86, 255, 0.35);
  box-shadow: 0 8px 24px -8px rgba(26, 86, 255, 0.15);
  transform: translateY(-2px);
}
.faq-item.is-open {
  border-color: rgba(26, 86, 255, 0.5);
  box-shadow: 0 18px 50px -12px rgba(10, 25, 48, 0.2);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  padding: 1.5rem 2rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s ease;
}
.faq-item__q:hover { color: var(--blue-electric); }
.faq-item__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: transparent;
}
.faq-item:hover .faq-item__icon {
  border-color: rgba(26, 86, 255, 0.4);
  color: var(--blue-electric);
}
.faq-item.is-open .faq-item__icon {
  background: var(--blue-electric);
  border-color: var(--blue-electric);
  color: #fff;
  transform: rotate(180deg) scale(1.1);
}
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.5s var(--ease);
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a > p {
  min-height: 0;
  overflow: hidden;
  padding: 0 2rem 1.75rem;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--slate);
  line-height: 1.7;
  font-size: 0.95rem;
  opacity: 0;
  visibility: hidden;
}
.faq-item.is-open .faq-item__a > p {
  animation: fadeInAnswer 0.5s var(--ease) 0.15s forwards;
  visibility: visible;
}
@keyframes fadeInAnswer {
  to { opacity: 1; }
}


.quote { overflow: hidden; }
.quote__orb {
  position: absolute;
  top: 33%;
  left: 25%;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  background: rgba(26, 86, 255, 0.2);
  filter: blur(120px);
}
.quote .container { position: relative; }
.quote__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.quote__lead { margin-top: 1.25rem; color: rgba(255, 255, 255, 0.65); line-height: 1.7; }
.quote__contact { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; }
.quote__contact-row { display: flex; align-items: center; gap: 0.75rem; }
.quote__contact-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-sky);
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}

.quote-form {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.field { display: flex; flex-direction: column; gap: 0.375rem; }
.field--full { grid-column: 1 / -1; }
.field__label { font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); letter-spacing: 0.02em; }
.field input,
.field select,
.field textarea {
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}
.field textarea { resize: none; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--blue-sky); }
.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid { border-color: #ff6b6b; background: rgba(255, 107, 107, 0.08); }
.field input.is-invalid:focus,
.field select.is-invalid:focus,
.field textarea.is-invalid:focus { border-color: #ff6b6b; }
.field select option { background: var(--navy-deep); }

.quote-form__submit { grid-column: 1 / -1; margin-top: 0.5rem; }
.quote-form__submit:disabled { opacity: 0.6; cursor: default; }
.quote-form__error { grid-column: 1 / -1; font-size: 0.875rem; color: #fda4af; }

.quote-success {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  text-align: center;
}
.quote-success__check {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(26, 86, 255, 0.2);
  color: var(--blue-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.quote-success__title { color: #fff; font-size: 1.25rem; font-weight: 600; }
.quote-success__copy { margin-top: 0.5rem; color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; }


.footer { position: relative; background: var(--navy-deep); padding-top: 5rem; padding-bottom: 2.5rem; overflow: hidden; }
.footer__ticker-wrap { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 2rem; margin-bottom: 3.5rem; }
.footer__ticker {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.footer__ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.footer__ticker:hover .footer__ticker-track { animation-play-state: paused; }
.footer__lane { margin-inline: 2rem; color: rgba(255, 255, 255, 0.25); font-size: 0.875rem; letter-spacing: 0.02em; font-weight: 500; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 0.75fr);
  gap: 2rem;
}
.footer__brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer__logo { width: 2.5rem; height: 2.5rem; }
.footer__about { color: rgba(255, 255, 255, 0.45); font-size: 0.875rem; line-height: 1.7; max-width: 20rem; }
.footer__col-title { color: #fff; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 1rem; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; }
.footer__links a { color: rgba(255, 255, 255, 0.45); font-size: 0.875rem; transition: color 0.3s ease; }
.footer__links a:hover { color: var(--blue-sky); }
.footer__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.625rem; color: rgba(255, 255, 255, 0.45); font-size: 0.875rem; }
.footer__bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}
.footer__bottom a { color: rgba(255, 255, 255, 0.45); text-decoration: underline; text-underline-offset: 2px; }
.footer__bottom a:hover { color: var(--blue-sky); }


@media (min-width: 768px) {
  .container, .header__inner { padding-inline: 2.5rem; }
  .section { padding-block: 9rem; }
  .hero { padding-top: 11rem; padding-bottom: 9rem; }
}

@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: block; }

  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .whyus__grid { grid-template-columns: 1fr; gap: 3rem; }
  .whyus__stats { transform: none; }
  .quote__grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .quote-card--offset { margin-top: 0; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }


  .service-row,
  .service-row--reversed {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.75rem;
  }
  .service-row__num,
  .service-row--reversed .service-row__num { order: 0; font-size: 3rem; }
  .service-row__body,
  .service-row--reversed .service-row__body { order: 0; }
  .service-row__stat,
  .service-row--reversed .service-row__stat { order: 0; }
}

@media (max-width: 560px) {
  .hero__actions { flex-direction: column; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .steps { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    -webkit-tap-highlight-color: transparent;
}
  .reveal { opacity: 1 !important; transform: none !important; }
}

.nav__dropdown {
  position: relative;
  display: inline-block;
}

.nav__dropdown-trigger {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.3s ease;
}

.nav__dropdown-trigger:hover,
.nav__dropdown.is-open .nav__dropdown-trigger,
.nav__dropdown:hover .nav__dropdown-trigger {
  color: #fff;
}

.nav__dropdown-icon {
  transition: transform 0.3s ease;
}

.nav__dropdown.is-open .nav__dropdown-icon,
.nav__dropdown:hover .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: linear-gradient(145deg, rgba(6, 13, 28, 0.97), rgba(10, 24, 46, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 0.85rem;
  min-width: 17rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 100;
}

.nav__dropdown.is-open .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav__dropdown-label {
  padding: 0.2rem 0.6rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8bdcff;
}

.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.75rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav__dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--blue-sky);
  transform: translateX(3px);
}

.nav__dropdown-item--highlight {
  margin-bottom: 0.2rem;
  color: #f4f7fb;
  font-weight: 600;
}

.nav__dropdown-iconbox {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  color: #8bdcff;
  flex-shrink: 0;
}

.nav__dropdown-iconbox svg {
  width: 1rem;
  height: 1rem;
}

.nav__dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0.6rem 0;
}

.nav__dropdown-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #29b6f6, #1a56ff);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(26, 86, 255, 0.25);
}

.nav__dropdown-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(26, 86, 255, 0.3);
}

.mobile-menu__dropdown {
  width: 100%;
}

.mobile-menu__dropdown-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu__dropdown.is-open .mobile-menu__dropdown-menu {
  max-height: 18rem;
  margin-top: 0.75rem;
}

.mobile-menu__dropdown-trigger svg {
  transition: transform 0.3s ease;
}

.mobile-menu__dropdown.is-open .mobile-menu__dropdown-trigger svg {
  transform: rotate(180deg);
}

.mobile-menu__item {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-menu__item:hover {
  color: var(--blue-sky);
  transform: translateX(3px);
}

.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-custom {
  position: relative;
  flex-shrink: 0;
  height: 1.25rem;
  width: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.25rem;
  transition: background 0.3s ease, border-color 0.3s ease;
  margin-top: 0.125rem;
}

.checkbox-label:hover input ~ .checkbox-custom {
  border-color: var(--blue-sky);
}

.checkbox-label input:checked ~ .checkbox-custom {
  background: var(--blue-electric);
  border-color: var(--blue-electric);
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 7px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkbox-custom::after {
  display: block;
}

.checkbox-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.checkbox-text a {
  color: var(--blue-sky);
  text-decoration: underline;
}

.checkbox-text a:hover {
  color: #fff;
}
