:root {
  --navy: #071b33;
  --navy-2: #0b2748;
  --ink: #102033;
  --charcoal: #202936;
  --blue: #1263ff;
  --blue-dark: #0b49ca;
  --blue-soft: #eaf2ff;
  --line: #dbe4ef;
  --muted: #5d6b7c;
  --soft: #f5f7fb;
  --white: #ffffff;
  --success: #0f8d62;
  --signal: #f3b241;
  --shadow: 0 22px 60px rgba(7, 27, 51, 0.14);
  --shadow-soft: 0 14px 34px rgba(7, 27, 51, 0.08);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 239, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(7, 27, 51, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #7fb2ff, var(--success));
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 198px;
  height: 60px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-inline-start: auto;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 780;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  padding-block: 8px;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 2px 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(18, 99, 255, 0.24);
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.phone-link:hover {
  transform: translateY(-1px);
  border-color: rgba(18, 99, 255, 0.42);
  background: #f4f8ff;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 247, 251, 0.82);
}

.language-switcher a {
  min-width: 34px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  color: var(--white);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-inline-start: auto;
}

.menu-toggle span:not(.visually-hidden) {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 4px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 12px 18px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 32px rgba(18, 99, 255, 0.26);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(18, 99, 255, 0.32);
}

.button-light {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(7, 27, 51, 0.11);
}

.button-light:hover,
.button-outline:hover {
  border-color: rgba(18, 99, 255, 0.38);
  color: var(--blue-dark);
}

.button-outline {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
}

.needs-config {
  outline: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) 32%, rgba(255, 255, 255, 0.66) 58%, rgba(255, 255, 255, 0.13) 78%),
    url("/public/hero-driveaway.webp");
  background-size: cover;
  background-position: center right;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(18, 99, 255, 0.08), transparent 38%),
    linear-gradient(180deg, transparent 80%, rgba(7, 27, 51, 0.06));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), #7fb2ff, var(--success));
}

.hero-content {
  position: relative;
  min-height: 565px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.58fr);
  gap: 32px;
  align-items: center;
  padding-block: 50px 56px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-block-end: 22px;
  font-size: 52px;
}

h2 {
  margin-block-end: 16px;
  font-size: 38px;
}

h3 {
  margin-block-end: 12px;
  font-size: 22px;
}

.hero-lede {
  max-width: 620px;
  margin-block-end: 28px;
  color: #334156;
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
}

.hero-proof div {
  padding: 14px;
  border: 1px solid rgba(219, 228, 239, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(7, 27, 51, 0.08);
}

.hero-proof dt {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.hero-dashboard {
  justify-self: end;
  width: min(100%, 380px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(7, 27, 51, 0.86);
  color: var(--white);
  box-shadow: 0 26px 70px rgba(7, 27, 51, 0.28);
  backdrop-filter: blur(18px);
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-block-end: 16px;
  font-size: 14px;
  font-weight: 850;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(15, 141, 98, 0.18);
}

.route-preview {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.route-line {
  position: relative;
  height: 82px;
}

.route-line::before {
  content: "";
  position: absolute;
  inset: 9px auto 9px 29px;
  width: 3px;
  background: linear-gradient(var(--blue), #7fb2ff);
}

.route-line span,
.route-line strong {
  position: absolute;
  inset-inline-start: 20px;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  background: var(--white);
}

.route-line span:first-child {
  inset-block-start: 0;
}

.route-line strong {
  inset-block-start: 30px;
  background: var(--blue);
}

.route-line span:last-child {
  inset-block-end: 0;
}

.route-label {
  margin-block-end: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.route-title {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  line-height: 1.25;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-block: 14px;
}

.dashboard-grid div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-grid span {
  display: block;
  color: #9fc4ff;
  font-size: 12px;
  font-weight: 950;
}

.dashboard-grid strong {
  display: block;
  margin-block-start: 2px;
  font-size: 13px;
  line-height: 1.25;
}

.dashboard-link {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.quick-strip {
  background: var(--navy);
  color: var(--white);
}

.quick-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.quick-strip-inner div {
  padding: 18px 20px;
  background: var(--navy);
}

.quick-strip strong,
.quick-strip span {
  display: block;
}

.quick-strip strong {
  font-size: 15px;
}

.quick-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.section {
  position: relative;
  padding-block: 92px;
}

.section-white {
  background: var(--white);
}

.section-muted {
  background:
    linear-gradient(135deg, rgba(18, 99, 255, 0.05), transparent 34%),
    var(--soft);
}

.section-navy {
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(18, 99, 255, 0.22), rgba(15, 141, 98, 0.11)),
    linear-gradient(180deg, var(--navy), #06172c);
}

.section-heading {
  max-width: 720px;
  margin-block-end: 38px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading.compact {
  margin-block-end: 0;
}

.section-heading-invert h2,
.section-heading-invert .eyebrow {
  color: var(--white);
}

.section-heading-invert p {
  color: rgba(255, 255, 255, 0.76);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.price-card,
.feature-item,
.trust-panel,
.quote-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  position: relative;
  min-height: 380px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.feature-item:hover,
.price-card:hover,
.service-detail-card:hover,
.local-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 99, 255, 0.28);
  box-shadow: 0 22px 48px rgba(7, 27, 51, 0.12);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--success));
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-block-end: 24px;
}

.service-icon {
  min-width: 58px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 99, 255, 0.92), rgba(7, 27, 51, 0.92)),
    var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.service-card p,
.feature-item p,
.price-card p {
  color: var(--muted);
}

.card-number {
  width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 950;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}

.mini-list li {
  position: relative;
  padding-inline-start: 22px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 750;
}

.mini-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.text-link {
  margin-block-start: auto;
  padding-block-start: 22px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.standalone-link {
  display: inline-flex;
  margin-block-start: 12px;
  padding-block-start: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 54px;
  align-items: start;
}

.two-column-balanced {
  align-items: center;
}

.process-summary {
  margin-block-start: 26px;
  padding: 18px;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.process-summary strong,
.process-summary span {
  display: block;
}

.process-summary strong {
  color: var(--navy);
}

.process-summary span {
  color: var(--muted);
}

.steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.steps::before {
  content: "";
  position: absolute;
  inset-block: 26px;
  inset-inline-start: 25px;
  width: 2px;
  background: linear-gradient(var(--blue), rgba(18, 99, 255, 0.12));
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.steps span {
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  font-weight: 950;
}

.steps h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-item {
  min-height: 190px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(7, 27, 51, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-item span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--success);
  font-weight: 950;
}

.feature-item h3 {
  font-size: 20px;
}

.audience-band {
  margin-block-start: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.audience-band p {
  margin: 0 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.audience-band span {
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  position: relative;
  min-height: 318px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -50px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(18, 99, 255, 0.08);
}

.price-card-featured {
  border-color: rgba(18, 99, 255, 0.45);
  box-shadow: 0 20px 46px rgba(18, 99, 255, 0.18);
}

.price-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-block-end: 16px;
  padding: 5px 9px;
  border-radius: var(--radius);
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 950;
}

.price-card h3 {
  min-height: 52px;
  font-size: 20px;
}

.price {
  margin-block-end: 12px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 950;
  line-height: 1.1;
}

.pricing-note {
  max-width: 900px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.trust-panel {
  padding: 28px;
  box-shadow: var(--shadow);
}

.trust-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-block-end: 22px;
}

.trust-flow div {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--blue-soft);
}

.trust-flow span,
.trust-flow strong {
  display: block;
}

.trust-flow span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.trust-flow strong {
  color: var(--navy);
  line-height: 1.25;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-inline-start: 34px;
  color: var(--charcoal);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--success);
  font-weight: 950;
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.mission-media {
  position: relative;
}

.mission-media::after {
  content: "";
  position: absolute;
  inset: auto 18px -16px 18px;
  height: 28px;
  border-radius: 999px;
  background: rgba(7, 27, 51, 0.12);
  filter: blur(18px);
}

.mission-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mission-copy {
  max-width: 620px;
}

.mission-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.mission-copy .check-list {
  margin-block-start: 24px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 52px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 950;
}

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

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding-block: 86px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    url("/public/hero-driveaway.webp");
  background-size: cover;
  background-position: center right;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--success));
}

.service-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: center;
}

.service-hero h1 {
  margin-block-end: 18px;
}

.service-hero p:not(.eyebrow) {
  max-width: 680px;
  color: #334156;
  font-size: 20px;
}

.service-hero-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(7, 27, 51, 0.88);
  box-shadow: var(--shadow);
}

.service-hero-panel span {
  width: 62px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-block-end: 18px;
  border-radius: var(--radius);
  background: var(--blue);
  font-weight: 950;
}

.service-hero-panel strong {
  display: block;
  font-size: 20px;
  line-height: 1.28;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-detail-card p {
  color: var(--muted);
}

.cta-band {
  padding-block: 46px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 99, 255, 0.28), rgba(15, 141, 98, 0.14)),
    var(--navy);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band .eyebrow,
.cta-band h2 {
  color: var(--white);
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: 30px;
}

.cta-band .button-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.local-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.local-card strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.local-card span {
  color: var(--muted);
  font-size: 14px;
}

.local-card em {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.local-depth-section {
  border-top: 1px solid var(--line);
}

.local-insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.local-prep-card {
  background:
    linear-gradient(135deg, rgba(18, 99, 255, 0.08), rgba(15, 141, 98, 0.07)),
    var(--white);
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.response-panel {
  display: grid;
  gap: 10px;
  margin-block: 24px;
}

.response-panel div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 27, 51, 0.05);
}

.response-panel strong {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.response-panel span {
  color: var(--charcoal);
  font-weight: 850;
}

.contact-card {
  margin-block-start: 24px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.contact-card p {
  margin-block-end: 14px;
  font-size: 16px;
}

.contact-card p:last-child {
  margin-block-end: 0;
}

.quote-form {
  position: relative;
  padding: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quote-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), #7fb2ff, var(--success));
}

.form-intro {
  margin-block-end: 22px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 99, 255, 0.28), rgba(15, 141, 98, 0.12)),
    var(--navy);
}

.form-intro span,
.form-intro strong {
  display: block;
}

.form-intro span {
  color: #9fc4ff;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.form-intro strong {
  margin-block-start: 4px;
  font-size: 20px;
  line-height: 1.25;
}

.form-row {
  margin-block-end: 16px;
}

.two-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block-end: 10px;
}

.service-choice {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.service-choice.is-active,
.service-choice:hover {
  border-color: rgba(18, 99, 255, 0.44);
  background: var(--blue-soft);
  color: var(--blue-dark);
}

label {
  display: block;
  margin-block-end: 7px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd6e4;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(18, 99, 255, 0.18);
  border-color: var(--blue);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 82px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 99, 255, 0.24), rgba(15, 141, 98, 0.08)),
    var(--navy);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--success));
}

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

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-block: 34px 12px;
  font-size: 26px;
}

.legal-content h2:first-child {
  margin-block-start: 0;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  padding-block: 44px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(18, 99, 255, 0.12), transparent 44%),
    #06172c;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-block-end: 10px;
  color: var(--white);
  font-size: 22px;
  font-weight: 950;
  text-decoration: none;
}

.site-footer p {
  max-width: 620px;
  margin-block-end: 12px;
}

.footer-contact-line {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.footer-contact-line a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.footer-contact-line a:hover {
  text-decoration: underline;
}

.legal-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
  min-width: 220px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.floating-cta {
  display: none;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 15px;
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .language-switcher {
    margin-inline-start: auto;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .service-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-dashboard {
    display: none;
  }
}

@media (max-width: 780px) {
  body {
    padding-block-end: 86px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 172px;
    height: 52px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-inline-start: 0;
    order: 3;
  }

  .language-switcher {
    order: 2;
    margin-inline-start: auto;
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto 14px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    font-size: 16px;
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    border-radius: var(--radius);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: var(--blue-soft);
  }

  .hero {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.98) 42%, rgba(255, 255, 255, 1) 100%),
      url("/public/hero-driveaway.webp");
    background-position: 58% top;
  }

  .hero-content {
    min-height: 548px;
    align-items: end;
    padding-block: 96px 44px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lede,
  .section-heading p,
  .contact-copy p,
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-proof {
    display: none;
  }

  .quick-strip-inner,
  .faq-layout,
  .mission-layout,
  .local-insight-grid,
  .local-grid,
  .service-grid,
  .service-hero-grid,
  .service-detail-grid,
  .cta-band-inner,
  .feature-grid,
  .pricing-grid,
  .two-column,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 66px;
  }

  .section-heading.compact {
    margin-block-end: 28px;
  }

  .two-column,
  .contact-layout {
    gap: 30px;
  }

  .steps::before {
    display: none;
  }

  .trust-flow {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .two-fields {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 20px;
  }

  .cta-band-inner {
    align-items: stretch;
  }

  .cta-band h2 {
    font-size: 24px;
  }

  .floating-cta {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    inset: auto 14px 12px 14px;
    z-index: 45;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 7px;
    padding: 8px;
    border: 1px solid rgba(219, 228, 239, 0.94);
    align-items: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 40px rgba(7, 27, 51, 0.2);
    backdrop-filter: blur(18px);
  }

  .mobile-contact-bar a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(var(--radius) - 2px);
    color: var(--navy);
    background: var(--soft);
    text-decoration: none;
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-contact-bar a:last-child {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 10px 22px rgba(18, 99, 255, 0.24);
  }
}

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

@media (max-width: 440px) {
  .button {
    width: 100%;
    padding-inline: 14px;
  }

  .hero-content {
    min-height: 548px;
    padding-block-start: 92px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 27px;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .steps li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .steps span {
    width: 38px;
    height: 38px;
  }

  .audience-band {
    align-items: stretch;
    flex-direction: column;
  }

  .audience-band p {
    margin: 0;
  }
}
