:root {
  --container: 1240px;
  --bg-dark: #07111f;
  --bg-dark-2: #0b1728;
  --primary: #1265e8;
  --primary-2: #0f56c6;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --text: #101828;
  --muted: #667085;
  --line: #e6eaf0;
  --line-dark: rgba(255,255,255,.12);
  --accent: #f5a623;
  --success: #1fa36b;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 18px 50px rgba(16,24,40,.08);
  --shadow-deep: 0 30px 80px rgba(0,0,0,.24);
  --section: clamp(72px, 8vw, 120px);
  --header-h: 78px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg, video { display: block; max-width: 100%; }
svg { flex: 0 0 auto; }
:focus-visible { outline: 3px solid rgba(18,101,232,.45); outline-offset: 3px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: var(--section) 0; }
section[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 9999;
  background: #fff;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { top: 14px; }

.topbar {
  background: #050c16;
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
}
.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar p { margin: 0; display: flex; align-items: center; gap: 8px; }
.status-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--success); box-shadow: 0 0 0 4px rgba(31,163,107,.12); animation: statusPulse 1.8s ease-in-out infinite; }
.topbar__areas { letter-spacing: .02em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7,17,31,.95);
  backdrop-filter: saturate(130%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.header__inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand__mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(18,101,232,.22), rgba(18,101,232,.08));
  color: #71a7ff;
  border: 1px solid rgba(113,167,255,.28);
}
.brand__text { display: grid; line-height: 1.1; min-width: 0; }
.brand__text strong { color: #fff; font-size: 15px; letter-spacing: -.02em; white-space: nowrap; }
.brand__text small { margin-top: 6px; color: rgba(255,255,255,.56); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 30px); }
.desktop-nav a { color: rgba(255,255,255,.72); font-weight: 650; font-size: 14px; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--primary); transition: .22s var(--ease); }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.82); font-size: 13px; font-weight: 700; }
.header-phone svg { width: 18px; height: 18px; }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 0 18px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -.01em;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 19px; height: 19px; }
.btn--primary { position: relative; overflow: hidden; background: var(--primary); color: #fff; box-shadow: 0 12px 26px rgba(18,101,232,.25); }
.btn--primary::after { content: ""; position: absolute; inset: 0 auto 0 -130%; width: 70%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent); transform: skewX(-18deg); transition: left .55s var(--ease); }
.btn--primary:hover::after { left: 130%; }
.btn--primary:hover { background: var(--primary-2); box-shadow: 0 16px 30px rgba(18,101,232,.31); }
.btn--ghost { border-color: rgba(255,255,255,.22); color: #fff; background: rgba(255,255,255,.05); }
.btn--ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.32); }
.btn--light { background: #fff; color: var(--bg-dark); box-shadow: 0 14px 30px rgba(0,0,0,.13); }
.btn--outline-light { border-color: rgba(255,255,255,.32); color: #fff; background: transparent; }
.btn--outline-light:hover { background: rgba(255,255,255,.08); }
.btn--outline { border-color: var(--line); color: var(--text); background: #fff; }
.btn--large { min-height: 54px; padding-inline: 22px; border-radius: 14px; font-size: 15px; }
.is-placeholder { cursor: pointer; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: #fff;
}
.menu-toggle span { width: 19px; height: 2px; border-radius: 2px; background: currentColor; }
.mobile-menu { position: fixed; inset: 0; background: rgba(4,10,18,.72); z-index: 1200; padding: 16px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu__panel {
  margin-left: auto;
  width: min(92vw, 390px);
  height: min(100%, 720px);
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-deep);
  overflow-y: auto;
}
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding: 2px 0 14px; border-bottom: 1px solid var(--line); }
.mobile-menu__head strong { font-size: 18px; }
.menu-close { width: 38px; height: 38px; border: 0; border-radius: 10px; background: var(--surface-soft); color: var(--text); font-size: 28px; line-height: 1; }
.mobile-menu nav { display: grid; padding: 14px 0; }
.mobile-menu nav a { padding: 13px 6px; border-bottom: 1px solid var(--line); font-weight: 750; }
.mobile-menu__cta { display: grid; grid-template-columns: 1fr; gap: 10px; padding-top: 14px; }

.hero {
  position: relative;
  isolation: isolate;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 25%, rgba(18,101,232,.24), transparent 33%),
    radial-gradient(circle at 16% 10%, rgba(245,166,35,.10), transparent 24%),
    linear-gradient(115deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, auto, 54px 54px;
  opacity: .92;
}
.hero::before {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  min-width: 360px;
  min-height: 360px;
  right: -12vw;
  top: -10vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18,101,232,.28), rgba(18,101,232,0) 68%);
  filter: blur(30px);
  animation: heroOrb 9s ease-in-out infinite alternate;
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}
.hero__grid {
  min-height: clamp(700px, 78vh, 860px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(54px, 7vw, 110px);
  padding-top: clamp(54px, 6vw, 82px);
  padding-bottom: clamp(60px, 7vw, 90px);
}
.eyebrow { margin: 0 0 18px; color: #8eb7ff; font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow--dark { color: var(--primary); }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 850;
}
.hero__lead { margin: 24px 0 0; max-width: 760px; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.72; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__quick { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px 22px; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 700; }
.hero__quick span { display: inline-flex; align-items: center; gap: 7px; }
.hero__quick svg { width: 17px; height: 17px; color: #74a8ff; }

.hero-media { position: relative; justify-self: end; width: min(100%, 464px); }
.hero-media__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 464 / 832;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, #10213a, #08111e);
  box-shadow: var(--shadow-deep);
}
.hero-media__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.34));
}
.hero-media__route { position: absolute; inset: 0; opacity: .55; }
.hero-media__route span { position: absolute; left: -10%; width: 120%; height: 1px; background: linear-gradient(90deg, transparent, rgba(126,171,255,.34), transparent); transform: rotate(-19deg); }
.hero-media__route span:nth-child(1) { top: 28%; }
.hero-media__route span:nth-child(2) { top: 53%; transform: rotate(17deg); }
.hero-media__route span:nth-child(3) { top: 74%; transform: rotate(-8deg); }
.hero-media__placeholder { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; padding: 30px; color: rgba(255,255,255,.8); }
.hero-media__placeholder svg { width: 92px; height: 92px; color: #6ba4ff; margin-bottom: 18px; }
.hero-media__placeholder strong { font-size: 18px; }
.hero-media__placeholder span { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 5px; }
.hero-media__placeholder small { margin-top: 12px; max-width: 220px; color: rgba(255,255,255,.4); font-size: 11px; }
.hero-media__badge {
  position: absolute;
  left: -38px;
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background: rgba(255,255,255,.97);
  color: var(--text);
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
}
.hero-media__badge-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: #edf4ff; color: var(--primary); font-weight: 900; }
.hero-media__badge div { display: grid; line-height: 1.25; }
.hero-media__badge strong { font-size: 13px; }
.hero-media__badge small { margin-top: 3px; color: var(--muted); font-size: 11px; }

.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip article { min-height: 112px; display: flex; align-items: center; gap: 14px; padding: 20px 22px; border-right: 1px solid var(--line); }
.trust-strip article:first-child { padding-left: 0; }
.trust-strip article:last-child { border-right: 0; padding-right: 0; }
.trust-strip article > span { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 11px; background: #edf4ff; color: var(--primary); font-size: 12px; font-weight: 900; }
.trust-strip article div { display: grid; line-height: 1.2; }
.trust-strip strong { font-size: 14px; }
.trust-strip small { margin-top: 6px; color: var(--muted); font-size: 12px; }

.section-heading { max-width: 760px; }
.section-heading--wide { max-width: 920px; }
.section-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.04em; font-weight: 850; }
.section-heading p { margin: 18px 0 0; color: var(--muted); font-size: 17px; }

.services { background: var(--surface-soft); }
.service-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: 0 12px 30px rgba(16,24,40,.04); }
.service-card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: #edf4ff; color: var(--primary); }
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin: 22px 0 10px; font-size: 22px; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); }

.emergency-cta { background: var(--primary); color: #fff; }
.emergency-cta__inner { min-height: 280px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.emergency-cta h2 { margin: 0; font-size: clamp(36px, 5vw, 60px); line-height: 1; letter-spacing: -.04em; }
.emergency-cta p { margin: 18px 0 0; max-width: 740px; color: rgba(255,255,255,.79); font-size: 17px; }
.emergency-cta__actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px; }

.process { background: #fff; }
.process__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.process-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--bg-dark); color: #fff; font-weight: 900; }
.process-list h3 { margin: 0; font-size: 21px; }
.process-list p { margin: 6px 0 0; color: var(--muted); }

.about { background: var(--surface-soft); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.about__visual { position: relative; min-height: 510px; border-radius: 24px; overflow: hidden; border: 1px solid #dfe6ef; background:
  linear-gradient(90deg, rgba(18,101,232,.06) 1px, transparent 1px),
  linear-gradient(rgba(18,101,232,.06) 1px, transparent 1px),
  #f0f5fb;
  background-size: 34px 34px;
}
.about__visual::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 44% 48%, rgba(18,101,232,.12), transparent 40%); }
.about__route-line { position: absolute; left: 14%; right: 12%; top: 50%; height: 3px; background: linear-gradient(90deg, transparent, var(--primary), #65a0ff, transparent); transform: rotate(-18deg); border-radius: 999px; z-index: 2; }
.about__route-line::before, .about__route-line::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #fff; border: 3px solid var(--primary); top: 50%; transform: translateY(-50%); }
.about__route-line::before { left: 20%; }
.about__route-line::after { right: 18%; }
.about__label { position: absolute; z-index: 3; padding: 7px 10px; border-radius: 9px; background: rgba(255,255,255,.92); border: 1px solid #dfe6ef; box-shadow: 0 8px 22px rgba(16,24,40,.08); font-size: 12px; font-weight: 800; }
.about__label--one { left: 18%; top: 28%; }
.about__label--two { right: 18%; top: 24%; }
.about__label--three { left: 24%; bottom: 24%; }
.about__label--four { right: 24%; bottom: 20%; }
.about__label--five { right: 8%; top: 52%; }
.about__pin { position: absolute; z-index: 4; left: 47%; top: 43%; width: 68px; height: 68px; display: grid; place-items: center; border-radius: 18px; background: var(--primary); color: #fff; font-size: 28px; box-shadow: 0 18px 40px rgba(18,101,232,.3); }
.about .section-heading p + p { margin-top: 14px; }
.about__points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.about__points span { padding: 9px 12px; border-radius: 10px; background: #fff; border: 1px solid var(--line); font-size: 12px; font-weight: 800; color: #344054; }

.regions { background: #fff; }
.region-list { margin-top: 48px; border-top: 1px solid var(--line); }
.region-block { display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.region-block__number { font-size: 13px; font-weight: 900; color: var(--primary); padding-top: 7px; }
.region-block h3 { margin: 0; font-size: clamp(24px, 2.5vw, 32px); letter-spacing: -.03em; }
.region-block p { margin: 12px 0 0; color: var(--muted); max-width: 920px; }

.roadside { background: var(--bg-dark); color: #fff; }
.roadside .eyebrow--dark { color: #8eb7ff; }
.roadside .section-heading p { color: rgba(255,255,255,.64); }
.roadside__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 110px); }
.roadside__steps { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.roadside__steps article { min-height: 190px; padding: 24px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.035); }
.roadside__steps span { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(18,101,232,.22); color: #87b2ff; font-size: 12px; font-weight: 900; }
.roadside__steps h3 { margin: 20px 0 8px; font-size: 18px; }
.roadside__steps p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }

.gallery { background: var(--surface-soft); }
.gallery-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-placeholder { aspect-ratio: 4 / 3; border-radius: 16px; border: 1px dashed #b8c4d4; background: linear-gradient(145deg, #eef3f8, #e7edf4); display: grid; place-content: center; justify-items: center; color: #68768a; overflow: hidden; }
.gallery-placeholder span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: #fff; color: var(--primary); font-size: 11px; font-weight: 900; box-shadow: 0 8px 16px rgba(16,24,40,.05); }
.gallery-placeholder strong { margin-top: 10px; font-size: 14px; }
.gallery-placeholder small { margin-top: 2px; font-size: 11px; }

.faq { background: #fff; }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.accordion { display: grid; gap: 10px; }
.accordion details { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: clip; }
.accordion summary { position: relative; cursor: pointer; list-style: none; padding: 20px 52px 20px 20px; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; display: grid; place-items: center; border-radius: 8px; background: var(--surface-soft); color: var(--primary); font-size: 20px; line-height: 1; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.contact { position: relative; background: var(--primary); color: #fff; padding: var(--section) 0; overflow: hidden; }
.contact::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 44px 44px; opacity: .45; }
.contact__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(50px, 8vw, 100px); align-items: center; }
.contact__content h2 { margin: 0; font-size: clamp(40px, 5vw, 64px); line-height: 1.03; letter-spacing: -.045em; }
.contact__content p { max-width: 680px; margin: 20px 0 0; color: rgba(255,255,255,.76); font-size: 17px; }
.contact__actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.contact-card { font-style: normal; background: #fff; color: var(--text); border-radius: 22px; padding: 28px; box-shadow: 0 28px 60px rgba(0,0,0,.18); }
.contact-row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-row span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.contact-row strong { font-size: 14px; overflow-wrap: anywhere; }
.map-placeholder { margin-top: 20px; display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: 14px; background: var(--surface-soft); }
.map-placeholder > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: #e9f1ff; color: var(--primary); font-weight: 900; }
.map-placeholder div { display: grid; line-height: 1.25; }
.map-placeholder small { margin-top: 4px; color: var(--muted); overflow-wrap: anywhere; }

.site-footer { background: #050c16; color: rgba(255,255,255,.66); padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1fr; gap: 44px; }
.footer__grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.brand--footer .brand__mark { color: #fff; font-size: 12px; font-weight: 900; }
.footer__grid p { max-width: 390px; font-size: 14px; }
.footer__grid h2 { margin: 0 0 14px; color: #fff; font-size: 14px; }
.footer__grid a, .footer__grid span { padding: 4px 0; font-size: 13px; }
.footer__grid a:hover { color: #fff; }
.footer__bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; gap: 20px; font-size: 12px; }

.mobile-sticky { display: none; }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .header__inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: inline-flex; }
  .header-help { display: none; }
  .hero__grid { grid-template-columns: 1fr minmax(320px, 400px); gap: 46px; }
  .hero-media__badge { left: -20px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; }
  .topbar__areas { display: none !important; }
  .hero__grid { min-height: auto; grid-template-columns: 1fr; padding-top: 54px; }
  .hero__content { max-width: 760px; }
  .hero-media { justify-self: center; width: min(100%, 440px); margin-top: 4px; }
  .hero-media__badge { left: 18px; right: 18px; bottom: 22px; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip article:nth-child(2) { border-right: 0; }
  .trust-strip article:first-child, .trust-strip article { padding-left: 18px; padding-right: 18px; }
  .trust-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr; }
  .emergency-cta__inner, .process__grid, .about__grid, .roadside__grid, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .emergency-cta__inner { padding: 58px 0; gap: 28px; }
  .emergency-cta__actions { justify-content: flex-start; }
  .process__grid, .about__grid, .roadside__grid, .faq__grid, .contact__grid { gap: 44px; }
  .about__visual { min-height: 420px; order: 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer__grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --section: 72px; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__inner { min-height: 34px; justify-content: center; text-align: center; }
  .topbar p { font-size: 11px; }
  .header__inner { gap: 12px; }
  .brand__mark { width: 40px; height: 40px; border-radius: 12px; }
  .brand__mark svg { width: 28px; height: 28px; }
  .brand__text strong { font-size: 13px; max-width: 185px; overflow: hidden; text-overflow: ellipsis; }
  .brand__text small { font-size: 8.5px; max-width: 190px; overflow: hidden; text-overflow: ellipsis; }
  .header-phone { width: 42px; height: 42px; justify-content: center; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; }
  .header-phone span { display: none; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero__grid { padding-top: 44px; padding-bottom: 58px; gap: 42px; }
  .eyebrow { font-size: 10.5px; line-height: 1.5; margin-bottom: 14px; }
  .hero h1 { font-size: clamp(38px, 11vw, 48px); line-height: 1.04; }
  .hero__lead { font-size: 16px; line-height: 1.65; margin-top: 18px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; margin-top: 26px; }
  .btn--large { width: 100%; }
  .hero__quick { display: grid; gap: 9px; margin-top: 22px; }
  .hero-media { width: min(100%, 390px); }
  .hero-media__frame { border-radius: 22px; }
  .hero-media__placeholder small { display: none; }
  .hero-media__badge { left: 14px; right: 14px; bottom: 16px; padding: 11px 12px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip article, .trust-strip article:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); min-height: 92px; }
  .trust-strip article:last-child { border-bottom: 0; }
  .section-heading h2 { font-size: 34px; }
  .section-heading p { font-size: 15.5px; }
  .service-card { padding: 22px; }
  .emergency-cta__actions { display: grid; grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 46px 1fr; gap: 14px; }
  .process-list li > span { width: 42px; height: 42px; }
  .about__visual { min-height: 340px; border-radius: 18px; }
  .about__label { font-size: 10px; }
  .about__pin { width: 56px; height: 56px; font-size: 24px; }
  .region-block { grid-template-columns: 1fr; gap: 8px; padding: 30px 0; }
  .region-block__number { padding-top: 0; }
  .roadside__steps { grid-template-columns: 1fr; }
  .roadside__steps article { min-height: auto; }
  .gallery-grid { gap: 10px; }
  .gallery-placeholder strong { font-size: 12px; }
  .gallery-placeholder small { font-size: 10px; }
  .contact-card { padding: 20px; }
  .contact-row { grid-template-columns: 1fr; gap: 4px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .footer__grid > div:first-child, .footer__grid > div:last-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; }
  .mobile-sticky {
    position: fixed;
    z-index: 1100;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 58px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(7,17,31,.97);
    box-shadow: 0 20px 40px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
  }
  .mobile-sticky a { display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; font-weight: 850; font-size: 14px; }
  .mobile-sticky a + a { background: var(--primary); }
  .mobile-sticky svg { width: 20px; height: 20px; }
}

@media (max-width: 380px) {
  .brand__text small { display: none; }
  .brand__text strong { max-width: 150px; }
  .header-actions { gap: 6px; }
  .hero h1 { font-size: 36px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > div { grid-column: auto !important; }
}

.prep { background: #fff; border-top: 1px solid var(--line); }
.prep-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prep-card { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface-soft); }
.prep-card > span { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: #e9f1ff; color: var(--primary); font-size: 12px; font-weight: 900; }
.prep-card h3 { margin: 18px 0 9px; font-size: 20px; letter-spacing: -.025em; }
.prep-card p { margin: 0; color: var(--muted); }
@media (max-width: 900px) { .prep-grid { grid-template-columns: 1fr; } }

.hero-media__badge--service { left: auto; right: -26px; top: 34px; bottom: auto; }
.hero-media__badge--service .hero-media__badge-icon { background: rgba(245,166,35,.14); color: #b26f00; }
.section-heading--center { max-width: 860px; margin-inline: auto; text-align: center; }

.impact-counters { position: relative; background: linear-gradient(180deg, #0a1322, #08111d); color: #fff; padding: calc(var(--section) - 12px) 0 var(--section); overflow: hidden; }
.impact-counters::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px); background-size: 44px 44px; opacity: .45; }
.impact-counters::after { content: ""; position: absolute; left: 50%; top: 18%; width: 44vw; height: 44vw; min-width: 360px; min-height: 360px; transform: translateX(-50%); background: radial-gradient(circle, rgba(245,166,35,.18), rgba(245,166,35,0) 65%); filter: blur(32px); }
.impact-counters .section-heading { position: relative; z-index: 1; }
.impact-counters .section-heading .eyebrow { color: #f1c267; }
.impact-counters .section-heading h2 { color: #fff; }
.impact-counters .section-heading p { color: rgba(255,255,255,.68); }
.counter-grid { position: relative; z-index: 1; margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.counter-card { position: relative; overflow: hidden; min-height: 220px; padding: 28px; border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.12); box-shadow: 0 24px 60px rgba(0,0,0,.22); backdrop-filter: blur(10px); }
.counter-card__shine { position: absolute; inset: -2px; background: linear-gradient(135deg, rgba(255,255,255,.24), transparent 32%, transparent 70%, rgba(245,166,35,.22)); opacity: .38; pointer-events: none; }
.counter-card strong { display: block; font-size: clamp(52px, 6vw, 74px); line-height: 1; letter-spacing: -.05em; font-weight: 900; }
.counter-card h3 { margin: 20px 0 8px; font-size: 22px; letter-spacing: -.025em; color: #fff; }
.counter-card p { margin: 0; color: rgba(255,255,255,.67); font-size: 14px; }

.testimonials { position: relative; isolation: isolate; background: #050b14; color: #fff; padding: var(--section) 0; overflow: hidden; }
.testimonials__backdrop { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 32%, rgba(245,166,35,.16), transparent 22%), linear-gradient(120deg, rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px); background-size: auto, 34px 34px, 34px 34px; opacity: .82; }
.testimonials .section-heading .eyebrow { color: rgba(255,255,255,.76); }
.testimonials .section-heading h2 { color: #fff; }
.testimonials .section-heading p { color: rgba(255,255,255,.66); }
.testimonial-grid { margin-top: 42px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card { position: relative; overflow: hidden; padding: 18px 18px 22px; border-radius: 22px; border: 1px solid rgba(255,205,115,.22); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); box-shadow: 0 22px 44px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.06); }
.testimonial-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,205,115,.14), transparent 32%, transparent 72%, rgba(255,255,255,.06)); opacity: .8; pointer-events: none; }
.testimonial-card__head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 999px; background: linear-gradient(180deg, rgba(245,166,35,.20), rgba(245,166,35,.08)); border: 1px solid rgba(255,205,115,.24); color: #fff3d4; font-weight: 900; }
.testimonial-card__meta { display: grid; line-height: 1.22; }
.testimonial-card__meta strong { font-size: 18px; }
.testimonial-card__meta small { margin-top: 4px; color: rgba(255,255,255,.62); font-size: 13px; }
.testimonial-card__rating { padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(255,205,115,.22); background: rgba(245,166,35,.08); color: #f3c56e; font-size: 12px; letter-spacing: .18em; white-space: nowrap; }
.testimonial-card p { position: relative; margin: 18px 0 0; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.65; }

@keyframes statusPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(31,163,107,.22), 0 0 0 4px rgba(31,163,107,.12); } 50% { box-shadow: 0 0 0 7px rgba(31,163,107,0), 0 0 0 4px rgba(31,163,107,.12); } }
@keyframes heroOrb { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-24px, 22px, 0) scale(1.08); } }

@media (max-width: 1120px) { .counter-grid { grid-template-columns: repeat(2, 1fr); } .testimonial-grid { grid-template-columns: 1fr; } .hero-media__badge--service { right: -8px; } }
@media (max-width: 900px) { .counter-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .counter-grid { grid-template-columns: 1fr; } .counter-card { min-height: 186px; padding: 22px; } .testimonial-card { padding: 16px 16px 20px; } .testimonial-card__head { grid-template-columns: auto 1fr; } .testimonial-card__rating { grid-column: 1 / -1; justify-self: start; margin-left: 52px; } .testimonial-card p { font-size: 15px; } .hero-media__badge--service { top: auto; left: 14px; right: 14px; bottom: 94px; } }

/* ===== Ultra refinement update ===== */
.impact-counters { padding-top: var(--section); }
.impact-counters__glow {
  position: absolute;
  width: 26vw;
  height: 26vw;
  min-width: 220px;
  min-height: 220px;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .5;
  pointer-events: none;
}
.impact-counters__glow--left { left: 6%; top: 26%; background: radial-gradient(circle, rgba(18,101,232,.34), rgba(18,101,232,0) 72%); }
.impact-counters__glow--center { left: 50%; top: 12%; transform: translateX(-50%); background: radial-gradient(circle, rgba(245,166,35,.25), rgba(245,166,35,0) 70%); }
.impact-counters__glow--right { right: 6%; top: 30%; background: radial-gradient(circle, rgba(18,101,232,.28), rgba(18,101,232,0) 72%); }
.counter-grid { align-items: stretch; }
.counter-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.03));
}
.counter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 32%, transparent 66%, rgba(245,166,35,.16));
  opacity: .85;
  pointer-events: none;
}
.counter-card strong { position: relative; z-index: 1; font-size: clamp(58px, 6vw, 86px); }
.counter-card h3,
.counter-card p { position: relative; z-index: 1; }
.counter-card h3 { margin-top: 18px; }
.counter-card p { max-width: 210px; }

.about__visual {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef4fb, #e8eef6);
  border: 1px solid #dce5f0;
}
.about__visual-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18,101,232,.06) 1px, transparent 1px),
    linear-gradient(rgba(18,101,232,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}
.about__visual-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  filter: blur(22px);
}
.about__visual-glow--blue { left: 18%; top: 28%; background: radial-gradient(circle, rgba(35,120,255,.24), rgba(35,120,255,0) 70%); }
.about__visual-glow--gold { right: 14%; top: 20%; background: radial-gradient(circle, rgba(245,166,35,.18), rgba(245,166,35,0) 70%); }
.about__badge {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(16,24,40,.10);
}
.about__badge--service { left: 28px; top: 24px; background: #fff; color: #0f1b2d; }
.about__badge--live { right: 24px; top: 72px; background: #fff7eb; color: #b26f00; }
.about__badge--local { left: 40px; bottom: 34px; background: #edf4ff; color: var(--primary); }
.about__dashboard {
  position: absolute;
  inset: 56px 44px 46px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.66), rgba(255,255,255,.74));
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 24px 44px rgba(16,24,40,.12);
  backdrop-filter: blur(8px);
}
.about__dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 24px 0;
}
.about__dashboard-head span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about__dashboard-head strong {
  font-size: 22px;
  letter-spacing: -.03em;
}
.about__scene {
  position: absolute;
  inset: 68px 0 0;
}
.about__scene svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about__mini-card {
  position: absolute;
  min-width: 132px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid #dbe5f1;
  box-shadow: 0 16px 28px rgba(16,24,40,.10);
}
.about__mini-card strong { display: block; font-size: 13px; }
.about__mini-card small { display: block; margin-top: 4px; font-size: 11px; color: var(--muted); }
.about__mini-card--one { left: 34px; top: 138px; }
.about__mini-card--two { right: 26px; top: 92px; }
.about__mini-card--three { right: 48px; bottom: 34px; }

.process-list--enhanced {
  position: relative;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 18px 24px;
  box-shadow: 0 20px 46px rgba(16,24,40,.06);
}
.process-list--enhanced::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 46px;
  bottom: 46px;
  width: 2px;
  background: linear-gradient(180deg, rgba(18,101,232,.24), rgba(18,101,232,.04));
}
.process-list--enhanced li {
  position: relative;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 24px 0;
}
.process-list--enhanced li:last-child { border-bottom: 0; }
.process-list--enhanced li > span {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, #07111f, #0f1d33);
  box-shadow: 0 16px 24px rgba(7,17,31,.18);
}
.process-list__title-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.process-list__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #edf4ff;
  color: var(--primary);
}
.process-list__icon svg { width: 22px; height: 22px; }
.process-list--enhanced p { margin-top: 8px; }

.prep-card {
  position: relative;
  overflow: hidden;
  padding-top: 28px;
  background: linear-gradient(180deg, #f8fbff, #f3f7fc);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.prep-card::before {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18,101,232,.10), rgba(18,101,232,0) 72%);
}
.prep-card__icon {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #edf4ff;
  color: var(--primary);
  box-shadow: 0 12px 22px rgba(18,101,232,.10);
}
.prep-card__icon svg { width: 24px; height: 24px; }
.prep-card > span { position: relative; z-index: 1; }
.prep-card h3 { max-width: calc(100% - 64px); }

.testimonial-card p { font-size: 16px; }

@media (max-width: 1120px) {
  .about__dashboard { inset: 56px 28px 28px; }
  .about__mini-card--two { right: 18px; }
}

@media (max-width: 900px) {
  .about__visual { min-height: 460px; }
  .about__dashboard { inset: 60px 22px 22px; }
}

@media (max-width: 640px) {
  .counter-card { min-height: 210px; }
  .about__visual { min-height: 380px; }
  .about__badge { font-size: 10px; padding: 8px 10px; }
  .about__dashboard-head { padding: 16px 16px 0; }
  .about__dashboard-head strong { font-size: 16px; }
  .about__mini-card { min-width: 100px; padding: 10px 10px; border-radius: 12px; }
  .about__mini-card strong { font-size: 11px; }
  .about__mini-card small { font-size: 9px; }
  .about__mini-card--one { left: 12px; top: 128px; }
  .about__mini-card--two { right: 10px; top: 88px; }
  .about__mini-card--three { right: 16px; bottom: 18px; }
  .process-list--enhanced { padding: 14px 18px; }
  .process-list--enhanced::before { left: 38px; }
  .process-list--enhanced li { grid-template-columns: 52px 1fr; gap: 14px; }
  .process-list__title-row { align-items: flex-start; }
  .process-list__icon { width: 36px; height: 36px; }
  .prep-card__icon { width: 42px; height: 42px; right: 18px; top: 18px; }
}

.gallery-item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #d9e1ec;
  background: #eaf0f7;
  box-shadow: 0 16px 36px rgba(16,24,40,.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(180deg, rgba(7,17,31,.12), rgba(7,17,31,.76));
  backdrop-filter: blur(8px);
}
.gallery-item figcaption span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.16);
  font-size: 11px;
  font-weight: 900;
}
.gallery-item figcaption strong {
  font-size: 13px;
  letter-spacing: -.01em;
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.04) contrast(1.02);
}
@media (max-width: 640px) {
  .gallery-item { border-radius: 14px; }
  .gallery-item figcaption { left: 10px; right: 10px; bottom: 10px; padding: 8px 10px; }
  .gallery-item figcaption strong { font-size: 12px; }
}

/* Business info + testimonial refinement */
.header-phone { white-space: nowrap; }
.header-phone span { white-space: nowrap; }
.map-placeholder { text-decoration: none; }
.map-placeholder:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(16,24,40,.08); }

.testimonial-grid--modern .testimonial-card {
  padding: 20px 20px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}
.testimonial-grid--modern .testimonial-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(245,166,35,.9);
  box-shadow: 0 0 0 5px rgba(245,166,35,.08);
}
.testimonial-grid--modern .testimonial-card__avatar {
  width: 44px;
  height: 44px;
  color: #ffdca2;
  background: linear-gradient(180deg, rgba(245,166,35,.18), rgba(245,166,35,.10));
}
.testimonial-grid--modern .testimonial-card__avatar svg {
  width: 22px;
  height: 22px;
}
.testimonial-grid--modern .testimonial-card__meta strong { font-size: 17px; }
.testimonial-grid--modern .testimonial-card__meta small { letter-spacing: .02em; }
.testimonial-grid--modern .testimonial-card p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .header-phone span { max-width: 130px; overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 640px) {
  .map-placeholder:hover { transform: none; box-shadow: none; }
  .testimonial-grid--modern .testimonial-card { padding: 16px 16px 18px; }
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 1080;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.floating-whatsapp__label {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(7,17,31,.92);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 18px 34px rgba(7,17,31,.20);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}
.floating-whatsapp__icon {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 22px 40px rgba(18, 211, 98, .26), 0 12px 26px rgba(16,24,40,.16);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.floating-whatsapp__icon img {
  width: 64px;
  height: 64px;
  display: block;
}
.floating-whatsapp:hover .floating-whatsapp__label,
.floating-whatsapp:focus-visible .floating-whatsapp__label {
  opacity: 1;
  transform: translateX(0);
}
.floating-whatsapp:hover .floating-whatsapp__icon,
.floating-whatsapp:focus-visible .floating-whatsapp__icon {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 26px 46px rgba(18, 211, 98, .30), 0 14px 28px rgba(16,24,40,.18);
}
@media (max-width: 640px) {
  .floating-whatsapp { display: none; }
}

/* Upload-ready hero/about blocks */
.header-wa-mobile {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  background: rgba(255,255,255,.04);
}
.header-wa-mobile svg { width: 20px; height: 20px; }

.hero-upload {
  position: relative;
  margin-top: 22px;
  border-radius: 24px;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04)),
    radial-gradient(circle at 18% 42%, rgba(88,140,255,.28), transparent 34%),
    linear-gradient(135deg, rgba(7,17,31,.84), rgba(12,31,60,.78));
  box-shadow: 0 22px 46px rgba(0,0,0,.18);
}
.hero-upload__blur {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.08), transparent 42%),
    radial-gradient(circle at 80% 28%, rgba(245,166,35,.18), rgba(245,166,35,0) 26%);
  backdrop-filter: blur(12px);
}
.hero-upload__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
}
.hero-upload__badge {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  color: #9ec0ff;
  background: rgba(14,39,78,.8);
  border: 1px solid rgba(255,255,255,.10);
}
.hero-upload__content strong { font-size: 22px; letter-spacing: -.03em; color: #fff; }
.hero-upload__content p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; max-width: 520px; }
.hero-upload__content small { color: rgba(255,255,255,.52); font-size: 12px; }

.about__visual--upload {
  position: relative;
  min-height: 520px;
  padding: 22px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #eef3f8, #e8edf5);
  border: 1px solid #dbe4ef;
}
.about__visual--upload::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(63,120,214,.08) 1px, transparent 1px),
    linear-gradient(rgba(63,120,214,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.about-upload-slot {
  position: relative;
  height: 100%;
  min-height: 474px;
}
.about-upload-slot__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(24px);
}
.about-upload-slot__glow--one { left: 12%; top: 20%; background: radial-gradient(circle, rgba(58,124,255,.20), rgba(58,124,255,0) 72%); }
.about-upload-slot__glow--two { right: 8%; bottom: 18%; background: radial-gradient(circle, rgba(245,166,35,.16), rgba(245,166,35,0) 72%); }
.about-upload-slot__surface {
  position: absolute;
  inset: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(255,255,255,.82));
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 22px 44px rgba(16,24,40,.10);
  backdrop-filter: blur(8px);
}
.about-upload-slot__tag {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.about-upload-slot__surface strong { font-size: 28px; letter-spacing: -.04em; color: var(--ink); }
.about-upload-slot__surface p { margin: 0; color: var(--muted); }
.about-upload-slot__surface ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
}
.about-upload-slot__surface li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid #dbe5f1;
}
.about-upload-slot__surface li span { font-size: 13px; color: var(--muted); }
.about-upload-slot__surface li strong { font-size: 13px; font-weight: 800; }

@media (max-width: 900px) {
  .hero-upload { min-height: 190px; }
  .hero-upload__content { min-height: 190px; }
  .about__visual--upload { min-height: 460px; }
  .about-upload-slot { min-height: 414px; }
}

@media (max-width: 640px) {
  .header-wa-mobile {
    display: inline-flex;
  }
  .menu-toggle {
    display: none !important;
  }
  .hero-media {
    display: none;
  }
  .hero__grid {
    gap: 24px;
  }
  .hero-upload {
    margin-top: 18px;
    min-height: 180px;
    border-radius: 20px;
  }
  .hero-upload__content {
    min-height: 180px;
    padding: 18px;
  }
  .hero-upload__content strong { font-size: 18px; }
  .hero-upload__content p { font-size: 13px; }
  .hero-upload__content small { font-size: 11px; }
  .about__visual--upload {
    min-height: 370px;
    padding: 14px;
  }
  .about-upload-slot { min-height: 340px; }
  .about-upload-slot__surface {
    inset: 16px;
    padding: 18px;
    border-radius: 22px;
  }
  .about-upload-slot__surface strong { font-size: 20px; }
  .about-upload-slot__surface li {
    display: grid;
    gap: 4px;
  }
}


/* Actual inserted photos */
.hero-upload {
  position: relative;
  margin: 22px 0 0;
  min-height: 238px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 48px rgba(0,0,0,.22);
}
.hero-upload__image {
  width: 100%;
  height: 100%;
  min-height: 238px;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}
.hero-upload__overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 6px;
  padding: 56px 22px 20px;
  margin: 0;
  background: linear-gradient(180deg, rgba(4,10,18,0), rgba(4,10,18,.76));
  color: #fff;
}
.hero-upload__badge {
  width: max-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: #d7e7ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.hero-upload__overlay strong { font-size: 22px; letter-spacing: -.03em; }
.hero-upload__overlay small { color: rgba(255,255,255,.72); font-size: 12px; }

.about__visual--image {
  position: relative;
  margin: 0;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #e0e6ee;
  background: linear-gradient(180deg, #f5f1ea, #f0ece5);
  box-shadow: 0 20px 42px rgba(16,24,40,.08);
}
.about__visual--image::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 84px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.42));
  pointer-events: none;
}
.about__visual-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  display: block;
}
@media (max-width: 900px) {
  .hero-upload,
  .hero-upload__image { min-height: 220px; }
  .about__visual--image,
  .about__visual-image { min-height: 450px; }
}
@media (max-width: 640px) {
  .hero-upload,
  .hero-upload__image { min-height: 178px; border-radius: 20px; }
  .hero-upload__overlay { padding: 44px 16px 16px; }
  .hero-upload__overlay strong { font-size: 18px; }
  .about__visual--image,
  .about__visual-image { min-height: 320px; border-radius: 22px; }
}

/* ===== FINAL HERO: full-width blurred background behind text + video ===== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(720px, 82vh, 920px);
  background: #06101d;
  overflow: hidden;
}
.hero__photo-bg {
  position: absolute;
  inset: -10px;
  z-index: -4;
  display: block;
  overflow: hidden;
}
.hero__photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.035);
  filter: blur(3.2px) saturate(.92) contrast(1.02) brightness(.76);
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 1;
  background:
    linear-gradient(90deg,
      rgba(3,10,19,.90) 0%,
      rgba(4,13,26,.82) 28%,
      rgba(4,15,31,.62) 55%,
      rgba(4,17,38,.68) 100%),
    linear-gradient(180deg,
      rgba(2,8,16,.30) 0%,
      rgba(4,12,23,.36) 48%,
      rgba(3,10,19,.82) 100%),
    radial-gradient(circle at 78% 30%, rgba(14,91,214,.28), transparent 34%);
}
.hero::before {
  z-index: -2;
  opacity: .72;
  background: radial-gradient(circle, rgba(18,101,232,.25), rgba(18,101,232,0) 68%);
}
.hero::after {
  z-index: -1;
  height: 180px;
  inset: auto 0 0;
  background: linear-gradient(180deg, transparent, rgba(4,11,20,.76));
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  min-height: clamp(720px, 82vh, 920px);
  padding-top: clamp(72px, 7vw, 105px);
  padding-bottom: clamp(72px, 8vw, 110px);
  align-items: center;
}
.hero__content {
  text-shadow: 0 2px 24px rgba(0,0,0,.20);
}
.hero h1 {
  text-shadow: 0 8px 34px rgba(0,0,0,.30);
}
.hero__lead {
  color: rgba(255,255,255,.82);
  text-shadow: 0 2px 14px rgba(0,0,0,.24);
}
.hero-media__frame {
  background: linear-gradient(180deg, rgba(9,28,55,.67), rgba(5,16,31,.75));
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 34px 80px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(14px) saturate(120%);
}
.hero-media__frame::before {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.22));
}
.hero-media__placeholder {
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}
.hero-media__badge {
  backdrop-filter: blur(12px);
}
.hero__quick {
  color: rgba(255,255,255,.82);
}

@media (max-width: 900px) {
  .hero,
  .hero__grid { min-height: auto; }
  .hero__photo-bg img {
    object-position: center center;
    filter: blur(2.6px) saturate(.94) contrast(1.03) brightness(.70);
  }
  .hero__backdrop {
    background:
      linear-gradient(180deg, rgba(3,9,18,.76) 0%, rgba(4,13,27,.64) 42%, rgba(3,9,18,.88) 100%),
      linear-gradient(90deg, rgba(3,9,18,.80), rgba(5,17,36,.55));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }
  .hero__photo-bg {
    inset: -8px;
  }
  .hero__photo-bg img {
    object-position: center 42%;
    transform: scale(1.045);
    filter: blur(2.1px) saturate(.92) contrast(1.02) brightness(.58);
  }
  .hero__backdrop {
    background:
      linear-gradient(180deg,
        rgba(3,9,18,.80) 0%,
        rgba(4,13,28,.64) 38%,
        rgba(3,10,20,.82) 72%,
        rgba(3,9,18,.94) 100%),
      radial-gradient(circle at 72% 30%, rgba(20,104,235,.22), transparent 40%);
  }
  .hero__grid {
    padding-top: 46px;
    padding-bottom: 82px;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero-media {
    display: none !important;
  }
  .hero h1 {
    text-shadow: 0 6px 24px rgba(0,0,0,.36);
  }
  .hero__lead {
    color: rgba(255,255,255,.86);
  }
}

/* V7 - Mobile hero video restored without changing desktop hero */
@media (max-width: 640px) {
  .hero-media {
    display: block !important;
    width: min(88vw, 330px);
    justify-self: center;
    margin: 30px auto 0;
  }
  .hero-media__frame {
    width: 100%;
    aspect-ratio: 464 / 832;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(8,27,53,.72), rgba(4,15,30,.80));
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 28px 58px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(14px) saturate(118%);
  }
  .hero-media__badge {
    left: 12px;
    right: 12px;
    bottom: 14px;
    padding: 10px 11px;
  }
  .hero-media__badge--service {
    left: auto;
    right: 12px;
    top: 16px;
    bottom: auto;
    width: auto;
  }
  .hero-media__badge--location {
    width: calc(100% - 24px);
  }
  .hero-media__placeholder {
    padding: 24px 20px 86px;
  }
  .hero-media__placeholder svg {
    width: 76px;
    height: 76px;
    margin-bottom: 14px;
  }
  .hero-media__placeholder strong {
    font-size: 16px;
  }
  .hero-media__placeholder span {
    font-size: 12px;
  }
  .hero-media__placeholder small {
    display: block;
    max-width: 230px;
    font-size: 10px;
    line-height: 1.45;
  }
}

/* V8 - Real hero video: aligned, autoplay-ready, low-overhead */
.hero-media__frame {
  isolation: isolate;
  background: #071425;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero-media__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  background: #071425;
  border-radius: inherit;
}
.hero-media__frame::before {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,12,24,.08) 0%, rgba(4,12,24,.03) 50%, rgba(4,12,24,.28) 100%);
}
.hero-media__route {
  display: none;
}
.hero-media__badge {
  z-index: 5;
}
@media (max-width: 640px) {
  .hero-media__video {
    object-position: center center;
  }
  .hero-media__frame {
    box-shadow: 0 24px 48px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
  }
}

/* V9 - Modern cinematic video card */
.hero-media {
  width: min(100%, 448px);
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.32));
}
.hero-media__frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(131,177,255,.24);
  background: rgba(5,16,32,.76);
  box-shadow:
    0 34px 86px rgba(0,0,0,.34),
    0 0 0 1px rgba(255,255,255,.025) inset,
    0 0 48px rgba(18,101,232,.12);
}
.hero-media__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), inset 0 -90px 100px rgba(1,7,16,.22);
}
.hero-media__video {
  transform: scale(1.055);
  object-position: 50% 57%;
  filter: saturate(.92) contrast(1.06) brightness(.92);
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}
.hero-media:hover .hero-media__video {
  transform: scale(1.075);
  filter: saturate(.98) contrast(1.07) brightness(.96);
}
.hero-media__video-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,12,25,.48) 0%, rgba(5,15,31,.08) 26%, rgba(4,12,25,.03) 58%, rgba(3,10,22,.62) 100%),
    linear-gradient(90deg, rgba(4,15,31,.10), transparent 55%, rgba(8,34,72,.12));
}
.hero-media__hud {
  position: absolute;
  z-index: 6;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  pointer-events: none;
}
.hero-media__hud--top {
  top: 18px;
  right: auto;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(5,17,34,.54);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}
.hero-media__hud--bottom {
  bottom: 18px;
  justify-content: space-between;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(4,16,34,.74), rgba(5,20,44,.50));
  backdrop-filter: blur(13px) saturate(120%);
  -webkit-backdrop-filter: blur(13px) saturate(120%);
}
.hero-media__hud > div {
  display: grid;
  line-height: 1.2;
}
.hero-media__hud strong {
  font-size: 12px;
  letter-spacing: .01em;
}
.hero-media__hud small {
  margin-top: 3px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
}
.hero-media__live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #26d77b;
  box-shadow: 0 0 0 5px rgba(38,215,123,.10), 0 0 18px rgba(38,215,123,.42);
}
.hero-media__hud-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #d9e9ff;
  background: rgba(45,112,222,.18);
  border: 1px solid rgba(116,168,255,.22);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
}
.hero-media__badge {
  z-index: 8;
  min-height: 58px;
  padding: 10px 13px;
  border-radius: 16px;
  color: #fff;
  background: rgba(5,17,35,.76);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 34px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
}
.hero-media__badge strong {
  color: #fff;
  font-size: 12px;
}
.hero-media__badge small {
  color: rgba(255,255,255,.58);
  font-size: 10px;
}
.hero-media__badge-icon {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #8db8ff;
  background: rgba(55,121,232,.15);
  border: 1px solid rgba(114,164,255,.18);
}
.hero-media__badge--service {
  top: 36px;
  right: -54px;
  left: auto;
  bottom: auto;
  min-width: 176px;
}
.hero-media__badge--location {
  left: -58px;
  right: auto;
  bottom: 68px;
  min-width: 190px;
}

@media (max-width: 1120px) {
  .hero-media__badge--service { right: -18px; }
  .hero-media__badge--location { left: -18px; }
}
@media (max-width: 900px) {
  .hero-media { width: min(100%, 420px); }
}
@media (max-width: 640px) {
  .hero-media {
    width: min(90vw, 340px);
    margin-top: 28px;
    filter: drop-shadow(0 24px 48px rgba(0,0,0,.26));
  }
  .hero-media__frame { border-radius: 24px; }
  .hero-media__video {
    transform: scale(1.065);
    object-position: 50% 58%;
  }
  .hero-media:hover .hero-media__video { transform: scale(1.065); }
  .hero-media__hud { left: 12px; right: 12px; }
  .hero-media__hud--top { top: 12px; padding: 8px 10px; }
  .hero-media__hud--bottom { bottom: 12px; padding: 10px 11px; }
  .hero-media__badge {
    min-height: 50px;
    padding: 8px 10px;
    border-radius: 14px;
  }
  .hero-media__badge--service {
    top: 68px;
    right: 12px;
    left: auto;
    min-width: 152px;
  }
  .hero-media__badge--location {
    left: 12px;
    right: 12px;
    bottom: 74px;
    min-width: 0;
    width: auto;
  }
}

/* ===== FINAL PUBLISH PERFORMANCE + A11Y PASS ===== */
/* Hero photos are pre-blurred/pre-darkened at build time: avoid an expensive
   full-screen CSS blur/filter on every frame while keeping the same look. */
.hero__photo-bg img {
  filter: none !important;
  transform: scale(1.02);
}

/* Slightly stronger secondary text contrast without changing visual hierarchy. */
.brand__text small { color: rgba(255,255,255,.72); }
.desktop-nav a { color: rgba(255,255,255,.82); }
.roadside__steps p { color: rgba(255,255,255,.74); }
.testimonial-card__meta small { color: rgba(255,255,255,.74); }
.site-footer { color: rgba(255,255,255,.76); }
.hero-media__hud small { color: rgba(255,255,255,.74); }
.hero-media__badge small { color: rgba(255,255,255,.72); }

/* Stable video composition from the first paint. */
.hero-media__frame {
  contain: layout paint;
}
.hero-media__hud--bottom {
  justify-content: flex-start;
}

/* Improve keyboard visibility on native FAQ summaries. */
.accordion summary:focus-visible {
  outline: 3px solid rgba(18,101,232,.45);
  outline-offset: -3px;
  border-radius: 12px;
}

/* Avoid costly continuous compositing on touch/mobile hardware. Reveal/counter
   entrance animations remain, but decorative floating/glow loops are static. */
@media (max-width: 900px) {
  .site-header {
    background: rgba(7,17,31,.985);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hero::before,
  .impact-counters__glow--left,
  .impact-counters__glow--center,
  .impact-counters__glow--right,
  .about__badge,
  .about__mini-card,
  .prep-card__icon,
  .process-list__icon {
    animation: none !important;
  }
}

@media (max-width: 640px) {
  .hero__photo-bg img {
    filter: none !important;
    transform: scale(1.025);
  }
  .hero-media {
    width: min(88vw, 340px);
    margin: 24px auto 0;
    filter: none;
  }
  .hero-media__frame {
    border-radius: 24px;
    background: #061222;
    box-shadow: 0 22px 46px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: none !important;
  }
  .hero-media__video {
    transform: scale(1.045);
    object-position: 50% 58%;
    transition: none;
    will-change: auto;
  }
  .hero-media:hover .hero-media__video {
    transform: scale(1.045);
    filter: saturate(.92) contrast(1.06) brightness(.92);
  }
  .hero-media__hud,
  .hero-media__badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hero-media__hud--top {
    top: 12px;
    left: 12px;
    right: auto;
    background: rgba(5,17,34,.90);
    animation: none !important;
  }
  .hero-media__badge--service {
    top: 68px;
    right: 12px;
    left: auto;
    bottom: auto;
    min-width: 152px;
    background: rgba(5,17,35,.92);
    animation: none !important;
  }
  .hero-media__badge--location {
    left: 12px;
    right: 12px;
    bottom: 82px;
    width: auto;
    min-width: 0;
    background: rgba(5,17,35,.92);
    animation: none !important;
  }
  .hero-media__hud--bottom {
    left: 12px;
    right: 12px;
    bottom: 14px;
    min-height: 54px;
    padding: 10px 12px;
    background: rgba(4,16,34,.92);
    animation: none !important;
  }
  .hero-media__live-dot {
    animation-duration: 2.4s;
  }
  .mobile-sticky {
    background: rgba(7,17,31,.99);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* WCAG contrast pass on the saturated blue CTA sections. */
.emergency-cta p,
.contact__content p {
  color: rgba(255,255,255,.94);
}


/* V12 brand logo — custom domain release */
.brand--logo {
  flex: 0 0 auto;
  max-width: min(245px, 23vw);
}
.brand__logo {
  display: block;
  width: 245px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 92, 255, .16));
}
.brand__logo--footer { width: 270px; }
@media (max-width: 640px) {
  .brand--logo { max-width: 170px; }
  .brand__logo { width: 170px; }
}
@media (max-width: 380px) {
  .brand--logo { max-width: 148px; }
  .brand__logo { width: 148px; }
}

/* V13 — reliable hero video playback + final brand/favicon release */
.hero-media__play-fallback {
  position: absolute;
  z-index: 12;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(145,184,255,.28);
  border-radius: 14px;
  color: #fff;
  background: rgba(4,15,31,.88);
  box-shadow: 0 16px 42px rgba(0,0,0,.35), 0 0 28px rgba(18,101,232,.14);
  cursor: pointer;
  font: inherit;
}
.hero-media__play-fallback[hidden] { display: none !important; }
.hero-media__play-fallback span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #1265e8;
  font-size: 11px;
}
.hero-media__play-fallback strong { font-size: 12px; }

/* The supplied horizontal logo keeps its natural ratio without changing header height. */
.brand__logo { aspect-ratio: 1200 / 312; }
