:root {
  --red: #df0808;
  --red-dark: #b80606;
  --navy: #062a63;
  --navy-dark: #011d49;
  --ink: #071936;
  --text: #263550;
  --muted: #667189;
  --line: #e4e8ef;
  --soft: #f5f7fb;
  --white: #ffffff;
  --gold: #f3a61d;
  --shadow: 0 18px 45px rgba(7, 25, 54, 0.12);
  --max: 1536px;
  --topbar-height: 48px;
  --nav-height: 104px;
  --trust-height: clamp(148px, 16.5vh, 164px);
  --fold-bottom-safe-space: clamp(32px, 4vh, 52px);
  --hero-fit-height: calc(100vh - var(--topbar-height) - var(--nav-height) - var(--trust-height) - var(--fold-bottom-safe-space));
}

@supports (height: 100svh) {
  :root {
    --hero-fit-height: calc(100svh - var(--topbar-height) - var(--nav-height) - var(--trust-height) - var(--fold-bottom-safe-space));
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.cookie-modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  background: currentColor;
  vertical-align: -0.16em;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 25, 54, 0.08);
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.93rem;
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--topbar-height);
  padding: 0 56px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar-link,
.topbar-claim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-claim {
  margin-left: auto;
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--nav-height);
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand-mark img {
  width: 252px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--navy-dark);
  font-weight: 750;
}

.nav-link {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.cta-nav {
  min-height: 54px;
  padding: 0 24px;
  color: var(--white);
  background: var(--navy);
  border-radius: 4px;
}

.cta-nav::after {
  display: none;
}

.cta-nav:hover,
.cta-nav.active {
  background: var(--red);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle .icon {
  width: 0.8em;
  height: 0.8em;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: -20px;
  width: 310px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
}

.dropdown-link:hover {
  background: var(--soft);
  color: var(--red);
}

.dropdown-link.all {
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  margin-bottom: 4px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.4rem;
}

.hero {
  position: relative;
  min-height: var(--hero-fit-height);
  background: var(--white);
  overflow: hidden;
}

.hero-picture,
.hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  z-index: 0;
}

.hero-picture img {
  display: block;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.97) 32%, rgba(255, 255, 255, 0.42) 52%, rgba(255, 255, 255, 0.04) 72%);
  pointer-events: none;
}

.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--hero-fit-height);
  padding: clamp(28px, 3.4vh, 50px) 56px clamp(18px, 2.4vh, 36px);
  display: flex;
  align-items: flex-start;
}

.hero-copy {
  width: min(650px, 47vw);
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 850;
}

.hero .eyebrow {
  display: none;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0 0 clamp(10px, 1.8vh, 18px);
  color: var(--navy);
  font-size: clamp(3.35rem, 6.25vh, 4.22rem);
  line-height: 1.04;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-lead {
  max-width: 595px;
  margin-bottom: clamp(8px, 1.2vh, 12px);
  color: var(--ink);
  font-size: clamp(1.05rem, 1.9vh, 1.16rem);
  line-height: 1.34;
}

.benefit-grid {
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(4px, 0.7vh, 6px) 12px;
  margin: 0 0 clamp(10px, 1.4vh, 14px);
}

.benefit-pill {
  min-height: clamp(42px, 5.2vh, 48px);
  display: grid;
  grid-template-columns: 30px 1fr 16px;
  align-items: center;
  gap: 10px;
  padding: clamp(7px, 0.9vh, 9px) 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(7, 25, 54, 0.08);
}

.benefit-pill .icon {
  color: var(--navy);
  font-size: 1.24rem;
}

.benefit-status {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.benefit-status .icon {
  width: 0.78em;
  height: 0.78em;
  color: var(--navy);
  font-size: 1rem;
}

.hero-actions,
.page-hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-actions .btn {
  width: 100%;
  min-height: clamp(54px, 6.6vh, 64px);
  padding: 0 16px;
  font-size: clamp(0.98rem, 1.75vh, 1.07rem);
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 0;
  border-radius: 5px;
  font-weight: 850;
  color: var(--white);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(7, 25, 54, 0.16);
}

.btn-red {
  background: var(--red);
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-blue {
  background: var(--navy);
}

.btn-whatsapp {
  background: #0b6f57;
}

.btn-whatsapp:hover {
  background: #095f4b;
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.trust-strip {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 0;
  height: var(--trust-height);
  padding: clamp(16px, 2.2vh, 28px) 0 clamp(6px, 1vh, 18px) 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(245px, 340px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 1px 12px rgba(7, 25, 54, 0.08);
}

.trust-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: 8px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:nth-of-type(4) {
  border-right: 0;
  padding-right: 0;
}

.skyline-silhouette {
  width: clamp(245px, 21.5vw, 340px);
  height: auto;
  max-width: 100%;
  align-self: end;
  justify-self: end;
  transform: translateY(-10px);
  pointer-events: none;
}

.trust-item > .icon {
  width: 42px;
  height: 42px;
  color: var(--navy);
}

.trust-item h2 {
  margin: 0 0 5px;
  font-size: 1.03rem;
  color: var(--ink);
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.review-section {
  color: var(--text);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.review-section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 48px 28px;
}

.review-head {
  margin-bottom: 10px;
}

.review-head .eyebrow {
  color: var(--red);
}

.review-head h2 {
  max-width: 620px;
  margin: 0 0 6px;
  color: var(--ink);
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.15;
  font-weight: 950;
}

.review-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.review-card {
  min-height: 90px;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 3px;
  padding: 9px 14px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: none;
}

.review-card-active {
  grid-column: span 1;
}

.review-card-pending {
  grid-column: span 1;
  background: var(--soft);
}

a.review-card {
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

a.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(223, 8, 8, 0.24);
  background: var(--white);
}

.review-google {
  border-top: 2px solid #4285f4;
}

.review-trustlocal {
  border-top: 2px solid var(--red);
}

.review-card-pending {
  border-top: 2px solid var(--line);
}

.review-logo-tile {
  min-height: 90px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.review-card-head,
.review-logo,
.review-card-link,
.rating-stars,
.review-pending {
  display: inline-flex;
  align-items: center;
}

.review-card-head {
  justify-content: space-between;
  gap: 10px;
}

.review-logo {
  gap: 6px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.1;
}

.trustlocal-logo .icon {
  width: 20px;
  height: 20px;
  color: #5d8bff;
}

.trustpilot-logo .review-logo-symbol {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #00b67a;
  font-size: 0.78rem;
  line-height: 1;
}

.provenexpert-logo .icon {
  width: 20px;
  height: 20px;
  color: #4d7cff;
}

.wkdb-logo {
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  text-transform: uppercase;
  line-height: 1.05;
}

.wkdb-logo span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
}

.wkdb-logo strong {
  color: var(--ink);
  font-size: 1rem;
}

.google-logo {
  gap: 0;
}

.google-logo span:nth-child(1),
.google-logo span:nth-child(4) {
  color: #4285f4;
}

.google-logo span:nth-child(2),
.google-logo span:nth-child(6) {
  color: #ea4335;
}

.google-logo span:nth-child(3) {
  color: #fbbc05;
}

.google-logo span:nth-child(5) {
  color: #34a853;
}

.rating-stars {
  position: relative;
  width: max-content;
  color: rgba(7, 25, 54, 0.16);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0;
}

.rating-stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  max-width: 100%;
  overflow: hidden;
  color: var(--gold);
  clip-path: inset(0 calc(100% - var(--rating-fill)) 0 0);
}

.review-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.review-score strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.1;
}

.review-score span,
.review-pending span {
  color: var(--muted);
  font-weight: 750;
  font-size: 0.76rem;
}

.review-pending {
  gap: 10px;
  align-items: flex-start;
  flex-direction: column;
}

.review-pending .icon {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.62);
}

.review-pending strong {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.25;
}

.review-card-link {
  gap: 6px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.review-card-link-short {
  display: none;
}

.review-card-link .icon {
  width: 15px;
  height: 15px;
  color: var(--red);
}

.google-review-slider {
  margin-top: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.google-review-slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.google-review-slider-head span,
.google-review-slide span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.google-review-slider-head strong {
  display: block;
  margin-top: 1px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.2;
}

.google-review-controls {
  display: inline-flex;
  gap: 6px;
}

.google-review-controls button {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
}

.google-review-controls button:hover {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.google-review-controls button:first-child .icon {
  transform: rotate(180deg);
}

.google-review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 20px) / 3);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.google-review-track::-webkit-scrollbar {
  display: none;
}

.google-review-slide {
  min-height: 96px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 3px 10px;
  align-content: start;
  scroll-snap-align: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.google-review-slide > .icon {
  grid-row: 1 / span 3;
  width: 22px;
  height: 22px;
  color: var(--red);
}

.google-review-slide strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.18;
}

.google-review-slide p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.google-review-quote-slide {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.google-review-person {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.google-review-quote-slide .google-review-person strong {
  min-width: 0;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.15;
}

.google-review-quote-slide .google-review-person span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: right;
  text-transform: none;
}

.google-review-quote-slide .google-review-stars {
  color: #f5ad00;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: none;
}

.google-review-quote-slide p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.google-review-source {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
}

.google-review-source .icon {
  width: 15px;
  height: 15px;
}

@media (max-width: 980px) {
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card-active,
  .review-card-pending {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .review-section-inner {
    padding: 16px 16px 18px;
  }

  .review-head {
    margin-bottom: 10px;
  }

  .review-head h2 {
    font-size: 1.22rem;
    line-height: 1.12;
  }

  .review-head p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .review-logo-tile {
    min-height: 50px;
    padding: 5px 7px;
  }

  .review-card {
    min-height: 94px;
    gap: 2px;
    padding: 7px 9px;
  }

  .review-card-head {
    align-items: flex-start;
  }

  .review-logo {
    gap: 5px;
    font-size: 0.75rem;
  }

  .trustlocal-logo .icon,
  .provenexpert-logo .icon {
    width: 16px;
    height: 16px;
  }

  .trustpilot-logo .review-logo-symbol {
    width: 15px;
    height: 15px;
    font-size: 0.64rem;
  }

  .rating-stars {
    font-size: 0.62rem;
  }

  .review-score {
    gap: 3px;
  }

  .review-score strong {
    font-size: 0.92rem;
  }

  .review-score span,
  .review-pending span {
    font-size: 0.62rem;
    line-height: 1.18;
  }

  .review-card-link {
    gap: 4px;
    margin-top: auto;
    font-size: 0.64rem;
    line-height: 1.15;
  }

  .review-card-link-full {
    display: none;
  }

  .review-card-link-short {
    display: inline;
  }

  .review-card-link .icon {
    width: 12px;
    height: 12px;
  }

  .google-review-slider {
    margin-top: 8px;
    padding: 7px;
  }

  .google-review-slider-head {
    gap: 8px;
    margin-bottom: 6px;
  }

  .google-review-slider-head span,
  .google-review-slide span {
    font-size: 0.62rem;
  }

  .google-review-slider-head strong {
    font-size: 0.8rem;
  }

  .google-review-controls button {
    width: 26px;
    height: 26px;
  }

  .google-review-track {
    grid-auto-columns: clamp(148px, 43vw, 180px);
    gap: 8px;
  }

  .google-review-quote-slide {
    min-height: 92px;
    gap: 3px;
    padding: 7px;
  }

  .google-review-quote-slide .google-review-person strong {
    font-size: 0.72rem;
  }

  .google-review-quote-slide .google-review-stars {
    font-size: 0.68rem;
  }

  .google-review-quote-slide p {
    font-size: 0.68rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
  }

  .google-review-source {
    margin-top: 6px;
    font-size: 0.72rem;
  }

}

@media (max-width: 520px) {
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .google-review-slider {
    padding: 7px;
  }

  .google-review-track {
    grid-auto-columns: clamp(148px, 43vw, 180px);
  }

  .review-logo {
    font-size: 0.72rem;
  }

  .wkdb-logo span {
    font-size: 0.62rem;
  }

  .wkdb-logo strong {
    font-size: 0.88rem;
  }
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 48px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-intro h2,
.area-band h2,
.footer-cta h2 {
  margin-bottom: 14px;
  font-size: 2.8rem;
  font-weight: 900;
}

.section-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  color: var(--red);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.is-hidden {
  display: none !important;
}

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

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

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

.service-card,
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.service-card:hover,
.post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 8, 8, 0.32);
  box-shadow: var(--shadow);
}

.service-card a,
.post-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image {
  aspect-ratio: 16 / 10;
  background: var(--soft);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.service-card:hover .card-image img,
.post-card:hover .card-image img {
  transform: scale(1.04);
}

.card-body {
  position: relative;
  flex: 1;
  padding: 28px;
}

.compact-card .card-body {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.compact-card .card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-size: 1.35rem;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin: 0 0 12px;
  padding: 0 10px;
  color: var(--navy);
  background: rgba(6, 42, 99, 0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 850;
}

.card-body h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
}

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

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--red);
  font-weight: 850;
}

.services-story-section {
  padding-bottom: 44px;
}

.service-spotlight-list {
  display: grid;
  gap: 22px;
}

.service-spotlight-card {
  display: grid;
  grid-template-columns: minmax(140px, 0.22fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 25, 54, 0.06);
}

.service-spotlight-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.22fr);
}

.service-spotlight-card:nth-child(even) .service-spotlight-media {
  order: 2;
}

.service-spotlight-media {
  min-height: 220px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}

.service-spotlight-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.service-spotlight-card > div {
  align-self: center;
}

.service-spotlight-card h3 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: 2rem;
}

.service-spotlight-card p {
  max-width: 72ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-link-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-mini-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  font-weight: 850;
}

.service-mini-link:hover {
  color: var(--red);
  border-color: rgba(226, 13, 0, 0.28);
}

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

.service-decision-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 25, 54, 0.06);
}

.service-decision-card > .icon {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--red);
}

.service-decision-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

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

.service-decision-card .text-link {
  margin-top: auto;
}

.service-combo-section {
  padding-top: 32px;
  padding-bottom: 48px;
}

.service-combo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.52fr);
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-combo-card .eyebrow,
.service-combo-card h2,
.service-combo-card p {
  color: var(--white);
}

.service-combo-card h2 {
  max-width: 820px;
  font-size: 2.45rem;
}

.service-combo-card p {
  max-width: 76ch;
  color: rgba(255, 255, 255, 0.84);
}

.service-combo-side {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 42, 99, 0.86), rgba(6, 42, 99, 0.36)),
    url("/assets/media/generated/service-overview-combo.webp") center / cover;
}

.service-combo-side strong {
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.1;
}

.service-combo-side span {
  position: relative;
  z-index: 1;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.service-combo-points {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-combo-points span {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.service-combo-points .icon {
  width: 24px;
  height: 24px;
  color: var(--red);
  flex: 0 0 auto;
}

.services-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.services-faq-cta {
  position: sticky;
  top: 178px;
  padding: 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.services-faq-cta > .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--red);
}

.services-faq-cta h3,
.services-faq-cta p {
  color: var(--white);
}

.services-faq-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.services-faq-cta .btn {
  width: 100%;
  margin-top: 10px;
}

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

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

.process-step {
  position: relative;
  padding: 4px 30px 4px 0;
  border-right: 1px solid var(--line);
}

.process-step + .process-step {
  padding-left: 30px;
}

.process-step:last-child {
  border-right: 0;
  padding-right: 0;
}

.step-number {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.process-step > .icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--navy);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.area-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 48px;
  display: grid;
  grid-template-columns: 1.15fr 1.45fr auto;
  gap: 32px;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

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

.area-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white);
  font-weight: 750;
}

.area-list:not(.compact) span {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.muted-section {
  max-width: none;
  padding-left: max(48px, calc((100vw - var(--max)) / 2 + 48px));
  padding-right: max(48px, calc((100vw - var(--max)) / 2 + 48px));
  background: var(--soft);
}

.post-date {
  display: block;
  margin-bottom: 0;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 850;
}

.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 12px;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 68px 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(3.1rem, 3.6vw, 3.75rem);
  font-weight: 900;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.13rem;
}

.page-sublead {
  margin-top: -6px;
}

.page-hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 28px;
}

.page-hero-highlights > span {
  min-height: 92px;
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto 1fr;
  gap: 4px 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 25, 54, 0.06);
}

.page-hero-highlights .icon {
  grid-row: 1 / span 2;
  width: 24px;
  height: 24px;
  color: var(--red);
}

.page-hero-highlights strong {
  color: var(--ink);
  line-height: 1.15;
  font-weight: 900;
}

.page-hero-highlights em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.35;
}

.page-hero-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-hero {
  padding-top: 44px;
  padding-bottom: 38px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
  gap: 38px;
}

.faq-hero .page-hero-highlights {
  display: none;
}

.faq-hero .page-hero-actions {
  display: none;
}

.faq-hero .page-hero-image {
  aspect-ratio: 16 / 7;
  max-height: 260px;
}

.quick-fact-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.quick-fact-strip article {
  min-height: 108px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 25, 54, 0.06);
}

.quick-fact-strip .icon {
  width: 34px;
  height: 34px;
  color: var(--navy);
}

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

.quick-fact-strip strong {
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 900;
}

.quick-fact-strip span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.filter-toolbar {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-chips {
  margin: -12px 0 30px;
}

.chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 850;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.chip:hover,
.chip.active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

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

.feature-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 25, 54, 0.06);
}

.feature-card > .icon {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 0 16px;
  color: var(--navy);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.detail-layout,
.contact-layout,
.area-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: start;
}

.prose {
  color: var(--text);
}

.content-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 25, 54, 0.05);
}

.service-story {
  padding-top: 24px;
}

.service-story-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  gap: 36px;
  align-items: stretch;
}

.service-story-head > div {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 25, 54, 0.05);
}

.service-story-head h2 {
  margin-bottom: 20px;
  font-size: 2.35rem;
}

.service-story-image {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.service-story-image img {
  width: 100%;
  height: calc(100% - 56px);
  min-height: 320px;
  object-fit: cover;
}

.service-story-image figcaption {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--white);
  font-weight: 850;
}

.service-story-image .icon {
  color: var(--red);
}

.service-explain-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-explain-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 25, 54, 0.06);
}

.service-explain-grid .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--red);
}

.service-explain-grid span,
.chapter-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-explain-grid h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.service-explain-grid p {
  margin: 0;
  color: var(--muted);
}

.service-chapters {
  padding-top: 28px;
}

.service-chapter-list {
  display: grid;
  gap: 24px;
}

.service-chapter-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 25, 54, 0.06);
  scroll-margin-top: 180px;
}

.service-chapter-card:nth-child(even) {
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
}

.service-chapter-card:nth-child(even) > div {
  order: 2;
}

.service-chapter-card h3 {
  margin-bottom: 16px;
  font-size: 1.65rem;
}

.service-chapter-card figure {
  margin: 0;
  overflow: hidden;
  align-self: stretch;
  border-radius: 8px;
  background: var(--soft);
}

.service-chapter-card img {
  width: 100%;
  height: calc(100% - 44px);
  min-height: 250px;
  object-fit: cover;
}

.service-chapter-card figcaption {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--navy);
  font-weight: 850;
  background: var(--soft);
}

.service-explain-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.service-explain-row .icon {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.service-explain-row p {
  margin: 0;
}

.service-explain-row strong,
.service-explain-row span {
  display: block;
}

.service-explain-row strong {
  margin-bottom: 3px;
  color: var(--ink);
}

.service-explain-row span {
  color: var(--muted);
}

.inline-more,
.service-accordion {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.inline-more {
  margin-top: 12px;
}

.inline-more summary,
.service-accordion summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.inline-more > div,
.service-accordion > div {
  padding: 0 18px 18px;
}

.service-accordion-list {
  margin-top: 36px;
  display: grid;
  gap: 12px;
}

.service-accordion {
  scroll-margin-top: 180px;
  box-shadow: 0 8px 22px rgba(7, 25, 54, 0.05);
}

.prose.wide {
  max-width: 980px;
}

.prose h2 {
  margin: 0 0 24px;
  font-size: 2.2rem;
}

.prose h3 {
  margin: 32px 0 12px;
  color: var(--navy);
  font-size: 1.32rem;
}

.prose p {
  max-width: 76ch;
  margin-bottom: 18px;
  font-size: 1.04rem;
}

.detail-aside,
.article-aside {
  position: sticky;
  top: 178px;
  display: grid;
  gap: 18px;
}

.aside-box,
.contact-card,
.contact-form,
.area-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 25, 54, 0.06);
}

.aside-box h3,
.contact-card h2,
.area-panel h2 {
  margin-bottom: 18px;
}

.aside-box.blue {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.aside-box.blue h3,
.aside-box.blue p {
  color: var(--white);
}

.aside-box.blue p {
  color: rgba(255, 255, 255, 0.84);
}

.toc-box nav {
  display: grid;
  gap: 2px;
}

.toc-box a,
.document-layout .aside-box a {
  display: block;
  padding: 9px 0;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.toc-box a:hover,
.document-layout .aside-box a:hover {
  color: var(--red);
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.benefit-row:last-child {
  border-bottom: 0;
}

.article-page {
  max-width: var(--max);
  margin: 0 auto;
}

.reading-progress {
  position: sticky;
  top: calc(var(--topbar-height) + var(--nav-height));
  z-index: 45;
  height: 4px;
  background: rgba(6, 42, 99, 0.08);
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.article-hero {
  padding: 66px 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.9fr);
  gap: 54px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  margin-bottom: 18px;
  font-size: 3.5rem;
  font-weight: 900;
}

.article-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-shell {
  padding: 72px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 64px;
  align-items: start;
}

.article-body {
  max-width: 820px;
}

.blog-tools {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.search-box {
  width: min(100%, 520px);
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--white);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.faq-shell {
  padding-top: 32px;
}

.faq-shell .section-intro {
  margin-bottom: 18px;
}

.faq-shell .blog-tools {
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.faq-shell [data-faq-count] {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 25, 54, 0.07);
  overflow: hidden;
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--ink);
  list-style: none;
  font-weight: 850;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.16s ease, background 0.16s ease;
}

.faq-list details[open] {
  border-color: rgba(223, 8, 8, 0.28);
}

.faq-list details[open] summary::after {
  content: "-";
  background: var(--red);
}

.faq-list p {
  max-width: 820px;
  margin: -4px 22px 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) 410px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form .form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(6, 42, 99, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 24px;
  font-weight: 800;
}

.form-status.error {
  color: var(--red);
}

.form-status.success {
  color: #14783d;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
}

.contact-card hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
}

.area-panel {
  background: var(--soft);
}

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 54px;
  padding-bottom: 34px;
}

.coverage-map-card,
.coverage-check-card,
.area-radius-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 25, 54, 0.07);
}

.coverage-map-card {
  overflow: hidden;
}

.coverage-map-shell {
  position: relative;
  min-height: 520px;
}

.coverage-map {
  position: relative;
  scroll-margin-top: calc(var(--topbar-height) + var(--nav-height) + 18px);
  width: 100%;
  min-height: 520px;
  height: 100%;
  overflow: hidden;
  background: #e8eef4;
}

.coverage-map img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.coverage-selected-pin {
  position: absolute;
  left: var(--marker-x, 50%);
  top: var(--marker-y, 50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(240px, 58%);
  padding: 8px 10px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(7, 25, 54, 0.25);
  transform: translate(-50%, -50%);
}

.coverage-selected-pin[hidden] {
  display: none;
}

.coverage-selected-pin.outside {
  background: var(--red);
}

.coverage-selected-pin .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.coverage-selected-pin span:last-child {
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coverage-map-loading {
  min-height: 520px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
  color: var(--navy);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(6, 42, 99, 0.08), rgba(226, 13, 0, 0.06)),
    var(--soft);
}

.coverage-map-loading .icon {
  width: 46px;
  height: 46px;
  color: var(--red);
}

.coverage-map-loading span {
  color: var(--muted);
}

.coverage-map-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 500;
  min-width: 118px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(7, 25, 54, 0.18);
}

.coverage-map-badge strong,
.coverage-map-badge span {
  display: block;
}

.coverage-map-badge strong {
  font-size: 1.65rem;
  line-height: 1;
}

.coverage-map-badge span {
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coverage-map-legend {
  min-height: 64px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 0 20px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

.coverage-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.legend-dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
}

.legend-dot.center,
.legend-dot.selected {
  background: var(--navy);
}

.legend-dot.radius {
  background: rgba(226, 13, 0, 0.12);
  border: 2px solid var(--red);
}

.coverage-check-card {
  padding: 30px;
}

.coverage-check-card h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.coverage-check-card > p:not(.eyebrow) {
  color: var(--muted);
}

.coverage-search {
  width: 100%;
  margin: 20px 0 14px;
  background: var(--soft);
}

.coverage-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.coverage-actions .btn {
  min-height: 54px;
  padding: 0 14px;
  font-size: 0.95rem;
}

.coverage-result {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.coverage-result strong,
.coverage-result span {
  display: block;
}

.coverage-result strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.05rem;
}

.coverage-result span {
  color: var(--muted);
  line-height: 1.45;
}

.coverage-result.success {
  border-color: rgba(6, 42, 99, 0.22);
  background: rgba(6, 42, 99, 0.06);
}

.coverage-result.success strong {
  color: var(--navy);
}

.coverage-result.warning {
  border-color: rgba(226, 13, 0, 0.24);
  background: rgba(226, 13, 0, 0.06);
}

.coverage-result.warning strong,
.coverage-result.outside strong {
  color: var(--red);
}

.coverage-result.outside {
  border-color: rgba(226, 13, 0, 0.28);
  background: rgba(226, 13, 0, 0.07);
}

.coverage-meter {
  height: 10px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.coverage-meter span {
  width: var(--coverage-progress);
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--navy), var(--red));
  border-radius: inherit;
  transition: width 180ms ease;
}

.coverage-chip-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coverage-chip-row button,
.area-list button {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, color 150ms ease;
}

.coverage-chip-row button {
  padding: 9px 12px;
  font-size: 0.86rem;
}

.coverage-chip-row button:hover,
.area-list button:hover {
  color: var(--red);
  border-color: rgba(226, 13, 0, 0.34);
  transform: translateY(-1px);
}

.area-radius-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 34px;
}

.area-radius-card {
  padding: 24px;
}

.area-radius-card .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--red);
}

.area-radius-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.area-radius-card p {
  margin: 0;
  color: var(--muted);
}

.area-regions-section {
  padding-top: 42px;
  padding-bottom: 56px;
}

.area-region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.area-region-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 25, 54, 0.06);
}

.area-region-media {
  min-height: 190px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}

.area-region-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
}

.area-region-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.area-region-card p {
  color: var(--muted);
}

.area-region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.area-region-tags button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.area-region-tags button:hover {
  color: var(--red);
  border-color: rgba(226, 13, 0, 0.32);
}

.area-planning-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
  padding-top: 54px;
  padding-bottom: 42px;
}

.area-planning-intro {
  padding: 30px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.area-planning-intro .eyebrow,
.area-planning-intro h2,
.area-planning-intro p {
  color: var(--white);
}

.area-planning-intro h2 {
  font-size: 2.2rem;
}

.area-planning-intro p {
  color: rgba(255, 255, 255, 0.84);
}

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

.area-planning-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 25, 54, 0.06);
}

.area-planning-card .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  color: var(--red);
}

.area-planning-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.area-planning-card p {
  margin: 0;
  color: var(--muted);
}

.area-page-enhanced {
  padding-top: 34px;
}

.area-copy-actions {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.area-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.area-panel-head h2 {
  margin-bottom: 8px;
}

.area-panel-head strong {
  min-width: 54px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
}

.area-search {
  width: 100%;
  margin: 8px 0 18px;
  background: var(--white);
}

.area-panel .area-list {
  margin-top: 18px;
}

.area-panel .area-list button {
  padding: 10px 13px;
}

.area-details-section {
  scroll-margin-top: calc(var(--topbar-height) + var(--nav-height) + 18px);
  padding-top: 48px;
  padding-bottom: 58px;
}

.area-local-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.area-local-head h2 {
  margin-bottom: 14px;
  font-size: 2.7rem;
}

.area-local-head p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.area-local-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.74fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.area-local-overview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(7, 25, 54, 0.08);
}

.area-local-overview figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft);
}

.area-local-overview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.area-local-overview-body {
  padding: 28px;
}

.area-local-overview-body h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.area-local-overview-body p {
  color: var(--muted);
}

.area-local-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.area-local-stat-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 1.45rem;
  line-height: 1;
}

.area-local-stat-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

.area-local-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.area-local-groups {
  display: grid;
  gap: 16px;
}

.area-local-group-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 25, 54, 0.05);
}

.area-local-group-title {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.area-local-group-title .icon {
  width: 40px;
  height: 40px;
  color: var(--red);
}

.area-local-group-title h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.area-local-group-title p {
  margin: 0;
  color: var(--muted);
}

.area-local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.area-local-tags button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(6, 42, 99, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.area-local-tags button:hover {
  color: var(--red);
  border-color: rgba(226, 13, 0, 0.34);
  background: var(--white);
}

.area-local-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.area-local-note {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7f9fc);
}

.area-local-note .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--navy);
}

.area-local-note h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.area-local-note p {
  margin: 0;
  color: var(--muted);
}

.area-faq-section {
  padding-top: 44px;
}

.area-service-card {
  margin-top: 26px;
  padding: 22px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
}

.area-service-card .icon {
  width: 32px;
  height: 32px;
}

.area-service-card h3 {
  margin-bottom: 6px;
  color: var(--white);
}

.area-service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.about-layout,
.document-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: start;
}

.about-story-section {
  padding-top: 58px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: start;
}

.about-lead {
  max-width: 900px;
}

.about-lead h2,
.about-media-split h2 {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(2.05rem, 3vw, 3rem);
  line-height: 1.08;
}

.about-lead p,
.about-media-split p {
  max-width: 78ch;
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.06rem;
}

.about-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.about-proof-row span {
  min-height: 96px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7f9fc);
}

.about-proof-row strong {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.05rem;
}

.about-stat-panel {
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-stat-panel h3 {
  margin: 10px 0 22px;
  color: var(--white);
  font-size: 1.45rem;
}

.about-stat-panel dl {
  display: grid;
  gap: 16px;
  margin: 0 0 24px;
}

.about-stat-panel dl > div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-stat-panel dt {
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 900;
}

.about-stat-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.4;
}

.about-stat-panel .btn {
  width: 100%;
}

.about-value-grid,
.about-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-value-card,
.about-service-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 25, 54, 0.06);
}

.about-value-card .icon,
.about-service-card .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--navy);
}

.about-value-card h3,
.about-service-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.about-value-card p,
.about-service-card p {
  margin: 0;
  color: var(--muted);
}

.about-media-split {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.about-media-split figure {
  margin: 0;
}

.about-section-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.about-check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

.about-check-list .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--red);
}

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

.about-service-card {
  display: flex;
  flex-direction: column;
}

.about-service-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.about-faq-section .faq-list {
  max-width: 1100px;
}

.document-prose {
  max-width: 920px;
}

.contact-main {
  display: grid;
  gap: 24px;
}

.form-options {
  margin: 0;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-options legend {
  padding: 0 8px;
  color: var(--ink);
  font-weight: 900;
}

.form-options label {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft);
}

.next-steps-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.mini-timeline {
  display: grid;
  gap: 16px;
}

.mini-timeline article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
}

.mini-timeline span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.mini-timeline h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.mini-timeline p {
  margin: 0;
  color: var(--muted);
}

.contact-method-grid {
  display: grid;
  gap: 10px;
}

.contact-method-grid a {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-method-grid a span {
  display: grid;
}

.contact-method-grid strong {
  color: var(--ink);
}

.quote-layout {
  align-items: start;
}

.quote-focus-layout {
  max-width: 940px;
  min-height: calc(100vh - var(--topbar-height) - var(--nav-height));
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  padding-top: 42px;
  padding-bottom: 56px;
}

body.quote-admin-mode .quote-focus-layout {
  max-width: var(--max);
  grid-template-columns: minmax(0, 1fr) 410px;
}

.quote-form-title {
  display: grid;
  gap: 6px;
  padding-bottom: 4px;
}

.quote-form-title h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.12;
}

.quote-progress {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
}

.quote-progress-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.quote-progress-copy strong {
  color: var(--ink);
}

.quote-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(6, 42, 99, 0.12);
}

.quote-progress-track span {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--red);
  transition: width 180ms ease;
}

.quote-step {
  display: none;
}

.quote-step.is-active {
  display: grid;
  gap: 18px;
}

.quote-step-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 6px;
  align-items: start;
}

.quote-question-icon {
  grid-row: 1 / 4;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--red);
  background: rgba(223, 8, 8, 0.08);
}

.quote-question-icon .icon {
  width: 24px;
  height: 24px;
}

.quote-step-head .eyebrow,
.quote-step-head h2,
.quote-step-head p:last-child {
  grid-column: 2;
}

.quote-step-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.65rem;
}

.quote-step-head p:last-child {
  margin: 0;
  color: var(--muted);
}

.quote-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quote-single-field {
  max-width: 680px;
}

.form-options .quote-option-card,
.quote-option-card {
  position: relative;
  min-height: 70px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
}

.quote-option-card:has(input:checked) {
  border-color: rgba(223, 8, 8, 0.42);
  background: rgba(223, 8, 8, 0.05);
  box-shadow: 0 10px 22px rgba(7, 25, 54, 0.07);
}

.quote-option-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.quote-option-card:has(input:focus-visible) {
  outline: 3px solid rgba(6, 42, 99, 0.12);
  outline-offset: 2px;
}

.quote-option-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: var(--navy);
  background: var(--soft);
}

.quote-option-card input:checked + .quote-option-icon {
  color: var(--white);
  background: var(--red);
}

.quote-option-icon .icon {
  width: 19px;
  height: 19px;
}

.quote-option-copy {
  display: grid;
  gap: 3px;
}

.quote-option-copy strong {
  color: var(--ink);
}

.quote-option-copy small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.25;
}

.quote-visual-grid .quote-option-card {
  min-height: 92px;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
}

.quote-visual-grid .quote-option-icon {
  width: 52px;
  height: 52px;
}

.quote-visual-grid .quote-option-icon .icon {
  width: 25px;
  height: 25px;
}

.quote-visual-grid .quote-option-copy strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.quote-contact-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quote-location-fields {
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
}

.quote-radius-hint {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.quote-radius-hint.is-auto {
  color: var(--navy);
}

.quote-radius-hint.is-outside,
.quote-radius-hint.is-manual {
  color: var(--red-dark);
}

.quote-optional-note {
  max-width: none;
}

.quote-load-options .quote-option-copy {
  display: grid;
  gap: 2px;
  line-height: 1.25;
}

.quote-load-options .quote-option-copy strong {
  color: var(--ink);
}

.quote-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 2px;
}

.quote-actions .btn {
  min-width: 150px;
}

.quote-back:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.quote-submit {
  display: none;
}

.quote-submit.is-visible {
  display: inline-flex;
}

.quote-sidebar {
  position: sticky;
  top: 178px;
}

.quote-admin-shell {
  display: none;
}

body.quote-admin-mode .quote-admin-shell {
  display: grid;
}

.quote-public-summary {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(6, 42, 99, 0.14);
  border-radius: 8px;
  background: var(--soft);
}

.quote-summary-label {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.quote-public-summary strong {
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.2;
}

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

.quote-driver-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quote-driver-list span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  font-size: 0.88rem;
}

.quote-admin-panel {
  margin-top: 8px;
  padding-top: 18px;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.quote-admin-panel[hidden] {
  display: none;
}

.quote-admin-range {
  padding: 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 1.45rem;
  font-weight: 950;
  text-align: center;
}

.quote-admin-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quote-admin-meta span {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.86rem;
}

.quote-admin-meta strong {
  display: block;
  color: var(--ink);
}

.quote-admin-lines {
  display: grid;
  gap: 10px;
}

.quote-admin-lines h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 1rem;
}

.quote-admin-lines ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
  list-style: none;
}

.quote-admin-lines li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-admin-lines li strong {
  color: var(--navy);
  white-space: nowrap;
}

.quote-admin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quote-approved-text {
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(20, 120, 61, 0.25);
  border-radius: 8px;
  color: #0f5f32;
  background: #f0fbf5;
  white-space: pre-line;
  font-weight: 800;
}

.admin-dashboard {
  max-width: var(--max);
  min-height: calc(100vh - var(--topbar-height) - var(--nav-height));
  display: grid;
  align-content: start;
  gap: 22px;
  padding-top: 34px;
  padding-bottom: 56px;
}

.admin-login-panel[hidden],
.admin-shell[hidden] {
  display: none;
}

.admin-login-panel {
  min-height: 54vh;
  display: grid;
  place-items: center;
}

.admin-login-card {
  width: min(100%, 460px);
}

.admin-login-card h1,
.admin-header h1,
.admin-detail-head h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
}

.admin-header h1 {
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
}

.admin-shell {
  display: grid;
  gap: 14px;
}

.admin-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.admin-header-actions,
.admin-contact-actions,
.admin-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-dashboard .btn {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 650;
}

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

.admin-kpis span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.admin-kpis strong {
  display: block;
  color: var(--navy);
  font-size: 1.24rem;
  font-weight: 700;
}

.admin-workspace {
  display: grid;
  grid-template-columns: minmax(310px, 380px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.admin-list-panel,
.admin-detail-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 25, 54, 0.05);
}

.admin-list-panel {
  overflow: hidden;
}

.admin-tools {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.admin-search {
  width: 100%;
  background: var(--white);
}

.admin-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-filter-row button {
  min-height: 32px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--navy);
  background: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
}

.admin-filter-row button.active {
  border-color: rgba(6, 42, 99, 0.24);
  color: var(--navy);
  background: rgba(6, 42, 99, 0.06);
}

.admin-filter-row span {
  color: var(--muted);
}

.admin-request-list {
  max-height: calc(100vh - 330px);
  overflow: auto;
}

.admin-request-item {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 0.9rem;
  text-align: left;
}

.admin-request-item.active,
.admin-request-item:hover {
  background: rgba(6, 42, 99, 0.05);
}

.admin-request-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-request-top strong {
  color: var(--ink);
  font-weight: 650;
}

.admin-status-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 7px;
  border: 1px solid rgba(6, 42, 99, 0.12);
  border-radius: 4px;
  color: var(--navy);
  background: var(--soft);
  font-weight: 600;
  font-size: 0.76rem;
  white-space: nowrap;
}

.admin-status-badge .icon {
  width: 14px;
  height: 14px;
}

.admin-status-large {
  font-size: 0.8rem;
}

.admin-detail-panel {
  padding: 16px;
}

.admin-detail-card {
  display: grid;
  gap: 14px;
}

.admin-detail-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.admin-detail-head p:last-child {
  margin: 6px 0 0;
  color: var(--muted);
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
}

.admin-detail-grid section,
.admin-price-panel,
.admin-activity,
.admin-raw-details {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfcfe;
}

.admin-detail-grid h3,
.admin-activity h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 650;
}

.admin-edit-sections {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
}

.admin-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-edit-grid label,
.admin-price-panel label,
.admin-editor {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.admin-edit-grid label {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.admin-edit-grid input,
.admin-edit-grid textarea,
.admin-edit-grid select,
.admin-price-panel input,
.admin-price-panel select,
.admin-editor textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.92rem;
}

.admin-edit-grid input,
.admin-edit-grid select,
.admin-price-panel input,
.admin-price-panel select {
  min-height: 38px;
  padding: 0 10px;
}

.admin-edit-grid textarea,
.admin-editor textarea {
  padding: 10px;
  line-height: 1.45;
  resize: vertical;
}

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

.admin-facts {
  display: grid;
  gap: 8px;
  margin: 0;
}

.admin-facts div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
}

.admin-facts dt {
  color: var(--muted);
  font-weight: 600;
}

.admin-facts dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.admin-price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.35fr) minmax(150px, 0.3fr);
  gap: 14px;
  align-items: end;
  background: #fbfcfe;
}

.admin-price-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.16rem;
  font-weight: 700;
}

.admin-price-panel span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.admin-editor {
  display: grid;
  gap: 8px;
}

.admin-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-editor small {
  color: var(--muted);
  font-weight: 500;
}

.admin-editor .text-button {
  font-size: 0.84rem;
  font-weight: 650;
}

.admin-raw-details summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 650;
}

.admin-raw-details pre {
  overflow: auto;
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  white-space: pre-wrap;
}

.admin-activity ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-activity li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.admin-activity span {
  color: var(--muted);
  white-space: nowrap;
}

.admin-empty,
.admin-empty-list {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 220px;
  padding: 28px;
  color: var(--muted);
  text-align: center;
}

.admin-empty .icon {
  width: 34px;
  height: 34px;
  color: var(--red);
}

.text-button {
  padding: 0;
  border: 0;
  color: var(--red);
  background: transparent;
  font-weight: 900;
}

.empty-state,
.not-found {
  text-align: center;
}

.cookie-banner[hidden],
.cookie-modal-backdrop[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 120;
  width: min(1180px, calc(100vw - 32px));
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(6, 42, 99, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(7, 25, 54, 0.22);
  transform: translateX(-50%);
}

.cookie-banner-copy {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.cookie-banner-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-size: 1.45rem;
}

.cookie-banner h2,
.cookie-modal h2,
.cookie-manager-panel h2,
.cookie-scan-panel h2,
.cookie-declaration h2 {
  margin-bottom: 8px;
}

.cookie-banner p,
.cookie-modal p,
.cookie-manager-panel p,
.cookie-scan-panel p,
.cookie-declaration p {
  margin-bottom: 0;
  color: var(--muted);
}

.cookie-banner a {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: var(--red);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.cookie-banner-actions,
.cookie-modal-actions,
.cookie-manager-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-banner-actions .btn,
.cookie-modal-actions .btn,
.cookie-manager-actions .btn {
  min-height: 48px;
  padding: 0 18px;
  white-space: nowrap;
}

.cookie-text-button,
.footer-link-button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 850;
  text-align: left;
}

.cookie-text-button {
  color: var(--navy);
  border-bottom: 2px solid currentColor;
}

.cookie-text-button:hover {
  color: var(--red);
}

.footer-link-button {
  display: block;
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-link-button:hover {
  color: var(--white);
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 130;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(1, 29, 73, 0.58);
}

.cookie-modal {
  width: min(880px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(1, 29, 73, 0.32);
}

.cookie-modal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 18px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.cookie-icon-button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-size: 1.1rem;
}

.cookie-icon-button:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.cookie-modal-grid {
  margin: 22px 0;
  display: grid;
  gap: 12px;
}

.cookie-toggle {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-toggle > span {
  grid-row: 1 / span 2;
  position: relative;
  width: 50px;
  height: 28px;
  border-radius: 999px;
  background: #c8d0dd;
  box-shadow: inset 0 0 0 1px rgba(7, 25, 54, 0.08);
  transition: background 150ms ease;
}

.cookie-toggle > span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(7, 25, 54, 0.2);
  transition: transform 150ms ease;
}

.cookie-toggle input:checked + span {
  background: var(--navy);
}

.cookie-toggle input:checked + span::after {
  transform: translateX(22px);
}

.cookie-toggle input:focus-visible + span {
  outline: 3px solid rgba(223, 8, 8, 0.3);
  outline-offset: 3px;
}

.cookie-toggle strong {
  color: var(--ink);
  line-height: 1.2;
  font-weight: 900;
}

.cookie-toggle em {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.35;
}

.cookie-toggle.required {
  background: var(--white);
}

.cookie-modal-status {
  padding: 14px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--navy);
  border-top: 1px solid var(--line);
}

.cookie-modal-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cookie-policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: start;
}

.cookie-policy-main {
  display: grid;
  gap: 28px;
}

.cookie-manager-panel,
.cookie-scan-panel,
.cookie-declaration,
.cookie-legal-details {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 25, 54, 0.05);
}

.cookie-manager-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 20px;
  align-items: center;
}

.cookie-manager-actions {
  grid-column: 1 / -1;
  justify-content: flex-start;
}

.cookie-status-card {
  padding: 18px;
  border: 1px solid rgba(6, 42, 99, 0.14);
  border-radius: 8px;
  background: var(--soft);
}

.cookie-status-card span,
.cookie-status-card strong,
.cookie-status-card em {
  display: block;
}

.cookie-status-card span {
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 850;
}

.cookie-status-card strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.15;
}

.cookie-status-card em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

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

.cookie-category-grid article,
.cookie-scan-grid article {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 25, 54, 0.06);
}

.cookie-category-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.12rem;
}

.cookie-category-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.cookie-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  color: var(--navy);
  background: rgba(6, 42, 99, 0.08);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.cookie-badge.active {
  color: var(--white);
  background: var(--navy);
}

.cookie-badge.warning {
  color: var(--white);
  background: var(--red);
}

.cookie-scan-panel .section-intro,
.cookie-declaration .section-intro {
  margin-bottom: 24px;
}

.cookie-scan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.cookie-scan-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cookie-scan-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.2;
}

.cookie-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.cookie-table-wrap.compact {
  margin-top: 12px;
}

.cookie-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.cookie-table th {
  color: var(--navy);
  background: var(--soft);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cookie-table td {
  color: var(--text);
  font-size: 0.93rem;
}

.cookie-table td strong,
.cookie-table td > span:not(.cookie-badge) {
  display: block;
}

.cookie-table td strong {
  color: var(--ink);
  font-weight: 900;
}

.cookie-table td > span:not(.cookie-badge) {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.cookie-table .cookie-badge {
  display: inline-flex;
  margin-top: 0;
}

.cookie-table tr:last-child td {
  border-bottom: 0;
}

.cookie-empty {
  margin: 0;
  padding: 16px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.cookie-legal-details {
  padding: 0;
  overflow: hidden;
}

.cookie-legal-details summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.cookie-legal-details .content-card {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-dark);
}

.footer-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 62px 48px;
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.footer-cta p {
  max-width: 700px;
  margin: 0;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 48px;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr 0.95fr;
  gap: 44px;
}

.footer-logo {
  width: 240px;
  margin-bottom: 18px;
}

.footer-grid h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1.05rem;
}

.footer-grid a {
  display: block;
  margin: 0 0 9px;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 48px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1180px) {
  :root {
    --nav-height: 86px;
  }

  .topbar-inner,
  .nav-shell,
  .hero-content,
  .section,
  .page-hero,
  .article-hero,
  .article-shell,
  .trust-strip,
  .footer-cta,
  .footer-grid,
  .footer-bottom {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav-shell {
    min-height: 86px;
  }

  .brand-mark img {
    width: 215px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

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

  .hero-actions .btn:first-child {
    grid-column: 1 / -1;
  }

  .trust-strip {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .skyline-silhouette {
    grid-column: 1 / -1;
    justify-self: end;
    margin-right: -28px;
  }

  .trust-item {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .coverage-section,
  .service-combo-card,
  .services-faq-layout,
  .area-planning-section,
  .area-local-layout,
  .area-page {
    grid-template-columns: 1fr;
  }

  .area-region-grid {
    grid-template-columns: 1fr;
  }

  .service-spotlight-card,
  .service-spotlight-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-spotlight-card:nth-child(even) figure {
    order: 0;
  }

  .service-decision-grid,
  .service-combo-points,
  .area-local-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-faq-cta {
    position: static;
  }

  .coverage-map-shell,
  .coverage-map,
  .coverage-map img,
  .coverage-map-loading {
    min-height: 440px;
  }

  .quick-fact-strip,
  .feature-grid,
  .service-explain-grid,
  .about-value-grid,
  .about-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 28px;
    padding-right: 28px;
  }

  .service-story-head,
  .service-chapter-card,
  .service-chapter-card:nth-child(even),
  .about-story-grid,
  .about-media-split {
    grid-template-columns: 1fr;
  }

  .service-chapter-card:nth-child(even) > div {
    order: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .process-step,
  .process-step + .process-step {
    padding: 0;
    border-right: 0;
  }

  .area-band {
    grid-template-columns: 1fr;
    padding-left: 28px;
    padding-right: 28px;
  }

  .detail-layout,
  .contact-layout,
  .area-page,
  .about-layout,
  .document-layout,
  .article-shell,
  .cookie-policy-layout,
  .admin-workspace,
  .admin-detail-grid,
  .admin-price-panel {
    grid-template-columns: 1fr;
  }

  .admin-request-list {
    max-height: none;
  }

  .admin-edit-grid {
    grid-template-columns: 1fr;
  }

  body.quote-admin-mode .quote-focus-layout,
  .quote-focus-layout {
    max-width: 920px;
    grid-template-columns: 1fr;
  }

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

  .detail-aside,
  .article-aside {
    position: static;
  }

  .quote-sidebar {
    position: static;
  }
}

@media (min-width: 1181px) and (max-height: 950px) {
  :root {
    --fold-bottom-safe-space: clamp(28px, 3.2vh, 40px);
  }

  .hero-content {
    padding-top: clamp(22px, 2.8vh, 34px);
    padding-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.95vh, 4rem);
  }

  .benefit-pill {
    min-height: 42px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .hero-actions .btn {
    min-height: 54px;
  }
}

@media (max-width: 860px) {
  body {
    padding-bottom: 64px;
  }

  .topbar-inner {
    min-height: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 0.82rem;
  }

  .topbar-claim {
    display: none;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand-mark img {
    width: 190px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 120px 0 0;
    z-index: 80;
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 22px 28px 120px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: inset 0 1px 0 var(--line);
  }

  .menu-open .main-nav {
    display: grid;
  }

  .nav-link,
  .cta-nav {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--navy);
  }

  .nav-link::after {
    display: none;
  }

  .cta-nav {
    margin-top: 14px;
    padding: 0 18px;
    justify-content: center;
    color: var(--white);
    background: var(--red);
    border-bottom: 0;
    border-radius: 5px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    padding: 6px 0 12px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown.open .dropdown-panel {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero-picture img {
    object-position: center bottom;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.74) 48%, rgba(255, 255, 255, 0.2) 100%);
  }

  .hero::before {
    width: 5px;
  }

  .hero-content {
    min-height: 720px;
    padding-top: 50px;
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .page-hero-actions,
  .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .page-hero-highlights,
  .quick-fact-strip,
  .feature-grid,
  .cookie-category-grid,
  .cookie-scan-grid,
  .service-explain-grid,
  .about-value-grid,
  .about-service-grid,
  .about-proof-row,
  .coverage-actions,
  .area-copy-actions,
  .area-radius-section,
  .area-planning-grid,
  .area-local-actions,
  .area-local-stat-grid,
  .area-local-note-grid,
  .service-decision-grid,
  .service-combo-points,
  .service-grid,
  .service-grid.full,
  .service-grid.three,
  .post-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-story-head,
  .cookie-banner,
  .cookie-manager-panel,
  .service-spotlight-card,
  .service-spotlight-card:nth-child(even),
  .service-combo-card,
  .services-faq-layout,
  .area-region-card,
  .area-planning-section,
  .area-local-layout,
  .service-chapter-card,
  .service-chapter-card:nth-child(even),
  .about-story-grid,
  .about-media-split {
    grid-template-columns: 1fr;
  }

  .service-spotlight-card:nth-child(even) figure {
    order: 0;
  }

  .service-story-head > div,
  .service-spotlight-card,
  .service-combo-card,
  .area-region-card,
  .area-local-overview-body,
  .area-local-group-card,
  .area-local-note,
  .service-chapter-card,
  .about-value-card,
  .about-service-card,
  .about-stat-panel {
    padding: 24px;
  }

  .service-story-head h2,
  .service-spotlight-card h3,
  .service-combo-card h2 {
    font-size: 2rem;
  }

  .service-spotlight-card img,
  .service-combo-card img,
  .area-region-card img,
  .service-story-image img,
  .service-chapter-card img {
    min-height: 220px;
  }

  .area-planning-intro h2 {
    font-size: 1.9rem;
  }

  .area-local-head h2 {
    font-size: 2.1rem;
  }

  .coverage-section,
  .area-radius-section,
  .area-page-enhanced {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .coverage-check-card {
    padding: 24px;
  }

  .coverage-map-shell,
  .coverage-map,
  .coverage-map img,
  .coverage-map-loading {
    min-height: 360px;
  }

  .coverage-map-legend {
    min-height: auto;
    padding: 16px;
  }

  .filter-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-chips {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .services-overview .filter-chips {
    overflow-x: visible;
    flex-wrap: wrap;
  }

  .chip {
    flex: 0 0 auto;
  }

  .services-overview .chip {
    flex: 0 1 auto;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-intro h2,
  .area-band h2,
  .footer-cta h2 {
    font-size: 2.2rem;
  }

  .page-hero,
  .article-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .faq-hero {
    padding-top: 30px;
    padding-bottom: 24px;
  }

  .faq-hero .page-hero-image {
    display: none;
  }

  .faq-shell {
    padding-top: 28px;
  }

  .faq-shell .blog-tools {
    gap: 12px;
    padding: 14px;
  }

  .faq-shell .search-box {
    width: 100%;
  }

  .faq-shell [data-faq-count] {
    width: fit-content;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-list summary {
    min-height: 64px;
    padding: 16px 18px;
    font-size: 0.98rem;
  }

  .faq-list summary::after {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .faq-list p {
    margin: -2px 18px 18px;
    font-size: 0.95rem;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: 2.7rem;
  }

  .detail-layout,
  .contact-layout,
  .area-page,
  .about-layout,
  .document-layout,
  .article-shell,
  .cookie-policy-layout {
    gap: 34px;
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .quote-choice-grid,
  .quote-contact-fields,
  .quote-admin-meta,
  .quote-admin-actions,
  .admin-kpis,
  .admin-facts div,
  .quote-actions {
    grid-template-columns: 1fr;
  }

  .admin-dashboard {
    padding-top: 22px;
  }

  .admin-header,
  .admin-detail-head,
  .admin-request-top,
  .admin-activity li {
    display: grid;
  }

  .admin-header-actions,
  .admin-contact-actions,
  .admin-detail-actions {
    display: grid;
  }

  .admin-header-actions .btn,
  .admin-contact-actions .btn,
  .admin-detail-actions .btn {
    width: 100%;
  }

  .quote-progress-copy {
    display: grid;
    gap: 4px;
  }

  .quote-step-head {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .quote-question-icon {
    width: 40px;
    height: 40px;
  }

  .quote-visual-grid .quote-option-card {
    min-height: 76px;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 12px;
  }

  .quote-visual-grid .quote-option-icon {
    width: 44px;
    height: 44px;
  }

  .quote-actions {
    display: grid;
  }

  .quote-actions .btn {
    width: 100%;
  }

  .cookie-banner {
    bottom: 76px;
    align-items: stretch;
  }

  .cookie-banner-copy {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .cookie-banner-icon {
    width: 42px;
    height: 42px;
    font-size: 1.12rem;
  }

  .cookie-banner-actions,
  .cookie-modal-actions,
  .cookie-manager-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions .btn,
  .cookie-modal-actions .btn,
  .cookie-manager-actions .btn {
    width: 100%;
  }

  .cookie-modal-backdrop {
    padding: 12px;
    align-items: flex-end;
  }

  .cookie-modal {
    max-height: calc(100svh - 24px);
    padding: 22px;
  }

  .cookie-modal-head {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .cookie-icon-button {
    width: 42px;
    height: 42px;
  }

  .cookie-manager-panel,
  .cookie-scan-panel,
  .cookie-declaration {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-cta,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .blog-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .reading-progress {
    top: 0;
  }

  .form-options {
    display: grid;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--white);
    box-shadow: 0 -8px 22px rgba(7, 25, 54, 0.14);
  }

  .mobile-sticky-cta a {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    background: var(--red);
    font-weight: 900;
  }

  .mobile-sticky-cta a + a {
    background: var(--navy);
  }

  .mobile-sticky-cta a:nth-child(2) {
    background: #0b6f57;
  }
}

@media (max-width: 520px) {
  .topbar-inner,
  .nav-shell,
  .hero-content,
  .section,
  .page-hero,
  .article-hero,
  .article-shell,
  .quick-fact-strip,
  .trust-strip,
  .area-band,
  .footer-cta,
  .footer-grid,
  .footer-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-mark img {
    width: 168px;
  }

  .main-nav {
    inset: 112px 0 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .skyline-silhouette {
    margin-right: -18px;
  }

  .hero-content {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: 2.25rem;
  }

  .coverage-map-shell,
  .coverage-map,
  .coverage-map img,
  .coverage-map-loading {
    min-height: 320px;
  }

  .coverage-map-badge {
    top: 12px;
    left: 12px;
    min-width: 96px;
    padding: 11px 12px;
  }

  .coverage-map-badge strong {
    font-size: 1.35rem;
  }

  .coverage-check-card h2 {
    font-size: 1.75rem;
  }

  .section-intro h2,
  .area-band h2,
  .footer-cta h2 {
    font-size: 1.95rem;
  }

  .card-body,
  .aside-box,
  .content-card,
  .cookie-manager-panel,
  .cookie-scan-panel,
  .cookie-declaration,
  .next-steps-panel,
  .contact-card,
  .contact-form,
  .area-panel {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .cookie-banner {
    bottom: 12px;
    width: calc(100vw - 24px);
    max-height: none;
    overflow: visible;
    padding: 10px 12px;
    grid-template-columns: 1fr;
    gap: 9px;
    align-items: stretch;
  }

  .cookie-banner-copy {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .cookie-banner-icon {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .cookie-banner .eyebrow {
    display: none;
  }

  .cookie-banner h2 {
    margin-bottom: 3px;
    font-size: 1.02rem;
    line-height: 1.12;
  }

  .cookie-banner p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.28;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .cookie-banner a {
    margin-top: 4px;
    font-size: 0.78rem;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .cookie-banner-actions .btn {
    min-height: 38px;
    width: 100%;
    padding: 0 8px;
    font-size: 0.79rem;
  }

  .cookie-banner-actions .cookie-text-button {
    grid-column: 1 / -1;
    justify-self: center;
    font-size: 0.76rem;
  }
}
