:root {
  --navy: #071d3d;
  --navy-2: #0c2f5e;
  --orange: #ff6400;
  --cream: #f7f4ee;
  --paper: #fffefa;
  --ink: #0a1830;
  --muted: #5f6b7a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
svg { display: block; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 254, 250, 0.94);
  border-bottom: 1px solid rgba(7, 29, 61, 0.1);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: white;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; gap: 7px; line-height: .9; }
.brand-copy strong { color: var(--navy); font-size: 1.28rem; letter-spacing: .04em; }
.brand-copy small { color: #626872; font-size: .7rem; font-weight: 700; letter-spacing: .38em; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a { font-size: .9rem; font-weight: 700; color: #364356; }

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-small { min-height: 44px; padding-inline: 18px; }
.button-dark { color: white; background: var(--navy); }
.button-dark:hover { background: var(--navy-2); box-shadow: 0 10px 28px rgba(7,29,61,.18); }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  color: white;
  background: linear-gradient(118deg, #061b39 0%, #071f41 55%, #092b53 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, black, transparent 90%);
}
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -180px;
  top: -240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,100,0,.24), transparent 70%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 660px;
  padding-block: 72px 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .8fr);
  align-items: center;
  gap: 70px;
}
.hero-copy { max-width: 690px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #c9d7e7;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,100,0,.13);
}
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.6rem, 6.2vw, 6.25rem);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 900;
  text-wrap: balance;
}
.hero h1 span { color: var(--orange); }
.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #cbd7e5;
  font-size: 1.14rem;
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button-primary {
  min-height: 58px;
  color: white;
  background: var(--orange);
  box-shadow: 0 16px 36px rgba(255,100,0,.23);
}
.button-primary:hover { background: #ee5d00; box-shadow: 0 18px 42px rgba(255,100,0,.33); }
.button-primary .fill-dot, .floating-contact .fill-dot { fill: currentColor; stroke: none; }
.button-ghost {
  min-height: 58px;
  color: white;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.055);
}
.button-ghost:hover { background: rgba(255,255,255,.11); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b7c6d6;
  font-size: .79rem;
  font-weight: 700;
}
.trust-row svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #ff8a37;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual { position: relative; width: 100%; max-width: 490px; margin-left: auto; }
.visual-card {
  position: relative;
  aspect-ratio: .86;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 24px;
  background: #0a274f;
  box-shadow: 0 40px 90px rgba(0,0,0,.31);
}
.visual-card::before {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
}
.visual-number { position: absolute; z-index: 4; top: 24px; left: 27px; color: var(--navy); font-size: .78rem; font-weight: 900; letter-spacing: .2em; }
.visual-label { position: absolute; z-index: 4; top: 29px; right: 30px; color: var(--navy); text-align: right; font-size: .72rem; line-height: 1.45; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.orange-corner { display: none; }
.mascot {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.visual-stamp {
  position: absolute;
  z-index: 4;
  left: 26px;
  bottom: 23px;
  width: 176px;
  padding: 15px 17px;
  display: grid;
  border-radius: 13px;
  color: var(--navy);
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}
.visual-stamp span { color: var(--orange); font-size: .64rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.visual-stamp strong { margin-top: 4px; font-size: 1.15rem; }
.visual-stamp small { margin-top: 4px; color: #647082; font-size: .61rem; }
.floating-card {
  position: absolute;
  z-index: 6;
  min-width: 220px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 13px;
  color: var(--navy);
  background: rgba(255,255,255,.96);
  box-shadow: 0 20px 42px rgba(0,0,0,.25);
  animation: float 4.5s ease-in-out infinite;
}
.floating-card b { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; color: white; background: var(--orange); }
.floating-card span { display: grid; color: #6c7480; font-size: .64rem; line-height: 1.45; }
.floating-card strong { color: var(--navy); font-size: .78rem; }
.floating-card-top { top: 27%; left: -72px; }
.floating-card-bottom { right: -38px; bottom: 22%; animation-delay: -2.2s; }
.floating-card-bottom b { background: var(--navy); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.quick-services {
  position: relative;
  z-index: 3;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #bfccd9;
  font-size: .75rem;
  font-weight: 750;
}
.quick-services span:not(:first-child)::before { content: "•"; margin-right: 23px; color: var(--orange); }
.quick-services .quick-title { color: white; font-size: .66rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.services-section { padding: 104px 0 112px; background: var(--cream); }
.section-heading { max-width: 820px; text-align: center; }
.section-kicker { margin: 0 0 16px; color: var(--orange); font-size: .74rem; font-weight: 900; letter-spacing: .19em; }
.section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(2.1rem,4vw,3.6rem); line-height: 1.07; letter-spacing: -.045em; }
.section-heading > p:last-child { max-width: 590px; margin: 20px auto 0; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }

.services-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 315px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e2df;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 36px rgba(7,29,61,.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,100,0,.35);
  box-shadow: 0 20px 46px rgba(7,29,61,.09);
}
.service-topline { display: flex; align-items: flex-start; justify-content: space-between; }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--orange);
  background: rgba(255,100,0,.09);
}
.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-number { color: #b4bac1; font-size: .7rem; font-weight: 800; letter-spacing: .16em; }
.service-card h3 { margin: 28px 0 12px; color: var(--navy); font-size: 1.2rem; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.service-tag {
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
  color: var(--navy-2);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.service-tag::before { content: ""; display: inline-block; width: 18px; height: 2px; margin-right: 9px; vertical-align: 3px; background: var(--orange); }
.scope-note {
  margin-top: 30px;
  text-align: center;
  color: #6c7480;
  font-size: .82rem;
}

.process-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: var(--paper);
}
.process-section::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  left: -300px;
  top: 20px;
  border: 76px solid rgba(255,100,0,.055);
  border-radius: 50%;
}
.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 100px;
}
.process-intro h2,
.coverage-copy h2,
.why-heading h2,
.faq-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -.048em;
}
.process-intro > p:not(.section-kicker),
.coverage-copy > p:not(.section-kicker),
.faq-heading > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.75;
}
.text-link {
  width: fit-content;
  margin-top: 28px;
  padding-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 2px solid var(--orange);
  color: var(--navy);
  font-size: .86rem;
  font-weight: 850;
}
.text-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.process-steps { display: grid; }
.process-steps article {
  position: relative;
  min-height: 150px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  border-bottom: 1px solid #e5e6e5;
}
.process-steps article:first-child { border-top: 1px solid #e5e6e5; }
.process-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 27px;
  bottom: -31px;
  z-index: 2;
  width: 1px;
  height: 61px;
  background: rgba(255,100,0,.35);
}
.step-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.process-steps article:first-child .step-number { background: var(--orange); }
.process-steps h3 { margin: 2px 0 8px; color: var(--navy); font-size: 1.12rem; }
.process-steps p { margin: 0; color: var(--muted); font-size: .89rem; line-height: 1.6; }

.coverage-section { padding: 0 0 112px; background: var(--paper); }
.coverage-card {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  overflow: hidden;
  border-radius: 25px;
  color: white;
  background: var(--navy);
  box-shadow: 0 34px 80px rgba(7,29,61,.2);
}
.coverage-copy { padding: 66px 68px; }
.coverage-copy h2 { color: white; }
.coverage-copy > p:not(.section-kicker) { color: #becddd; }
.coverage-locations { display: grid; gap: 12px; margin: 29px 0 32px; }
.coverage-locations span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d5e0eb;
  font-size: .84rem;
  font-weight: 700;
}
.coverage-locations svg { width: 18px; height: 18px; fill: none; stroke: var(--orange); stroke-width: 2; }
.coverage-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,100,0,.97), rgba(225,78,0,.96)),
    var(--orange);
}
.coverage-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 48px 48px;
}
.map-rings { position: absolute; left: 50%; top: 48%; transform: translate(-50%,-50%); }
.map-rings span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
}
.map-rings span:nth-child(2) { width: 300px; height: 300px; }
.map-rings span:nth-child(3) { width: 440px; height: 440px; }
.map-pin {
  position: absolute;
  left: 50%;
  top: 47%;
  z-index: 2;
  min-width: 220px;
  padding: 20px;
  display: grid;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 16px;
  text-align: center;
  background: rgba(7,29,61,.94);
  box-shadow: 0 22px 46px rgba(7,29,61,.3);
}
.pin-dot { width: 15px; height: 15px; margin: -29px auto 14px; border: 4px solid white; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 9px rgba(255,255,255,.16); }
.map-pin strong { font-size: 1rem; }
.map-pin small { margin-top: 5px; color: #b9c7d6; font-size: .69rem; }
.coverage-badge {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  padding: 9px 14px 9px 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,.95);
  box-shadow: 0 12px 30px rgba(7,29,61,.18);
}
.coverage-badge img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.coverage-badge span { font-size: .62rem; line-height: 1.35; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }

.why-section { padding: 112px 0; background: var(--cream); }
.why-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 82px; }
.why-heading { position: sticky; top: 118px; align-self: start; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid #dedfdd;
  border-radius: 17px;
  background: rgba(255,255,255,.65);
}
.why-grid article:nth-child(2) { background: var(--navy); border-color: var(--navy); }
.why-grid article:nth-child(2) h3 { color: white; }
.why-grid article:nth-child(2) p { color: #bfcddd; }
.why-grid article > span { color: var(--orange); font-size: .68rem; font-weight: 900; letter-spacing: .14em; }
.why-grid h3 { margin: 48px 0 10px; color: var(--navy); font-size: 1.08rem; }
.why-grid p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.6; }

.faq-section { padding: 112px 0; background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; }
.faq-heading { align-self: start; }
.faq-list { border-top: 1px solid #dfe2e4; }
.faq-list details { border-bottom: 1px solid #dfe2e4; }
.faq-list summary {
  position: relative;
  padding: 25px 46px 25px 0;
  list-style: none;
  cursor: pointer;
  color: var(--navy);
  font-size: .98rem;
  font-weight: 800;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-size: 1.1rem;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; background: var(--orange); }
.faq-list details p { margin: -5px 56px 24px 0; color: var(--muted); font-size: .88rem; line-height: 1.7; }

.final-cta { padding: 0 0 70px; background: var(--paper); }
.final-cta-card {
  min-height: 280px;
  padding: 54px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.16), transparent 30%),
    var(--orange);
}
.final-cta-card h2 { max-width: 660px; margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.07; letter-spacing: -.048em; }
.final-cta-card .section-kicker { color: white; opacity: .82; }
.button-light { flex: 0 0 auto; min-height: 60px; color: var(--navy); background: white; box-shadow: 0 18px 36px rgba(7,29,61,.15); }
.button-light:hover { box-shadow: 0 22px 45px rgba(7,29,61,.22); }
.button-light .fill-dot { fill: currentColor; stroke: none; }

.site-footer { padding: 58px 0 28px; color: white; background: #05172f; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 40px; }
.footer-brand .brand-mark { border-color: rgba(255,255,255,.75); }
.footer-brand .brand-copy strong { color: white; }
.footer-brand .brand-copy small { color: #a8b7c8; }
.footer-grid > p { margin: 0; color: #9eafc0; font-size: .8rem; }
.footer-links { display: flex; align-items: center; gap: 25px; }
.footer-links a { color: #c5d1dd; font-size: .74rem; font-weight: 700; }
.footer-links a:hover { color: white; }
.social-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-links a {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #d3deea;
  font-size: .72rem;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease;
}
.social-links a:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); }
.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links a:nth-child(2) svg { fill: none; }
.social-links a:nth-child(2) .fill-dot { fill: currentColor; stroke: none; }
.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #74879b;
  font-size: .65rem;
}

.floating-contact {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  box-shadow: 0 14px 34px rgba(255,100,0,.32);
  font-size: .78rem;
  font-weight: 850;
}
.floating-contact svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .hero-layout { grid-template-columns: 1fr .76fr; gap: 36px; }
  .hero h1 { font-size: clamp(3.3rem,7vw,5rem); }
  .floating-card { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-layout { gap: 55px; }
  .coverage-copy { padding: 54px 45px; }
  .why-layout, .faq-layout { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid > p { display: none; }
}
@media (max-width: 780px) {
  .shell { width: min(100% - 28px, 640px); }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 45px; height: 45px; }
  .brand-copy strong { font-size: 1.03rem; }
  .brand-copy small { font-size: .57rem; }
  .header-inner > .button { min-height: 40px; padding-inline: 14px; font-size: .72rem; }
  .header-inner > .button svg { display: none; }
  .hero-layout { min-height: auto; grid-template-columns: 1fr; gap: 46px; padding-block: 58px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; font-size: .65rem; }
  .hero h1 { margin-inline: auto; font-size: clamp(3.35rem,15vw,5.1rem); }
  .hero-lead { margin-inline: auto; font-size: 1rem; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { max-width: 430px; margin-inline: auto; }
  .quick-services { padding-block: 20px; flex-wrap: wrap; justify-content: center; gap: 14px 20px; }
  .quick-services .quick-title { flex-basis: 100%; text-align: center; }
  .quick-services span:not(:first-child)::before { margin-right: 12px; }
  .services-section, .process-section, .why-section, .faq-section { padding-block: 82px; }
  .services-grid { margin-top: 42px; grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .process-layout, .why-layout, .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .process-intro, .why-heading, .faq-heading { text-align: center; }
  .process-intro > p:not(.section-kicker), .faq-heading > p:not(.section-kicker) { margin-inline: auto; }
  .text-link { margin-inline: auto; }
  .process-steps article { grid-template-columns: 64px 1fr; }
  .why-heading { position: static; }
  .coverage-section { padding-bottom: 82px; }
  .coverage-card { grid-template-columns: 1fr; }
  .coverage-copy { padding: 48px 36px 55px; text-align: center; }
  .coverage-locations { width: fit-content; margin-inline: auto; text-align: left; }
  .coverage-visual { min-height: 430px; }
  .final-cta { padding-bottom: 45px; }
  .final-cta-card { padding: 48px 36px; flex-direction: column; align-items: flex-start; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .social-links { justify-content: center; }
  .footer-bottom { justify-content: center; flex-wrap: wrap; text-align: center; }
}
@media (max-width: 480px) {
  .header-inner { gap: 10px; }
  .brand { gap: 8px; }
  .header-inner > .button { padding-inline: 11px; }
  .hero h1 { font-size: clamp(3rem,15vw,4.1rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-row { display: grid; justify-items: center; }
  .visual-card { border-radius: 18px; }
  .visual-stamp { left: 17px; bottom: 17px; }
  .services-section, .process-section, .why-section, .faq-section { padding-block: 68px; }
  .service-card { padding: 24px; }
  .process-steps article { grid-template-columns: 54px 1fr; gap: 16px; }
  .step-number { width: 46px; height: 46px; }
  .process-steps article:not(:last-child)::after { left: 23px; }
  .coverage-card { width: 100%; border-radius: 0; }
  .coverage-copy { padding: 46px 24px 52px; }
  .coverage-visual { min-height: 360px; }
  .map-rings span:nth-child(3) { width: 350px; height: 350px; }
  .coverage-badge { right: 14px; bottom: 14px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid article { min-height: 205px; }
  .faq-list summary { font-size: .9rem; }
  .final-cta-card { width: 100%; padding: 42px 24px; border-radius: 0; text-align: center; align-items: stretch; }
  .button-light { white-space: normal; }
  .floating-contact { width: 52px; padding: 0; justify-content: center; }
  .floating-contact span { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .floating-card { animation: none; }
  .button { transition: none; }
}
