@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/sora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/sora-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
  --brand-navy: #06264c;
  --brand-navy-2: #0a3567;
  --brand-red: #e00016;
  --brand-red-2: #b90012;
  --brand-red-soft: #ffe3df;
  --ink: #071b34;
  --ink-2: #123151;
  --text: #1c2530;
  --muted: #647082;
  --subtle: #8993a3;
  --paper: #f7f8fa;
  --paper-2: #eef2f6;
  --surface: #ffffff;
  --surface-warm: #fbf9f6;
  --line: rgba(7, 27, 52, 0.14);
  --line-strong: rgba(7, 27, 52, 0.22);
  --green: #0c7a4d;
  --green-soft: #dff6ea;
  --blue-soft: #dce8f8;
  --blue-text: #c8d9ee;
  --footer-text: #9eb0ca;
  --shadow-1: 0 1px 2px rgba(7, 27, 52, 0.06), 0 18px 42px rgba(7, 27, 52, 0.08);
  --shadow-2: 0 2px 4px rgba(7, 27, 52, 0.08), 0 28px 64px rgba(7, 27, 52, 0.14);
  --shadow-red: 0 14px 30px rgba(224, 0, 22, 0.24);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1240px;
  --header-height: 78px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  background: var(--paper);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background:
    linear-gradient(180deg, rgba(6, 38, 76, 0.055), transparent 360px),
    linear-gradient(90deg, rgba(224, 0, 22, 0.026), transparent 42%),
    var(--paper);
  color: var(--text);
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(224, 0, 22, 0.32);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

p {
  margin: 0;
  text-wrap: pretty;
}

main {
  overflow: clip;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-1);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.16s ease;
}

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

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

.icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  width: 100%;
  max-width: 100vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: var(--header-height);
  padding: 8px 16px;
  background: rgba(247, 248, 250, 0.72);
  border-bottom: 1px solid rgba(7, 27, 52, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.68) inset,
    0 14px 34px rgba(7, 27, 52, 0.06);
  backdrop-filter: blur(24px) saturate(1.32);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.has-scrolled .site-header {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(7, 27, 52, 0.15);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 16px 38px rgba(7, 27, 52, 0.1);
}

.brand {
  --brand-blue: var(--brand-navy);
  --brand-red-lockup: #ee0015;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  min-width: 0;
  max-width: 100%;
  height: 62px;
  padding: 5px 10px 5px 3px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--brand-blue);
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.brand:hover,
.brand:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(7, 27, 52, 0.12);
  box-shadow: 0 10px 22px rgba(7, 27, 52, 0.08);
}

.brand__symbol {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.brand__mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__wordmark {
  display: grid;
  width: max-content;
  min-width: 0;
  justify-items: center;
  gap: 3px;
  line-height: 1;
}

.brand__wordmark-main {
  display: block;
  width: max-content;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.brand__wordmark-pro {
  color: var(--brand-red-lockup);
}

.brand__wordmark-fixer {
  color: var(--brand-blue);
}

.brand__divider {
  display: grid;
  grid-template-columns: 1fr 13px 1fr;
  align-items: center;
  justify-self: stretch;
  width: 100%;
  gap: 6px;
}

.brand__divider-line {
  height: 2px;
  background: var(--brand-red-lockup);
}

.brand__star {
  width: 13px;
  height: 13px;
  background: var(--brand-blue);
  clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 79% 91%, 50% 69%, 21% 91%, 32% 55%, 2% 34%, 39% 34%);
}

.brand__tagline {
  justify-self: stretch;
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 2.1px;
  text-align: center;
  white-space: nowrap;
  word-spacing: 2px;
}

.nav-toggle {
  justify-self: end;
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 24px rgba(7, 27, 52, 0.2);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

.nav-toggle:hover {
  background: var(--brand-navy);
  box-shadow: 0 14px 26px rgba(7, 27, 52, 0.24);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.22s var(--ease-out), opacity 0.16s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  left: 16px;
  right: 16px;
  top: calc(var(--header-height) + 10px);
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s var(--ease-out), visibility 0.18s ease;
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.main-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  transition: background-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(224, 0, 22, 0.07);
  color: var(--brand-red);
}

.main-nav a.is-active {
  background: #fde8eb;
  color: var(--brand-red-2);
}

.header-actions {
  display: none;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.16s ease;
}

.phone-link:hover,
.phone-link:focus-visible {
  color: var(--brand-red);
}

.btn {
  --btn-glow-x: 50%;
  --btn-glow-y: 50%;
  --btn-inner-glow: rgba(255, 255, 255, 0.24);
  --btn-ripple: rgba(255, 255, 255, 0.5);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at var(--btn-glow-x) var(--btn-glow-y),
      var(--btn-inner-glow) 0%,
      rgba(255, 255, 255, 0.13) 24%,
      transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.btn > svg,
.btn > span:not(.btn__ripple) {
  position: relative;
  z-index: 2;
}

.btn__ripple {
  position: absolute;
  left: var(--ripple-x);
  top: var(--ripple-y);
  z-index: 1;
  width: var(--ripple-size);
  height: var(--ripple-size);
  border-radius: 50%;
  background: var(--btn-ripple);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleOut 680ms cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

.btn--primary {
  --btn-inner-glow: rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, #f00418, var(--brand-red-2));
  color: #fff;
  box-shadow: var(--shadow-red);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(224, 0, 22, 0.3);
}

.btn--secondary {
  --btn-inner-glow: rgba(220, 232, 248, 0.26);
  --btn-ripple: rgba(220, 232, 248, 0.38);
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(220, 232, 248, 0.62);
  color: #f7fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.82);
}

.btn--light {
  --btn-inner-glow: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.64);
}

.btn--light:hover,
.btn--light:focus-visible {
  background: rgba(255, 255, 255, 0.13);
}

.btn--dark {
  --btn-inner-glow: rgba(255, 255, 255, 0.18);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 27, 52, 0.18);
}

.btn--small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 14px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: clamp(560px, 74vh, 760px);
  background: #06162c;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 22, 44, 0.96) 0%, rgba(6, 22, 44, 0.84) 34%, rgba(6, 22, 44, 0.48) 63%, rgba(6, 22, 44, 0.72) 100%),
    linear-gradient(180deg, rgba(6, 22, 44, 0.42), rgba(6, 22, 44, 0.16) 46%, rgba(6, 22, 44, 0.68)),
    radial-gradient(circle at 76% 36%, rgba(224, 0, 22, 0.1), transparent 32%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
}

.hero__inner {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: grid;
  align-items: center;
  min-height: inherit;
  padding: clamp(72px, 8vw, 118px) 0 clamp(64px, 8vw, 106px);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 730px;
  min-width: 0;
}

.hero__content h1 {
  max-width: 730px;
  color: #fff;
  font-size: clamp(2.4rem, 5.8vw, 4.35rem);
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero__content h1 span {
  color: var(--brand-red-soft);
}

.hero__content p {
  max-width: min(56ch, 100%);
  color: rgba(234, 242, 252, 0.9);
  font-size: clamp(1rem, 1vw + 0.88rem, 1.22rem);
  line-height: 1.62;
  overflow-wrap: break-word;
}

.hero__actions,
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.94) contrast(1.04) brightness(0.92);
}

.hero--map {
  min-height: clamp(560px, 72vh, 720px);
}

.hero--map::before {
  background:
    linear-gradient(90deg, rgba(6, 22, 44, 0.97) 0%, rgba(6, 22, 44, 0.9) 34%, rgba(6, 22, 44, 0.56) 62%, rgba(6, 22, 44, 0.78) 100%),
    linear-gradient(180deg, rgba(6, 22, 44, 0.36), rgba(6, 22, 44, 0.12) 48%, rgba(6, 22, 44, 0.68));
}

.hero__map {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero__map .profixer-map {
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  filter: saturate(0.92) contrast(1.02);
}

.hero__map .profixer-map[data-map-theme="hero"] {
  background: #06162c;
  filter: saturate(1.08) contrast(1.05);
}

.hero__map .profixer-map__status {
  background: #071b34;
  color: rgba(234, 242, 252, 0.88);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 26px;
  padding: 4px 0;
  color: rgba(255, 231, 228, 0.96);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before {
  content: none;
}

.eyebrow .icon {
  width: 22px;
  height: 22px;
  color: currentColor;
  filter: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  color: rgba(244, 249, 255, 0.92);
}

.trust-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 10px 6px 8px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
}

.trust-row .icon {
  width: 16px;
  height: 16px;
  padding: 3px;
  color: #fff;
  --icon-fill: transparent;
  --icon-accent: #fff;
  background: var(--brand-red);
  border-radius: 50%;
}

.band {
  position: relative;
  padding: clamp(56px, 8vw, 92px) 0;
}

.band--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.4)),
    var(--paper);
}

.band--muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent),
    var(--paper-2);
  border-block: 1px solid rgba(7, 27, 52, 0.08);
}

.band--brands {
  padding: 48px 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-intro {
  width: min(100% - 32px, 780px);
  margin: 0 auto 34px;
}

.section-intro--left {
  margin-inline: 0 auto;
}

.section-intro--center {
  text-align: center;
}

.section-intro h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 700;
}

.section-intro p {
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(1rem, 0.4vw + 0.96rem, 1.12rem);
  line-height: 1.65;
}

.split-section .section-intro {
  width: 100%;
  margin-bottom: 20px;
}

.split-section .card-grid {
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
}

.card-grid {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: grid;
  gap: 16px;
}

.container > .card-grid {
  width: 100%;
}

.card-grid--services .info-card,
.card-grid--four .info-card {
  grid-template-columns: 76px minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "visual title"
    "text text"
    "action action";
  gap: 14px 16px;
}

.card-grid--services .info-card__visual,
.card-grid--four .info-card__visual {
  justify-self: start;
  margin: 0;
}

.card-grid--regional {
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
}

.info-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "visual title"
    "text text"
    "action action";
  gap: 14px 16px;
  min-height: 220px;
  align-items: start;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0)),
    var(--surface);
  border: 1px solid rgba(7, 27, 52, 0.13);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  color: var(--ink);
  text-decoration: none;
}

.info-card::before {
  content: "";
  position: absolute;
  inset: auto -34px -44px auto;
  z-index: -1;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(224, 0, 22, 0.09), transparent 66%);
  pointer-events: none;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-red), rgba(6, 38, 76, 0.55));
  opacity: 0.86;
  pointer-events: none;
}

.info-card--interactive {
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.info-card--interactive:hover,
.info-card--interactive:focus-visible {
  border-color: rgba(224, 0, 22, 0.26);
  box-shadow: var(--shadow-2);
}

.info-card--static {
  cursor: default;
}

.info-card h3 {
  grid-area: title;
  align-self: center;
  max-width: none;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.18;
}

.info-card p {
  grid-area: text;
  max-width: 37ch;
  color: var(--muted);
  line-height: 1.64;
  text-wrap: wrap;
  overflow-wrap: break-word;
}

.info-card h3,
.info-card p,
.info-card .text-link {
  position: relative;
  z-index: 1;
}

.info-card__visual {
  grid-area: visual;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: start;
  align-self: center;
  width: 72px;
  height: 72px;
  margin: 0;
  overflow: visible;
  pointer-events: none;
}

.info-card__visual::before,
.info-card__visual::after,
.info-card__visual span,
.info-card__visual span::before,
.info-card__visual span::after {
  content: none;
  display: none;
}

.info-card__visual .icon {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  overflow: visible;
  filter: drop-shadow(0 14px 24px rgba(7, 27, 52, 0.13));
}

.info-card--callout {
  min-height: auto;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(224, 0, 22, 0.08), transparent 42%),
    var(--surface);
}

.info-card--callout h3 {
  max-width: none;
  color: var(--ink);
}

.info-card--callout p {
  max-width: none;
  color: var(--muted);
}

.text-link {
  grid-area: action;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-red-2);
  font-weight: 750;
  text-decoration: none;
  transition: color 0.16s ease;
}

.text-link::after {
  content: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.split-section {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-1);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(7, 27, 52, 0.38));
  pointer-events: none;
}

.image-card img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
}

.image-card--about-repair img {
  object-position: 72% center;
}

.floating-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 28px);
  min-height: 44px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 27, 52, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.map-panel {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: grid;
  gap: 22px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.map-panel.map-panel--map-only {
  grid-template-columns: 1fr;
}

.map-panel__visual {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(7, 27, 52, 0.08);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #f7fbff, #edf5ef);
}

.map-panel__visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.map-panel__visual img[src$=".svg"] {
  object-fit: contain;
  padding: clamp(14px, 3vw, 28px);
}

.map-panel__visual--interactive {
  min-height: 390px;
  padding: 0;
  background: #f2f7f6;
}

.profixer-map {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: inherit;
  background: linear-gradient(135deg, #f2f7f6, #f9fbfc);
}

.profixer-map__canvas {
  position: absolute;
  inset: 0;
}

.profixer-map__status {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(238, 246, 244, 0.96), rgba(247, 249, 251, 0.92));
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.profixer-map.is-ready .profixer-map__status {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.profixer-map.is-error .profixer-map__status {
  color: #8b1b14;
}

.profixer-map-marker {
  pointer-events: none;
}

.profixer-map-marker span {
  display: block;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 38, 76, 0.16);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(7, 27, 52, 0.16);
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}

.profixer-map-address-marker {
  display: grid;
  justify-items: center;
  gap: 6px;
  pointer-events: none;
  transform: translateY(4px);
}

.profixer-map-address-marker__pin {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  background: #d50013;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 10px 22px rgba(7, 27, 52, 0.24);
  transform: rotate(-45deg);
}

.profixer-map-address-marker__pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  background: #fff;
  border-radius: 50%;
}

.profixer-map-address-marker.is-served .profixer-map-address-marker__pin {
  background: #0f9d62;
}

.profixer-map-address-marker__label {
  display: block;
  max-width: min(240px, calc(100vw - 56px));
  overflow: hidden;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(6, 38, 76, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(7, 27, 52, 0.18);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profixer-map-popup {
  --profixer-map-popup-bg: rgba(255, 255, 255, 0.97);
  z-index: 4;
}

.profixer-map-popup .maplibregl-popup-content {
  overflow: visible;
  min-width: min(230px, calc(100vw - 48px));
  padding: 12px 14px;
  background: var(--profixer-map-popup-bg);
  border: 1px solid rgba(6, 38, 76, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(7, 27, 52, 0.18);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.profixer-map-popup .maplibregl-popup-tip {
  border-color: transparent;
}

.profixer-map-popup.maplibregl-popup-anchor-bottom .maplibregl-popup-tip,
.profixer-map-popup.maplibregl-popup-anchor-bottom-left .maplibregl-popup-tip,
.profixer-map-popup.maplibregl-popup-anchor-bottom-right .maplibregl-popup-tip {
  border-top-color: var(--profixer-map-popup-bg);
}

.profixer-map-popup.maplibregl-popup-anchor-top .maplibregl-popup-tip,
.profixer-map-popup.maplibregl-popup-anchor-top-left .maplibregl-popup-tip,
.profixer-map-popup.maplibregl-popup-anchor-top-right .maplibregl-popup-tip {
  border-bottom-color: var(--profixer-map-popup-bg);
}

.profixer-map-popup.maplibregl-popup-anchor-left .maplibregl-popup-tip {
  border-right-color: var(--profixer-map-popup-bg);
}

.profixer-map-popup.maplibregl-popup-anchor-right .maplibregl-popup-tip {
  border-left-color: var(--profixer-map-popup-bg);
}

.profixer-map-popup__area {
  display: grid;
  gap: 6px;
}

.profixer-map-popup__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.profixer-map-popup__check {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  background: #0f9d62;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(15, 157, 98, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.profixer-map-popup__title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.28;
}

.profixer-map-popup__meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.profixer-map .maplibregl-canvas {
  outline: 0;
}

.profixer-map .maplibregl-ctrl-top-right {
  top: 10px;
  right: 10px;
}

.profixer-map .maplibregl-ctrl-top-right .maplibregl-ctrl {
  margin: 0;
}

.profixer-map .maplibregl-ctrl-group {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 38, 76, 0.12);
  border-radius: 7px;
  box-shadow: 0 10px 24px rgba(7, 27, 52, 0.14);
  backdrop-filter: blur(10px);
}

.profixer-map .maplibregl-ctrl-group:not(:empty) {
  box-shadow: 0 10px 24px rgba(7, 27, 52, 0.14);
}

.profixer-map .maplibregl-ctrl-group button {
  width: 34px;
  height: 34px;
}

.profixer-map .maplibregl-ctrl-bottom-right,
.profixer-map .maplibregl-ctrl-attrib {
  display: none !important;
}

.profixer-map--static {
  pointer-events: none;
}

.map-panel__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  padding: 6px;
}

.map-panel__content h3 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 700;
}

.map-panel__content p,
.check-list {
  color: var(--muted);
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.check-list .icon {
  margin-top: 0.28em;
  color: var(--brand-red);
}

.brand-strip {
  display: grid;
  gap: 26px;
  align-items: center;
}

.brand-strip__intro {
  max-width: 62ch;
}

.brand-strip h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 700;
}

.brand-strip p {
  margin-top: 8px;
  color: var(--muted);
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  width: 100%;
  padding-block: 6px;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.brand-marquee__row {
  overflow: hidden;
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  animation: brandMarquee 108s linear infinite;
}

.brand-marquee__row--reverse .brand-marquee__track {
  animation-direction: reverse;
}

.brand-marquee__set {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(34px, 4vw, 70px);
  padding-right: clamp(34px, 4vw, 70px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  height: 56px;
}

.brand-logo img {
  width: auto;
  height: auto;
  max-width: 260px;
  max-height: 42px;
  object-fit: contain;
  display: block;
}

.brand-logo--long img {
  max-width: 230px;
}

.brand-logo--wide img {
  max-width: 250px;
  max-height: 34px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row.pill-row--left {
  justify-content: flex-start;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 1px 1px rgba(7, 27, 52, 0.04);
  transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease;
}

.pill:hover {
  border-color: rgba(224, 0, 22, 0.32);
  background: #fff;
  color: var(--brand-red-2);
}

.service-detail {
  align-items: start;
}

.service-detail .simple-page__body {
  width: 100%;
  margin: 0;
}

.city-index {
  display: grid;
  gap: 16px;
}

.city-index__group {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0)),
    var(--surface);
  border: 1px solid rgba(7, 27, 52, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.city-index__group h3 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
}

.city-index__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-index__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.city-index__links .icon,
.pill--city .icon {
  width: 14px;
  height: 14px;
  color: var(--brand-red-2);
  stroke-width: 2.4px;
}

.pill--city {
  gap: 7px;
}

.city-index__links a:hover,
.city-index__links a:focus-visible {
  background: #fff;
  border-color: rgba(224, 0, 22, 0.28);
  color: var(--brand-red-2);
}

.region-detail-grid {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.city-overview-grid,
.county-detail {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.city-overview-grid {
  margin-top: 18px;
  align-items: stretch;
}

.region-copy-card,
.local-copy-card,
.county-detail__copy,
.county-detail__towns {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.28)),
    var(--surface);
  border: 1px solid rgba(7, 27, 52, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.local-copy-card {
  align-content: start;
}

.region-copy-card h2,
.local-copy-card h2,
.county-detail__copy h2,
.county-detail__towns h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 700;
}

.region-copy-card p,
.local-copy-card p,
.county-detail__copy p,
.county-detail__towns p {
  color: var(--muted);
  line-height: 1.68;
}

.county-detail__towns {
  gap: 18px;
}

.county-town-list {
  gap: 8px;
}

.county-town-list .pill {
  min-height: 32px;
  padding: 6px 11px;
  font-size: 13px;
}

.city-address-panel {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.city-service-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.city-service-cloud--standalone {
  width: min(100% - 32px, var(--container));
  margin: 18px auto 0;
  padding: clamp(18px, 2.4vw, 24px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.28)),
    var(--surface);
  border: 1px solid rgba(7, 27, 52, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.city-service-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.city-service-cloud a:hover,
.city-service-cloud a:focus-visible {
  background: #fff;
  border-color: rgba(224, 0, 22, 0.28);
  color: var(--brand-red-2);
}

.local-note-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.local-note-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.local-note-list .icon {
  margin-top: 0.22em;
  color: var(--brand-red-2);
}

.county-directory {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  columns: 2 520px;
  column-gap: 16px;
}

.county-directory__card {
  display: grid;
  align-content: start;
  gap: 18px;
  break-inside: avoid;
  margin: 0 0 16px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0)),
    var(--surface);
  border: 1px solid rgba(7, 27, 52, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.county-directory__heading {
  margin: 0;
}

.county-directory__heading a {
  display: inline-flex;
  color: var(--ink);
  font-size: clamp(1.25rem, 1vw + 1rem, 1.7rem);
  font-weight: 750;
  letter-spacing: 0;
  text-decoration: none;
}

.county-directory__heading a:hover,
.county-directory__heading a:focus-visible {
  color: var(--brand-red-2);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.county-directory__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.county-directory__cities a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.county-directory__cities .icon {
  width: 14px;
  height: 14px;
  color: var(--brand-red-2);
  stroke-width: 2.4px;
}

.county-directory__cities a:hover,
.county-directory__cities a:focus-visible {
  background: #fff;
  border-color: rgba(224, 0, 22, 0.28);
  color: var(--brand-red-2);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 88px) 0;
  background:
    linear-gradient(135deg, rgba(224, 0, 22, 0.16), transparent 44%),
    linear-gradient(180deg, #071b34, #051326);
  color: #fff;
}

.cta::before {
  content: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.cta h2 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-weight: 700;
}

.cta p {
  max-width: 68ch;
  color: var(--blue-text);
  font-size: 1.08rem;
}

.form-card {
  width: min(100% - 32px, 880px);
  margin-inline: auto;
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 30px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.form-card h2 {
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(7, 27, 52, 0.22);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

select {
  color: var(--text);
  background-color: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(78, 91, 108, 0.44);
  opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(224, 0, 22, 0.18);
  outline-offset: 0;
  border-color: rgba(224, 0, 22, 0.62);
  box-shadow: 0 0 0 1px rgba(224, 0, 22, 0.18), 0 12px 24px rgba(7, 27, 52, 0.08);
}

.hp-field {
  display: none;
}

.form-alert {
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.form-alert--success {
  background: #e8f5ed;
  border-color: rgba(17, 92, 48, 0.16);
  color: #115c30;
}

.form-alert--error {
  background: #fff0ed;
  border-color: rgba(155, 28, 18, 0.16);
  color: #9b1c12;
}

.form-alert--warning {
  background: #fff4dd;
  border-color: rgba(109, 67, 0, 0.16);
  color: #6d4300;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field--wide small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.autocomplete-field {
  position: relative;
  display: block;
}

.autocomplete-field input {
  padding-right: 46px;
}

.autocomplete-field::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  z-index: 3;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 2px solid rgba(7, 27, 52, 0.14);
  border-top-color: var(--brand-red);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.autocomplete-field.is-loading::after {
  opacity: 1;
  transform: scale(1);
  animation: autocompleteSpin 0.72s linear infinite;
}

.autocomplete-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 90000;
  overflow: auto;
  max-height: 280px;
  padding: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(7, 27, 52, 0.14);
  border-radius: var(--radius);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.74) inset,
    var(--shadow-2);
  backdrop-filter: blur(18px) saturate(1.24);
}

.autocomplete-list--above {
  top: auto;
  bottom: calc(100% + 6px);
}

.autocomplete-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 10px 11px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.autocomplete-item:nth-child(even) {
  background: rgba(220, 232, 248, 0.28);
}

.autocomplete-item__icon {
  width: 20px;
  height: 20px;
  color: var(--brand-red);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.autocomplete-item span {
  min-width: 0;
}

.autocomplete-item:hover,
.autocomplete-item:focus-visible {
  outline: 0;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(224, 0, 22, 0.18);
  color: var(--brand-red-2);
}

.autocomplete-item--message,
.autocomplete-item--message:hover,
.autocomplete-item--message:focus-visible {
  cursor: default;
  background: transparent;
  color: var(--muted);
}

.address-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-sm);
}

.address-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.address-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.address-card p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.text-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 7px 11px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.text-button:hover,
.text-button:focus-visible {
  border-color: rgba(224, 0, 22, 0.42);
  color: var(--brand-red-2);
  box-shadow: 0 8px 18px rgba(7, 27, 52, 0.08);
}

.coverage-result {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.coverage-result span {
  color: inherit;
  opacity: 0.84;
}

.coverage-result.is-served {
  background: #e8f5ed;
  color: #115c30;
}

.coverage-result.is-review {
  background: #fff4dd;
  color: #6d4300;
}

.coverage-result.is-outside {
  background: #fff0ed;
  color: #8b1b14;
}

.coverage-result.is-loading {
  background: #f4f8fd;
  color: var(--ink);
}

.coverage-result.is-error {
  background: #fff0ed;
  color: #8b1b14;
}

.coverage-result .text-link {
  width: fit-content;
  margin-top: 4px;
  color: currentColor;
}

.coverage-result__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 4px;
}

.address-check {
  width: min(100%, 760px);
  margin-inline: auto;
  display: grid;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
}

.address-check__field {
  gap: 0;
}

.address-check .autocomplete-field {
  border-radius: var(--radius);
}

.address-check__floating-label {
  position: absolute;
  left: 22px;
  top: 50%;
  z-index: 2;
  max-width: calc(100% - 44px);
  color: #7f8998;
  font-size: 18px;
  font-weight: 750;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
  transform-origin: left top;
  transition: top 0.16s ease, color 0.16s ease, font-size 0.16s ease, transform 0.16s ease;
}

.address-check input {
  width: 100%;
  min-height: 64px;
  padding: 24px 48px 10px 22px;
  border-color: rgba(7, 27, 52, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(7, 27, 52, 0.1);
  font-size: 18px;
  font-weight: 650;
  text-align: left;
}

.address-check input::placeholder {
  color: transparent;
}

.address-check .autocomplete-field.is-active .address-check__floating-label,
.address-check .autocomplete-field:focus-within .address-check__floating-label,
.address-check input:not(:placeholder-shown) + .address-check__floating-label {
  top: 12px;
  color: var(--brand-red-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: none;
}

.address-check .autocomplete-field.is-active input,
.address-check input:focus {
  border-color: rgba(185, 0, 18, 0.34);
  box-shadow:
    0 0 0 4px rgba(224, 0, 22, 0.08),
    0 22px 52px rgba(7, 27, 52, 0.12);
}

.address-check small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.coverage-check-inline {
  margin-bottom: 24px;
}

.coverage-check-inline--compact {
  width: min(100%, 920px);
  margin: 24px auto 30px;
}

.service-area-intro .inline-link {
  color: var(--brand-red-2);
  font-weight: 750;
  text-decoration: none;
}

.service-area-intro .inline-link:hover,
.service-area-intro .inline-link:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.swal2-popup {
  overflow-y: auto;
  max-height: calc(100vh - 24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.swal2-container {
  z-index: 100000;
  padding: 12px;
}

.swal2-container.swal2-backdrop-show {
  background: rgba(7, 27, 52, 0.48);
  backdrop-filter: blur(2px);
}

.swal2-title {
  color: var(--ink);
  letter-spacing: 0;
}

.swal2-html-container {
  color: var(--muted);
  overflow: visible;
}

.swal2-styled.swal2-confirm {
  background: linear-gradient(180deg, #f00418, var(--brand-red-2)) !important;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-red);
}

.swal2-styled.swal2-cancel {
  background: var(--ink) !important;
  border-radius: var(--radius-sm);
}

.swal-address-popup {
  width: min(560px, calc(100% - 24px));
}

.address-dialog {
  display: grid;
  gap: 12px;
  margin-top: 6px;
  text-align: left;
}

.address-dialog p {
  color: var(--muted);
  font-size: 14px;
}

.address-dialog__selected {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.address-dialog__selected span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.address-dialog__selected strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.address-dialog label {
  gap: 5px;
  font-size: 13px;
}

.address-dialog input {
  min-height: 42px;
  font-size: 14px;
}

.recaptcha-host {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10000;
}

.recaptcha-test-dialog {
  display: grid;
  justify-content: center;
  min-height: 84px;
  padding-top: 6px;
}

.grecaptcha-badge {
  z-index: 10001;
}

.service-area-card {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  overflow: hidden;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  display: block;
}

.service-area-card .map-panel__visual--interactive {
  min-height: clamp(520px, 43vw, 660px);
  height: 100%;
  border: 0;
  border-radius: 0;
}

.service-area-card__zones {
  position: absolute;
  left: clamp(18px, 2.4vw, 30px);
  top: clamp(18px, 2.4vw, 30px);
  z-index: 3;
  width: min(470px, calc(100% - 36px));
  display: grid;
  gap: 0;
  align-content: start;
  padding: clamp(18px, 2.2vw, 26px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow:
    0 24px 70px rgba(7, 27, 52, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: var(--ink);
  transform: none;
  backdrop-filter: blur(12px) saturate(1.16);
  -webkit-backdrop-filter: blur(12px) saturate(1.16);
}

.service-area-card__zones .county-chip-list {
  gap: 7px 8px;
}

.service-area-card__zones .county-chip {
  min-height: 30px;
  padding: 5px 9px;
  font-size: 11px;
}

.service-area-card__region-copy {
  position: absolute;
  left: clamp(18px, 2.4vw, 30px);
  top: clamp(18px, 2.4vw, 30px);
  z-index: 3;
  width: min(337px, calc(100% - 36px));
  display: grid;
  gap: 9px;
  align-content: start;
  padding: clamp(16px, 1.7vw, 20px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow:
    0 24px 70px rgba(7, 27, 52, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: var(--ink);
  backdrop-filter: blur(12px) saturate(1.16);
  -webkit-backdrop-filter: blur(12px) saturate(1.16);
}

.service-area-card__region-copy h3 {
  color: var(--ink);
  font-size: clamp(1.08rem, 1vw + 0.9rem, 1.32rem);
  font-weight: 750;
  line-height: 1.14;
}

.service-area-card__region-copy p {
  color: var(--ink-2);
  font-size: 0.8rem;
  line-height: 1.48;
  overflow-wrap: break-word;
}

.county-map-switcher {
  width: min(100% - 32px, var(--container));
  margin: -6px auto 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.county-map-switcher .county-chip {
  background: rgba(255, 255, 255, 0.74);
}

.county-map-switcher .county-chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.service-address-panel {
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(7, 27, 52, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.service-detail--expanded {
  align-items: start;
}

.service-detail__copy {
  align-content: start;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 6px;
}

.keyword-cloud span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 27, 52, 0.1);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(7, 27, 52, 0.045);
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-list__group {
  padding: clamp(18px, 2.6vw, 24px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34)),
    var(--surface);
  border: 1px solid rgba(7, 27, 52, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
}

.problem-list__group h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.problem-list__group ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list__group li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.problem-list__group .icon {
  margin-top: 0.2em;
  color: var(--brand-red-2);
}

.zone {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(7, 27, 52, 0.12);
}

.zone:first-child {
  padding-top: 0;
}

.zone:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.zone::before {
  content: none;
}

.zone h3 {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.zone p,
.zone small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.52;
}

.zone small {
  display: block;
  margin-top: 6px;
  font-weight: 750;
  text-transform: uppercase;
}

.county-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.county-chip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  border: 1px solid rgba(7, 27, 52, 0.12);
  border-radius: 999px;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.county-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(224, 0, 22, 0.08), transparent 64%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.county-chip span {
  position: relative;
  z-index: 1;
}

.county-chip:hover::before,
.county-chip:focus-visible::before {
  opacity: 1;
}

.county-chip:hover,
.county-chip:focus-visible {
  background: #fff;
  border-color: rgba(224, 0, 22, 0.3);
  color: var(--brand-red-2);
}

.simple-page {
  padding: clamp(56px, 8vw, 84px) 0;
}

.simple-page__body {
  width: min(100% - 32px, 900px);
  margin-inline: auto;
  display: grid;
  gap: 20px;
  color: var(--muted);
}

.split-section > .simple-page__body {
  width: 100%;
}

.simple-page__body h1 {
  color: var(--ink);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
}

.simple-page__body h2 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 700;
}

.simple-page__body a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.simple-page__body .pill,
.simple-page__body .pill span,
.simple-page__body .text-link,
.simple-page__body .btn {
  text-decoration: none;
}

.site-footer {
  background:
    linear-gradient(180deg, #071b34, #051326);
  color: #fff;
  border-top: 4px solid var(--brand-red);
}

.site-footer__grid {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: grid;
  gap: 30px;
  padding: 56px 0;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer h2 {
  color: var(--brand-red-soft);
  font-size: 1.45rem;
  font-weight: 700;
}

.site-footer h3 {
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  color: var(--footer-text);
}

.site-footer a + a {
  margin-top: 9px;
}

.site-footer a {
  transition: color 0.16s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-phone {
  margin-top: 14px;
  color: var(--brand-red-soft) !important;
  font-size: 1.22rem;
  font-weight: 750;
}

.site-footer__bar {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: 22px 0;
  border-top: 1px solid rgba(158, 176, 202, 0.24);
  color: var(--footer-text);
  font-size: 14px;
}

@keyframes rippleOut {
  0% {
    opacity: 0.58;
    transform: translate(-50%, -50%) scale(0);
  }
  48% {
    opacity: 0.32;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes autocompleteSpin {
  to {
    transform: scale(1) rotate(360deg);
  }
}

@media (min-width: 620px) {
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 24px;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    grid-column: auto;
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .main-nav a {
    min-height: 42px;
    padding: 8px 11px;
  }

  .main-nav a.is-active {
    background: #fde8eb;
    box-shadow: none;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

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

  .card-grid--regional {
    grid-template-columns: repeat(2, minmax(0, 420px));
  }

  .card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split-section,
  .map-panel {
    grid-template-columns: minmax(340px, 0.46fr) minmax(0, 1fr);
  }

  .map-panel__visual--interactive {
    min-height: 430px;
  }

  .service-area-card .map-panel__visual--interactive {
    min-height: clamp(520px, 43vw, 660px);
  }

  .brand-strip {
    grid-template-columns: 360px 1fr;
  }

  .city-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: start;
  }

  .city-overview-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  }

  .pill-row {
    justify-content: flex-end;
  }

  .cta__inner {
    align-items: center;
    text-align: center;
  }

  .cta__actions {
    justify-content: center;
  }

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

@media (min-width: 860px) and (max-width: 1080px) {
  .brand__wordmark {
    display: none;
  }
}

@media (min-width: 1120px) {
  .site-header {
    padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  }

  .card-grid--services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  .service-area-card .map-panel__visual--interactive {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .service-area-card {
    display: grid;
    gap: 0;
  }

  .service-area-card .map-panel__visual--interactive {
    order: 1;
    min-height: 400px;
    border-bottom: 1px solid var(--line);
  }

  .service-area-card__zones,
  .service-area-card__region-copy {
    position: relative;
    left: auto;
    top: auto;
    order: 2;
    width: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .service-area-card__region-copy {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
      var(--surface);
  }
}

@media (max-width: 859px) {
  .main-nav {
    left: 0;
    right: auto;
    width: calc(100vw - 32px);
  }

  .county-directory {
    columns: 1;
  }
}

@media (max-width: 720px) {
  .card-grid--regional {
    grid-template-columns: minmax(0, min(100%, 360px));
    justify-content: center;
  }

  .hero__content h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .hero {
    min-height: 640px;
  }

  .trust-row {
    width: fit-content;
  }

  .trust-row span {
    flex: 0 0 auto;
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 72px;
  }

  .container,
  .card-grid,
  .split-section,
  .map-panel,
  .service-area-card,
  .form-card,
  .simple-page__body,
  .section-intro,
  .site-footer__grid,
  .site-footer__bar,
  .hero__inner {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand {
    height: 58px;
    gap: 8px;
    padding-right: 5px;
  }

  .nav-toggle {
    position: static;
    justify-self: end;
    left: auto;
    right: auto;
    top: auto;
    z-index: auto;
    transform: none;
  }

  .brand__symbol {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand__wordmark-main {
    font-size: 23px;
  }

  .brand__tagline {
    font-size: 8px;
    letter-spacing: 1.8px;
  }

  .main-nav {
    left: 12px;
    right: auto;
    width: calc(100vw - 24px);
  }

  .hero__inner {
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .hero__content {
    gap: 16px;
  }

  .hero__content h1 {
    font-size: 1.95rem;
    line-height: 1.08;
    text-wrap: wrap;
  }

  .hero__content p {
    font-size: 1rem;
    max-width: 32ch;
  }

  .section-intro h2 {
    font-size: 1.56rem;
    line-height: 1.12;
    text-wrap: wrap;
  }

  .section-intro p {
    max-width: min(24ch, 100%);
    margin-inline: auto;
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .btn {
    width: 100%;
  }

  .hero__actions,
  .cta__actions {
    width: 100%;
  }

  .trust-row span {
    min-height: 22px;
  }

  .trust-row {
    display: flex;
  }

  .info-card,
  .map-panel,
  .form-card {
    padding: 18px;
  }

  .info-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px 12px;
    min-height: 220px;
  }

  .info-card p {
    max-width: min(24ch, 100%);
  }

  .info-card__visual {
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .info-card__visual .icon {
    width: 58px;
    height: 58px;
  }

  .service-area-card {
    padding: 0;
  }

  .service-area-card__region-copy {
    padding: 18px;
    gap: 10px;
  }

  .service-area-card__region-copy h3 {
    font-size: 1.18rem;
    line-height: 1.15;
  }

  .service-area-card__region-copy p {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .brand-marquee {
    gap: 10px;
  }

  .brand-marquee__set {
    gap: 28px;
    padding-right: 28px;
  }

  .brand-logo {
    width: auto;
    height: 40px;
  }

  .brand-logo img {
    height: auto;
    max-width: 210px;
    max-height: 30px;
  }

  .brand-logo--long img {
    max-width: 190px;
  }

  .brand-logo--wide img {
    max-width: 210px;
    max-height: 26px;
  }

  .service-area-card .map-panel__visual--interactive,
  .map-panel__visual--interactive {
    min-height: 350px;
  }

  .check-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    overflow-wrap: break-word;
  }

  .check-list {
    max-width: min(27ch, 100%);
  }

  .floating-badge {
    left: 14px;
    right: 14px;
    justify-content: center;
  }

  .cta h2 {
    max-width: 100%;
    font-size: 1.72rem;
    line-height: 1.12;
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .cta p {
    max-width: min(27ch, 100%);
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .site-footer__grid {
    padding: 44px 0;
  }
}

@media (max-width: 340px) {
  .brand__wordmark {
    display: none;
  }

  .brand {
    padding-right: 3px;
  }

}

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

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