:root {
  --ink: #17202a;
  --muted: #5d6975;
  --line: #d8ded8;
  --paper: #eeefea;
  --soft: #f5f6f1;
  --teal: #206b69;
  --teal-dark: #5CC6C2;
  --teal-contrast: #206b69;
  --amber: #f28c28;
  --amber-dark: #c76c12;
  --green: #5d8f63;
  --shadow: 0 18px 50px rgba(23, 32, 42, 0.12);
  --shadow-soft: 0 14px 38px rgba(23, 32, 42, 0.08);
  --shadow-strong: 0 24px 70px rgba(23, 32, 42, 0.18);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: 3.15rem;
  margin-bottom: 22px;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

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

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--paper);
  border: 2px solid var(--teal);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 5vw;
  background: rgba(238, 239, 234, 0.94);
  border-bottom: 1px solid rgba(216, 222, 216, 0.8);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.site-header.header-scrolled {
  background: rgba(238, 239, 234, 0.98);
  border-color: rgba(216, 222, 216, 0.55);
  box-shadow: 0 12px 36px rgba(23, 32, 42, 0.08);
}

.brand img {
  width: 250px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.site-nav > a,
.nav-dropdown summary,
.header-phone {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #26323e;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible,
.nav-dropdown[open] summary {
  background: #f7eadb;
  color: var(--amber-dark);
}

.header-phone:hover,
.header-phone:focus-visible {
  background: #e3eeec;
  color: var(--teal-contrast);
}

.site-nav > a::after,
.nav-dropdown summary::before {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 6px;
  left: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.nav-dropdown summary:hover::before,
.nav-dropdown summary:focus-visible::before,
.nav-dropdown[open] summary::before {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  border: 0;
  background: transparent;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-chevron {
  width: 8px;
  height: 8px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.22s ease;
}

.nav-dropdown[open] .nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.nav-mega {
  position: fixed;
  z-index: 70;
  top: calc(var(--header-h) - 6px);
  left: 50%;
  width: min(760px, 90vw);
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(242, 140, 40, 0.28);
  border-radius: 8px;
  background: rgba(238, 239, 234, 0.98);
  box-shadow: 0 24px 70px rgba(199, 108, 18, 0.17);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.18s ease, transform 0.22s var(--ease-out);
}

.nav-mega::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
}

.nav-dropdown[open] .nav-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-mega-intro {
  padding: 16px;
  border-radius: 8px;
  color: #eeefea;
  background:
    linear-gradient(135deg, rgba(238, 239, 234, 0.22), transparent 55%),
    linear-gradient(160deg, var(--amber), var(--amber-dark));
}

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

.nav-mega-intro strong {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.1;
}

.nav-mega-intro span {
  color: rgba(238, 239, 234, 0.8);
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.nav-mega-links a {
  display: grid;
  gap: 2px;
  min-height: 72px;
  align-content: center;
  padding: 11px 12px;
  border: 1px solid #d8ded8;
  border-radius: 8px;
  background: #eeefea;
  transition: transform 0.2s var(--ease-out), border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-mega-links a:hover,
.nav-mega-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 140, 40, 0.42);
  background: #f8efe6;
  box-shadow: 0 14px 34px rgba(199, 108, 18, 0.12);
}

.nav-mega-links span {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.2;
}

.nav-mega-links small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.nav-mega-links .nav-main-link {
  border-color: rgba(242, 140, 40, 0.36);
  background: #f7eadb;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.btn {
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 1px 0 rgba(238, 239, 234, 0.15) inset;
  transition: transform 0.22s var(--ease-out), background 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(23, 32, 42, 0.13);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(238, 239, 234, 0.32) 45%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  transform: translateX(120%);
}

.btn svg,
.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  color: #eeefea;
  background: var(--amber);
  border-color: var(--amber);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
}

.btn-secondary {
  color: #eeefea;
  background: var(--teal);
  border-color: var(--teal);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--ink);
  background: var(--teal-dark);
}

.btn-ghost {
  background: rgba(238, 239, 234, 0.14);
  color: #eeefea;
  border-color: rgba(238, 239, 234, 0.45);
}

.section .btn-ghost,
.simple-hero .btn-ghost {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.btn-small {
  min-height: 42px;
  padding: 9px 13px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-row.stack {
  flex-direction: column;
  align-items: stretch;
}

.home-hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #102135;
}

.home-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(15, 24, 33, 0.48), transparent);
  pointer-events: none;
  z-index: 1;
}

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

.hero-bg img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
  animation: hero-drift 14s var(--ease-out) both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 24, 33, 0.88) 0%, rgba(15, 24, 33, 0.66) 44%, rgba(15, 24, 33, 0.16) 100%),
    linear-gradient(0deg, rgba(15, 24, 33, 0.35), rgba(15, 24, 33, 0.08));
}

.home-hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 72px 0;
  color: #eeefea;
  animation: hero-copy-in 0.58s var(--ease-out) both;
}

.home-hero-content p {
  max-width: 690px;
  color: rgba(238, 239, 234, 0.88);
  font-size: 1.12rem;
}

.eyebrow {
  color: var(--teal);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.home-hero .eyebrow,
.page-hero .eyebrow {
  color: #5CC6C2;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(238, 239, 234, 0.25);
  border-radius: 8px;
  background: rgba(238, 239, 234, 0.1);
  color: rgba(238, 239, 234, 0.92);
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.quick-entry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-entry a {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  background: var(--paper);
  transition: transform 0.24s var(--ease-out), background 0.24s ease, box-shadow 0.24s ease;
}

.quick-entry a::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

.quick-entry a:hover,
.quick-entry a:focus-visible {
  background: #f6f7f2;
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  z-index: 1;
}

.quick-entry a:hover::after,
.quick-entry a:focus-visible::after {
  transform: scaleX(1);
}

.quick-entry img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.quick-entry strong {
  font-size: 1.15rem;
}

.quick-entry em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.45;
}

.section {
  padding: 80px 0;
}

.section-muted {
  background: var(--soft);
}

.section-inner {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(840px, 90vw);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

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

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 0 0 rgba(23, 32, 42, 0);
  transition: transform 0.26s var(--ease-out), border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92, 198, 194, 0.08), transparent 42%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(92, 198, 194, 0.45);
  box-shadow: 0 18px 46px rgba(92, 198, 194, 0.15);
}

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

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card.compact {
  min-height: 188px;
}

.card-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.service-card strong {
  color: var(--ink);
  font-size: 1.08rem;
}

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

.service-card small {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 800;
  transition: color 0.2s ease, transform 0.24s var(--ease-out);
}

.service-card:hover small,
.service-card:focus-visible small {
  color: var(--amber-dark);
  transform: translateX(3px);
}

.two-col,
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.two-col.reverse > picture:first-child {
  order: 2;
}

.check-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(23, 32, 42, 0.06);
}

.check-panel div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-panel svg {
  color: var(--green);
  margin-top: 3px;
}

.image-panel,
.image-panel img {
  width: 100%;
}

.image-panel img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.55s var(--ease-out), box-shadow 0.3s ease, filter 0.3s ease;
}

.image-panel:hover img {
  transform: translateY(-4px) scale(1.015);
  box-shadow: var(--shadow-strong);
  filter: saturate(1.04);
}

.steps {
  display: grid;
  gap: 16px;
}

.steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 0 0 rgba(23, 32, 42, 0);
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s ease, border-color 0.24s ease;
}

.steps div:hover {
  transform: translateX(4px);
  border-color: rgba(92, 198, 194, 0.34);
  box-shadow: var(--shadow-soft);
}

.steps span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #eeefea;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  margin: 0;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: #102135;
}

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

.page-hero-media img {
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 24, 33, 0.88) 0%, rgba(15, 24, 33, 0.62) 48%, rgba(15, 24, 33, 0.22) 100%),
    linear-gradient(0deg, rgba(15, 24, 33, 0.34), rgba(15, 24, 33, 0.1));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 90vw);
  margin: 0 auto;
  padding: 84px 0;
  color: #eeefea;
  animation: hero-copy-in 0.58s var(--ease-out) both;
}

.page-hero-content p {
  max-width: 700px;
  color: rgba(238, 239, 234, 0.88);
  font-size: 1.08rem;
}

.simple-hero {
  padding: 92px 0 64px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.simple-hero h1 {
  color: var(--ink);
}

.split-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 28px;
  align-items: center;
}

.cta-band {
  color: #eeefea;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.28), transparent 42%),
    #173f6f;
}

.cta-band p {
  color: rgba(238, 239, 234, 0.78);
}

.cta-band .eyebrow {
  color: #5CC6C2;
}

.text-list p {
  padding-left: 18px;
  border-left: 3px solid var(--teal);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 0 0 rgba(23, 32, 42, 0);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

details:hover,
details[open] {
  border-color: rgba(92, 198, 194, 0.28);
  box-shadow: var(--shadow-soft);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  transition: color 0.2s ease;
}

details[open] summary {
  color: var(--teal-contrast);
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.faq-action {
  margin: 0 20px 20px;
}

.internal-links {
  background: var(--paper);
}

.quick-anchor-nav {
  position: sticky;
  top: 84px;
  z-index: 20;
  margin-top: -1px;
  border-block: 1px solid rgba(16, 33, 53, 0.08);
  background: rgba(248, 249, 244, 0.88);
  backdrop-filter: blur(16px);
}

.quick-anchor-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 12px;
}

.quick-anchor-inner a,
.project-badges span,
.project-badges a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(92, 198, 194, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-contrast);
  font-weight: 850;
  font-size: 0.9rem;
}

.quick-anchor-inner a:hover,
.quick-anchor-inner a:focus-visible {
  color: var(--amber-dark);
  border-color: rgba(242, 140, 40, 0.32);
  background: #fff8ed;
}

.project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.home-hero .project-badges span,
.home-hero .project-badges a,
.page-hero .project-badges span,
.page-hero .project-badges a {
  background: rgba(238, 239, 234, 0.12);
  color: #eeefea;
  border-color: rgba(238, 239, 234, 0.22);
}

.project-badges a:hover,
.project-badges a:focus-visible {
  color: var(--amber-dark);
  border-color: rgba(242, 140, 40, 0.4);
  background: #fff8ed;
}

.home-hero .project-badges a:hover,
.home-hero .project-badges a:focus-visible,
.page-hero .project-badges a:hover,
.page-hero .project-badges a:focus-visible {
  color: #102135;
  border-color: rgba(242, 140, 40, 0.72);
  background: #f7dcc2;
}

.mission-journey {
  background:
    linear-gradient(90deg, rgba(92, 198, 194, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(92, 198, 194, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.journey-heading {
  max-width: 820px;
}

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

.journey-track::before {
  content: "";
  position: absolute;
  top: 44px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(92, 198, 194, 0.18), rgba(242, 140, 40, 0.32));
}

.journey-track article {
  position: relative;
  z-index: 1;
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(16, 33, 53, 0.1);
  border-radius: 8px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-neu);
}

.journey-track article span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #102135;
  color: #eeefea;
  font-weight: 900;
}

.journey-track article:nth-child(2) span {
  background: var(--teal);
}

.journey-track article:nth-child(3) span {
  background: var(--amber);
}

.journey-track article h3 {
  margin: 0;
}

.journey-track article p {
  margin: 0;
  color: #526276;
}

.prep-card-grid article,
.same-city-inner,
.city-editorial-cards article,
.mini-faq-grid {
  border: 1px solid rgba(16, 33, 53, 0.1);
  border-radius: 8px;
  background: var(--surface-raised);
  box-shadow: var(--shadow-neu);
}

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

.prep-card-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 22px;
}

.prep-card-grid article span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #dff2f0;
  color: var(--teal-contrast);
}

.prep-card-grid svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.same-city-nav {
  padding: 26px 0;
  background: linear-gradient(180deg, #f7f8f3, #eef1ec);
}

.same-city-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
}

.same-city-inner h2 {
  max-width: none;
  font-size: clamp(1.22rem, 1.45vw, 1.48rem);
  line-height: 1.14;
}

.same-city-head {
  display: grid;
  gap: 8px;
}

.same-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.same-city-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(92, 198, 194, 0.22);
  border-radius: 8px;
  background: rgba(247, 248, 244, 0.88);
  color: var(--teal-contrast);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
  transition: transform 180ms var(--ease-out), border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.same-city-links a:hover,
.same-city-links a:focus-visible {
  border-color: rgba(92, 198, 194, 0.46);
  background: #eefaf8;
  color: #102135;
  transform: translateY(-2px);
}

.same-city-links a.is-current {
  border-color: rgba(92, 198, 194, 0.45);
  background: #dff2f0;
  color: #102135;
  box-shadow: inset 0 0 0 1px rgba(32, 107, 105, 0.1);
}

.mini-faq-grid,
.city-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.mini-faq-grid {
  padding: 24px;
}

.city-editorial-cards {
  display: grid;
  gap: 12px;
}

.city-editorial-cards article {
  padding: 18px;
}

.city-editorial-cards p {
  margin: 6px 0 0;
}

.city-sector-grid {
  display: grid;
  gap: 12px;
  padding: 0 clamp(18px, 2.4vw, 28px) clamp(20px, 2.6vw, 30px);
}

.city-sector-details {
  border: 1px solid rgba(16, 33, 53, 0.1);
  background: var(--surface-raised);
  box-shadow: var(--shadow-neu);
}

.city-sector-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px clamp(18px, 2.2vw, 24px);
  color: var(--ink);
}

.city-sector-details > summary em {
  color: var(--teal-contrast);
  font-style: normal;
  font-weight: 850;
}

.city-sector-details > summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #dff0ee;
  color: var(--teal-contrast);
  font-weight: 900;
}

.city-sector-details[open] > summary::after {
  content: "-";
}

.commune-switchboard {
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(242, 140, 40, 0.1), transparent 38%),
    #eef1ec;
}

.commune-switchboard-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.commune-switchboard-head p:not(.eyebrow) {
  max-width: 760px;
}

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

.commune-card {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(16, 33, 53, 0.08);
  border-radius: 8px;
  background: #f8f9f4;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.07);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease, border-color 0.22s ease;
}

.commune-card:hover {
  transform: translateY(-3px);
  border-color: rgba(92, 198, 194, 0.24);
  box-shadow: 0 24px 62px rgba(17, 24, 39, 0.11);
}

.commune-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 104px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(223, 242, 240, 0.5)),
    #f8f9f4;
}

.commune-card-top strong,
.commune-card-top small {
  display: block;
}

.commune-card-top strong {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.05;
}

.commune-card-top small {
  margin-top: 6px;
  color: #526276;
  font-size: 0.9rem;
  font-weight: 760;
}

.commune-hub-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(92, 198, 194, 0.22);
  border-radius: 999px;
  background: #dff2f0;
  color: var(--teal-contrast);
  font-size: 0.85rem;
  font-weight: 850;
  white-space: nowrap;
}

.commune-card-details {
  border: 0;
  border-top: 1px solid rgba(16, 33, 53, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.commune-card-details:hover,
.commune-card-details[open] {
  border-color: rgba(16, 33, 53, 0.08);
  box-shadow: none;
}

.commune-card summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 14px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
}

.commune-card summary::-webkit-details-marker {
  display: none;
}

.commune-card summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #dff2f0;
  color: var(--teal-contrast);
  font-size: 1.08rem;
  font-weight: 900;
}

.commune-card-details[open] summary {
  color: #eeefea;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.28), rgba(242, 140, 40, 0.1)),
    #102135;
}

.commune-card-details[open] summary::after {
  content: "-";
  color: #102135;
  background: #f7dcc2;
}

.commune-card summary em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(92, 198, 194, 0.14);
  color: var(--teal-contrast);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.commune-card-details[open] summary em {
  background: rgba(238, 239, 234, 0.12);
  color: #eeefea;
}

.commune-card-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(238, 242, 237, 0.9), rgba(248, 249, 244, 0.96));
}

.commune-card-links a {
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 33, 53, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-contrast);
  font-weight: 820;
  transition: transform 0.18s var(--ease-out), border-color 0.18s ease, background 0.18s ease;
}

.commune-card-links a:hover,
.commune-card-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 140, 40, 0.34);
  background: #fff8ed;
}

.commune-card-links a small {
  color: #526276;
  font-size: 0.78rem;
  font-weight: 760;
}

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

.link-group {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s ease, border-color 0.24s ease;
}

.link-group:hover {
  transform: translateY(-4px);
  border-color: rgba(92, 198, 194, 0.28);
  box-shadow: var(--shadow-soft);
}

.link-group h3 {
  margin-bottom: 4px;
}

.link-group a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  color: var(--teal-contrast);
  border-top: 1px solid #d8ded8;
  font-weight: 760;
  transition: color 0.18s ease, transform 0.2s var(--ease-out);
}

.link-group a.link-group-main {
  margin-bottom: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(92, 198, 194, 0.22);
  border-radius: 8px;
  background: #dff2f0;
}

.link-group a:hover,
.link-group a:focus-visible {
  color: var(--amber-dark);
  transform: translateX(3px);
}

.sources {
  padding-top: 48px;
}

.sources ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.sources a {
  color: var(--teal-contrast);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 0 clamp(14px, 2vw, 20px) 18px;
}

.city-grid a {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: #26323e;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.18s var(--ease-out), color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.city-grid a:hover,
.city-grid a:focus-visible {
  color: #eeefea;
  border-color: var(--teal);
  background: var(--teal);
  transform: translateY(-2px);
}

.city-list-details {
  border: 0;
  background: transparent;
}

.city-list-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.city-list-details > summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #dff0ee;
  color: var(--teal-contrast);
  font-weight: 900;
  flex: 0 0 auto;
}

.city-list-details[open] > summary::after {
  content: "-";
}

.city-list-details p {
  max-width: 720px;
  padding: 22px clamp(18px, 2.4vw, 28px) 18px;
}

.contact-section {
  padding: 80px 0;
  background: #102135;
  color: #eeefea;
}

.contact-section p {
  color: rgba(238, 239, 234, 0.75);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 48px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(238, 239, 234, 0.92);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(238, 239, 234, 0.18);
  border-radius: 8px;
  background: rgba(238, 239, 234, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(238, 239, 234, 0.86);
  font-weight: 750;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(238, 239, 234, 0.22);
  border-radius: 8px;
  padding: 12px 13px;
  color: #eeefea;
  background: rgba(0, 0, 0, 0.22);
  font: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #5CC6C2;
  border-color: #5CC6C2;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 4px rgba(158, 226, 214, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.84rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 5vw 34px;
  background: #14263c;
  color: rgba(238, 239, 234, 0.78);
}

.footer-bottom img {
  filter: brightness(1.05);
  margin-bottom: 10px;
}

.footer-bottom p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(238, 239, 234, 0.68);
  font-size: 0.9rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: start;
  justify-content: flex-end;
}

.footer-bottom a {
  color: rgba(238, 239, 234, 0.82);
  font-weight: 700;
}

.mobile-call {
  display: none;
}

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

.legal-content h2 {
  margin-top: 36px;
}

.legal-content a {
  color: var(--teal-contrast);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item.reveal-left {
  transform: translateX(-24px);
}

.reveal-item.reveal-right {
  transform: translateX(24px);
}

.reveal-item.reveal-left.is-visible,
.reveal-item.reveal-right.is-visible {
  transform: translateX(0);
}

@keyframes hero-copy-in {
  from {
    opacity: 0.45;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.055);
  }

  to {
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-item,
  .reveal-item.reveal-left,
  .reveal-item.reveal-right {
    opacity: 1;
    transform: none;
  }

}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 220px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-actions {
    grid-column: 1 / -1;
    display: flex;
  }

  .site-header.nav-open .site-nav {
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .nav-dropdown summary {
    width: 100%;
    justify-content: space-between;
  }

  .nav-mega {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin: 6px 0 10px;
    padding: 12px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border-color: rgba(242, 140, 40, 0.24);
    background: #f8efe6;
  }

  .nav-mega::before {
    display: none;
  }

  .nav-dropdown:not([open]) .nav-mega {
    display: none;
  }

  .nav-dropdown[open] .nav-mega {
    transform: none;
  }

  .nav-mega-intro {
    padding: 13px;
  }

  .nav-mega-links {
    grid-template-columns: 1fr;
  }

  .site-header.nav-open .header-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .quick-entry {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.72rem;
  }

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

  .brand img {
    width: 190px;
  }

  .home-hero {
    min-height: 68svh;
  }

  .home-hero-content,
  .page-hero-content {
    width: min(100% - 36px, 1120px);
    padding: 52px 0;
  }

  .hero-overlay,
  .page-hero::after {
    background: linear-gradient(90deg, rgba(15, 24, 33, 0.9), rgba(15, 24, 33, 0.56));
  }

  .cta-row {
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
  }

  .quick-entry,
  .card-grid.four,
  .two-col,
  .feature-grid,
  .split-cta,
  .contact-grid,
  .link-cluster,
  .commune-card-grid,
  .commune-switchboard-head {
    grid-template-columns: 1fr;
  }

  .quick-entry a {
    min-height: 132px;
  }

  .section {
    padding: 58px 0;
  }

  .page-hero {
    min-height: 470px;
  }

  .two-col.reverse > picture:first-child {
    order: 0;
  }

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

  .commune-card summary {
    min-height: 82px;
  }

  .commune-card-top {
    min-height: 84px;
    padding: 18px;
  }

  .commune-card-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    padding-bottom: 84px;
  }

  .footer-bottom nav {
    justify-content: flex-start;
  }

  .mobile-call {
    display: none;
  }
}

@media (max-width: 460px) {
  .brand img {
    width: 168px;
  }

  h1 {
    font-size: 1.82rem;
  }

  h2 {
    font-size: 1.48rem;
  }

  .hero-proof {
    display: grid;
  }

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

  .service-card {
    min-height: 0;
  }
}

/* Modern visual refresh */
:root {
  --ink: #102135;
  --muted: #536172;
  --line: #d8ded8;
  --paper: #eeefea;
  --soft: #e6ebe5;
  --soft-strong: #dfe8e5;
  --teal: #206b69;
  --teal-dark: #5CC6C2;
  --teal-contrast: #206b69;
  --amber: #f28c28;
  --amber-dark: #c76c12;
  --blue: #4B79B5;
  --coral: #e46f2e;
  --green: #4f8f62;
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.13);
  --shadow-soft: 0 18px 46px rgba(17, 24, 39, 0.09);
  --shadow-strong: 0 30px 82px rgba(17, 24, 39, 0.2);
  --header-h: 76px;
}

::selection {
  color: var(--ink);
  background: var(--teal-dark);
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #eeefea 0%, #f6f7f2 38%, #eeefea 100%);
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  color: var(--ink);
}

h1 {
  font-size: 3.55rem;
  line-height: 1.02;
}

h2 {
  font-size: 2.35rem;
}

p {
  color: var(--muted);
}

.site-header {
  min-height: var(--header-h);
  gap: 26px;
  padding: 12px 5vw;
  background: rgba(238, 239, 234, 0.9);
  border-bottom: 1px solid rgba(216, 222, 216, 0.72);
  box-shadow: 0 1px 0 rgba(238, 239, 234, 0.9) inset;
}

.site-header.header-scrolled {
  background: rgba(238, 239, 234, 0.97);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.1);
}

.brand img {
  width: 248px;
}

.site-nav {
  gap: 4px;
}

.site-nav > a,
.nav-dropdown summary,
.header-phone {
  border: 1px solid transparent;
  color: #202a36;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible,
.nav-dropdown[open] summary {
  background: #f6ebdf;
  border-color: rgba(242, 140, 40, 0.22);
  color: var(--amber-dark);
}

.header-phone:hover,
.header-phone:focus-visible {
  background: #dff2f0;
  border-color: rgba(92, 198, 194, 0.18);
}

.nav-mega {
  border-color: rgba(92, 198, 194, 0.14);
  background: rgba(238, 239, 234, 0.98);
  box-shadow: 0 30px 82px rgba(17, 24, 39, 0.18);
}

.nav-mega-intro {
  background:
    linear-gradient(135deg, rgba(238, 239, 234, 0.2), transparent 58%),
    linear-gradient(145deg, #315f99, var(--teal));
}

.nav-mega-links a {
  border-color: rgba(216, 222, 216, 0.92);
  background: linear-gradient(180deg, #eeefea, #f7f8f3);
}

.nav-mega-links a:hover,
.nav-mega-links a:focus-visible {
  border-color: rgba(242, 140, 40, 0.42);
  background: #f8efe6;
  box-shadow: 0 16px 40px rgba(199, 108, 18, 0.13);
}

.nav-mega-links .nav-main-link {
  border-color: rgba(92, 198, 194, 0.28);
  background: #ddf2ef;
}

.btn {
  min-height: 50px;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(238, 239, 234, 0.22) inset;
}

.btn-primary {
  color: #eeefea;
  background: linear-gradient(135deg, var(--amber), #e46f2e);
  border-color: rgba(242, 140, 40, 0.8);
  box-shadow: 0 16px 32px rgba(228, 111, 46, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #f59b3d, var(--amber-dark));
  border-color: rgba(199, 108, 18, 0.88);
}

.btn-secondary {
  color: #eeefea;
  background: var(--teal);
  border-color: rgba(92, 198, 194, 0.8);
  box-shadow: 0 16px 32px rgba(92, 198, 194, 0.22);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--ink);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
}

.btn-ghost {
  background: rgba(238, 239, 234, 0.12);
  border-color: rgba(238, 239, 234, 0.42);
  box-shadow: none;
}

.section .btn-ghost,
.simple-hero .btn-ghost {
  background: #eeefea;
  border-color: rgba(216, 222, 216, 0.98);
}

.home-hero {
  min-height: min(760px, 74svh);
  isolation: isolate;
  background: #102135;
}

.home-hero::before,
.page-hero::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(238, 239, 234, 0.1) 0 1px, transparent 1px 34px),
    linear-gradient(45deg, rgba(238, 239, 234, 0.06) 0 1px, transparent 1px 42px);
  opacity: 0.28;
  pointer-events: none;
}

.home-hero::before {
  z-index: 1;
}

.home-hero::after {
  height: 42%;
  background: linear-gradient(0deg, rgba(16, 33, 53, 0.82), transparent);
}

.hero-bg img {
  filter: saturate(1.08) contrast(1.05);
}

.hero-overlay {
  background:
    linear-gradient(100deg, rgba(16, 33, 53, 0.93) 0%, rgba(16, 33, 53, 0.72) 42%, rgba(16, 33, 53, 0.1) 100%),
    linear-gradient(0deg, rgba(92, 198, 194, 0.28), rgba(16, 33, 53, 0.08));
  z-index: 1;
}

.home-hero-content,
.page-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  width: min(1180px, 90vw);
  padding: 78px 0 92px;
}

.hero-copy {
  min-width: 0;
}

.home-hero-content h1,
.page-hero-content h1,
.home-hero-content .hero-copy > p,
.page-hero-content .hero-copy > p {
  max-width: 760px;
}

.home-hero-content h1,
.page-hero-content h1 {
  color: #eeefea;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
}

.home-hero-content .hero-copy > p,
.page-hero-content .hero-copy > p {
  color: rgba(238, 239, 234, 0.9);
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(92, 198, 194, 0.18);
  border-radius: 8px;
  background: rgba(92, 198, 194, 0.08);
  color: var(--teal-contrast);
}

.home-hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow,
.contact-section .eyebrow {
  color: #c8efec;
  border-color: rgba(200, 239, 236, 0.24);
  background: rgba(92, 198, 194, 0.28);
}

.hero-proof {
  margin-top: 30px;
}

.hero-proof span {
  border-color: rgba(238, 239, 234, 0.26);
  background: rgba(238, 239, 234, 0.12);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.hero-dashboard {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  animation: dashboard-in 0.72s var(--ease-out) both 0.08s;
}

.hero-dashboard::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(238, 239, 234, 0.16);
  border-radius: 8px;
  transform: rotate(-1.5deg);
  pointer-events: none;
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(238, 239, 234, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(238, 239, 234, 0.92), rgba(246, 247, 242, 0.86));
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
}

.dashboard-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-card-head strong {
  padding: 5px 8px;
  border-radius: 8px;
  background: #254f82;
  color: #eeefea;
  letter-spacing: 0;
}

.dashboard-kicker {
  margin-bottom: 6px;
  color: var(--teal-contrast) !important;
  font-size: 0.86rem !important;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-title {
  display: block;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.16;
}

.energy-scale {
  display: grid;
  gap: 7px;
  margin-top: 20px;
}

.energy-row {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  color: #eeefea;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}

.energy-row b,
.energy-row em {
  font-style: normal;
  line-height: 1;
}

.energy-row em {
  font-size: 0.78rem;
  opacity: 0.9;
}

.energy-a {
  width: 60%;
  background: #17a56b;
}

.energy-b {
  width: 70%;
  background: #73b843;
}

.energy-c {
  width: 80%;
  background: #f0b92e;
}

.energy-d {
  width: 90%;
  background: #e46f2e;
}

.dashboard-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-mini-grid div {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(238, 239, 234, 0.2);
  border-radius: 8px;
  background: rgba(238, 239, 234, 0.13);
  color: #eeefea;
  backdrop-filter: blur(16px);
}

.dashboard-mini-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(238, 239, 234, 0.16);
  color: #c8efec;
}

.dashboard-mini-grid strong {
  font-size: 0.82rem;
  line-height: 1.18;
}

.dashboard-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.dashboard-flow span {
  display: grid;
  gap: 8px;
  padding: 13px 10px;
  border: 1px solid rgba(92, 198, 194, 0.16);
  border-radius: 8px;
  background: #eaf7f5;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
  text-align: center;
}

.dashboard-flow b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--teal);
  color: #eeefea;
}

.dashboard-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 14px;
  border-radius: 8px;
  background: #254f82;
  color: #eeefea;
  font-weight: 760;
}

.dashboard-note svg {
  color: #5CC6C2;
  margin-top: 2px;
}

.quick-entry {
  position: relative;
  z-index: 4;
  width: min(1120px, 90vw);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: -38px auto 0;
  background: transparent;
  border: 0;
}

.quick-entry a {
  min-height: 188px;
  padding: 22px;
  border: 1px solid rgba(216, 222, 216, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 239, 234, 0.98), rgba(246, 247, 242, 0.98));
  box-shadow: var(--shadow-soft);
}

.quick-entry a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.quick-entry a::after {
  inset: auto 20px 18px 20px;
  height: 2px;
  background: rgba(92, 198, 194, 0.24);
}

.quick-entry a:hover,
.quick-entry a:focus-visible {
  background: #eeefea;
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.14);
}

.quick-entry a:hover::before,
.quick-entry a:focus-visible::before {
  transform: scaleX(1);
}

.quick-entry span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f8eadb;
}

.quick-entry a:nth-child(2) span {
  background: #e0f3f0;
}

.quick-entry a:nth-child(3) span {
  background: #e3ebf6;
}

.quick-entry a:nth-child(4) span {
  background: #f7e5df;
}

.quick-entry strong {
  font-size: 1.2rem;
}

.quick-entry em {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.trust-strip {
  padding: 28px 0 10px;
  background: #eeefea;
}

.page-hero + .trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -34px;
  padding-top: 0;
  background: transparent;
}

.quick-entry + .trust-strip {
  padding-top: 26px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-strip-inner > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(216, 222, 216, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(238, 239, 234, 0.98), rgba(246, 247, 242, 0.98));
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
}

.trust-strip-inner span {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #dff2f0;
  color: var(--teal-contrast);
}

.trust-strip-inner strong {
  color: var(--ink);
  line-height: 1.15;
}

.trust-strip-inner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.section {
  position: relative;
  padding: 86px 0;
  background: #eeefea;
}

.section-muted {
  background:
    linear-gradient(180deg, var(--soft) 0%, #f4f5ef 100%);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 680px;
}

.card-grid {
  gap: 20px;
}

.service-card {
  min-height: 254px;
  padding: 24px;
  border-color: rgba(216, 222, 216, 0.96);
  background:
    linear-gradient(180deg, #eeefea 0%, #f7f8f3 100%);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.service-card::before {
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(242, 140, 40, 0.08), transparent 28%);
}

.service-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(92, 198, 194, 0.34), rgba(242, 140, 40, 0.22));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(92, 198, 194, 0.34);
  box-shadow: 0 24px 60px rgba(92, 198, 194, 0.15);
}

.service-card:hover::after,
.service-card:focus-visible::after {
  transform: scaleX(1);
}

.card-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f8eadb;
}

.service-card:nth-child(2n) .card-icon {
  background: #dff2f0;
}

.service-card:nth-child(3n) .card-icon {
  background: #e3ebf6;
}

.card-icon img {
  width: 48px;
  height: 48px;
}

.service-card strong {
  font-size: 1.16rem;
}

.service-card small {
  color: var(--teal-contrast);
}

.two-col,
.feature-grid {
  gap: clamp(34px, 5vw, 62px);
}

.check-panel {
  padding: 26px;
  border-color: rgba(216, 222, 216, 0.95);
  background:
    linear-gradient(180deg, #eeefea, #f7f8f3);
  box-shadow: var(--shadow-soft);
}

.check-panel div {
  padding: 4px 0;
}

.check-panel svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.check-panel-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: rgba(92, 198, 194, 0.35);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.check-panel-link:hover,
.check-panel-link:focus-visible {
  color: var(--teal-contrast);
  text-decoration-color: currentColor;
}

.image-panel {
  position: relative;
  z-index: 1;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.18), rgba(242, 140, 40, 0.16));
}

.image-panel img {
  border: 1px solid rgba(238, 239, 234, 0.8);
  box-shadow: var(--shadow);
}

.steps {
  gap: 14px;
}

.steps div {
  padding: 20px;
  border-color: rgba(216, 222, 216, 0.95);
  background: linear-gradient(180deg, #eeefea, #f7f8f3);
}

.steps span {
  background: linear-gradient(135deg, var(--teal), #5CC6C2);
  box-shadow: 0 12px 24px rgba(92, 198, 194, 0.2);
}

.page-hero {
  min-height: 540px;
  isolation: isolate;
}

.page-hero-media img {
  filter: saturate(1.04) contrast(1.04);
}

.page-hero::before {
  z-index: 1;
}

.page-hero::after {
  background:
    linear-gradient(100deg, rgba(16, 33, 53, 0.94) 0%, rgba(16, 33, 53, 0.68) 50%, rgba(16, 33, 53, 0.16) 100%),
    linear-gradient(0deg, rgba(92, 198, 194, 0.22), rgba(16, 33, 53, 0.08));
}

.page-hero-content {
  z-index: 2;
}

.split-cta {
  padding: 30px;
  border: 1px solid rgba(216, 222, 216, 0.72);
  border-radius: 8px;
  background: rgba(238, 239, 234, 0.52);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.07);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.3), transparent 48%),
    linear-gradient(145deg, #102135, #4B79B5);
}

.cta-band .split-cta {
  position: relative;
  overflow: hidden;
  border-color: rgba(238, 239, 234, 0.16);
  background: rgba(238, 239, 234, 0.06);
  box-shadow: none;
}

.cta-band .split-cta::before,
.cta-band .split-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.cta-band .split-cta::before {
  width: 154px;
  height: 154px;
  right: 24px;
  top: -46px;
  border: 2px dashed rgba(238, 239, 234, 0.24);
  animation: cta-ring-float 8s ease-in-out infinite;
}

.cta-band .split-cta::after {
  width: 248px;
  height: 160px;
  right: -18px;
  top: 34px;
  border: 1px solid rgba(238, 239, 234, 0.16);
  opacity: 0.76;
  animation: cta-ring-drift 10s ease-in-out infinite;
}

.cta-band .split-cta > * {
  position: relative;
  z-index: 1;
}

.text-list p {
  padding: 16px 18px;
  border: 1px solid rgba(216, 222, 216, 0.95);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #eeefea;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

details {
  border-color: rgba(216, 222, 216, 0.95);
  background: #eeefea;
}

details:hover,
details[open] {
  border-color: rgba(92, 198, 194, 0.28);
  box-shadow: var(--shadow-soft);
}

.link-cluster {
  gap: 20px;
}

.link-group {
  border-color: rgba(216, 222, 216, 0.95);
  background: linear-gradient(180deg, #eeefea, #f7f8f3);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.link-group a {
  color: var(--teal-contrast);
}

.city-grid a {
  background: #eeefea;
}

.city-list-details > summary {
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.28), transparent 48%),
    linear-gradient(145deg, #172d46, #315f99 62%, #14263c);
}

.contact-section::before {
  z-index: -1;
}

.contact-form {
  padding: 26px;
  border-color: rgba(238, 239, 234, 0.2);
  background: rgba(238, 239, 234, 0.1);
  backdrop-filter: blur(18px);
}

.contact-form input,
.contact-form textarea {
  background: rgba(5, 10, 15, 0.34);
}

.footer-bottom {
  background: #12243a;
}

.home-dashboard .dashboard-card {
  background:
    linear-gradient(145deg, rgba(238, 239, 234, 0.98), rgba(246, 247, 242, 0.96));
}

.home-dashboard .dashboard-mini-grid div {
  background: rgba(16, 33, 53, 0.46);
}

.proof-numbers {
  padding: 58px 0;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.28), transparent 42%),
    linear-gradient(145deg, #12243a, #254f82 62%, #14263c);
  color: #eeefea;
}

.proof-numbers-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(238, 239, 234, 0.16);
  border-bottom: 1px solid rgba(238, 239, 234, 0.16);
}

.proof-numbers-inner > div {
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border-right: 1px solid rgba(238, 239, 234, 0.16);
}

.proof-numbers-inner > div:last-child {
  border-right: 0;
}

.proof-numbers strong {
  color: #eeefea;
  font-size: 4.3rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.proof-numbers span {
  max-width: 310px;
  color: rgba(238, 239, 234, 0.78);
  font-weight: 750;
  line-height: 1.45;
}

.home-impact {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: #14263c;
  color: #eeefea;
}

.home-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.14), transparent 38%),
    linear-gradient(45deg, rgba(238, 239, 234, 0.06) 0 1px, transparent 1px 46px);
  opacity: 0.72;
  pointer-events: none;
}

.home-impact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.home-impact h2 {
  max-width: 660px;
  color: #eeefea;
  font-size: 2.8rem;
}

.home-impact p {
  color: rgba(238, 239, 234, 0.74);
}

.home-impact-copy > p:last-child {
  max-width: 580px;
  font-size: 1.08rem;
}

.impact-points {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(238, 239, 234, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(238, 239, 234, 0.14);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
}

.impact-points > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 20px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(238, 239, 234, 0.08), transparent 58%),
    #102135;
}

.impact-points span {
  grid-row: span 2;
  color: #5CC6C2;
  font-size: 0.88rem;
  font-weight: 900;
}

.impact-points strong {
  color: #eeefea;
  font-size: 1.18rem;
}

.impact-points p {
  margin: 0;
}

@keyframes dashboard-in {
  from {
    opacity: 0;
    transform: translateY(16px) rotate(0.4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3rem;
  }

  .brand img {
    width: 216px;
  }

  .home-hero-content,
  .page-hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 62px 0 78px;
  }

  .hero-dashboard {
    display: none;
  }

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

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

  .proof-numbers-inner,
  .home-impact-grid {
    grid-template-columns: 1fr;
  }

  .proof-numbers-inner > div {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(238, 239, 234, 0.16);
  }

  .proof-numbers-inner > div:last-child {
    border-bottom: 0;
  }

  .home-impact h2 {
    font-size: 2.28rem;
  }

  .split-cta {
    padding: 24px;
  }
}

@media (max-width: 780px) {
  h1 {
    font-size: 2.18rem;
    line-height: 1.07;
  }

  h2 {
    font-size: 1.76rem;
  }

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

  .brand img {
    width: 188px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-content,
  .page-hero-content {
    width: min(100% - 36px, 1120px);
    padding: 52px 0 58px;
  }

  .hero-dashboard {
    display: none;
  }

  .hero-overlay,
  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(16, 33, 53, 0.93), rgba(16, 33, 53, 0.66)),
      linear-gradient(0deg, rgba(92, 198, 194, 0.2), transparent);
  }

  .quick-entry {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1px;
    margin: 0;
  }

  .quick-entry a {
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .quick-entry span {
    width: 52px;
    height: 52px;
  }

  .quick-entry + .trust-strip,
  .page-hero + .trust-strip {
    margin-top: 0;
    padding-top: 18px;
    background: #eeefea;
  }

  .trust-strip-inner > div {
    grid-template-columns: 40px 1fr;
    padding: 16px;
  }

  .trust-strip-inner span {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 60px 0;
  }

  .proof-numbers,
  .home-impact {
    padding: 58px 0;
  }

  .proof-numbers strong {
    font-size: 3.25rem;
  }

  .impact-points > div {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .impact-points span {
    grid-row: auto;
  }

  .service-card {
    min-height: 0;
  }

  .image-panel::before {
    inset: 10px -8px -8px 10px;
  }

  .split-cta {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .mobile-call {
    position: fixed;
    right: 18px;
    bottom: 16px;
    left: 18px;
    z-index: 80;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f28c28, #e46f2e);
    color: #eeefea;
    font-weight: 850;
    box-shadow: 0 18px 46px rgba(255, 95, 56, 0.34);
  }

  .mobile-action-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 10px;
    padding: 8px;
    border: 1px solid rgba(238, 239, 234, 0.2);
    border-radius: 12px;
    background: rgba(16, 33, 53, 0.88);
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.32);
    backdrop-filter: blur(16px);
  }

  .mobile-action {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    color: #eeefea;
    font-weight: 900;
    font-size: 0.92rem;
  }

  .mobile-action svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
  }

  .mobile-action-primary {
    background: linear-gradient(135deg, #f28c28, #e46f2e);
  }

  .mobile-action-secondary {
    background: rgba(92, 198, 194, 0.22);
    border: 1px solid rgba(92, 198, 194, 0.32);
  }

  .footer-bottom {
    padding-bottom: 96px;
  }
}

@media (max-width: 460px) {
  .brand img {
    width: 166px;
  }

  h1 {
    font-size: 1.9rem;
  }

  h2 {
    font-size: 1.52rem;
  }

  .home-hero-content,
  .page-hero-content {
    width: min(100% - 30px, 1120px);
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    width: 100%;
  }

  .trust-strip {
    padding-bottom: 0;
  }

  .trust-strip-inner > div {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner span {
    grid-row: auto;
  }
}

/* 2026 motion-led refresh */
:root {
  --neon: #5CC6C2;
  --acid: #e2cf7b;
  --hot: #f28c28;
}

.site-header {
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.06);
}

.home-hero {
  --hero-x: 0px;
  --hero-y: 0px;
  min-height: min(820px, 84svh);
  background: #0f1d2e;
}

.home-hero::before {
  background:
    linear-gradient(90deg, rgba(92, 198, 194, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(92, 198, 194, 0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.22;
  transform: translate3d(var(--hero-x), var(--hero-y), 0);
  animation: hero-grid-shift 12s linear infinite;
}

.hero-bg img {
  transform: scale(1.06) translate3d(calc(var(--hero-x) * -0.35), calc(var(--hero-y) * -0.35), 0);
  filter: saturate(1.18) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 29, 46, 0.96) 0%, rgba(15, 29, 46, 0.78) 42%, rgba(15, 29, 46, 0.16) 100%),
    linear-gradient(0deg, rgba(92, 198, 194, 0.26), transparent 44%);
}

.home-hero-content {
  width: min(1220px, 91vw);
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.74fr);
  padding: 86px 0 104px;
}

.home-hero-content h1 {
  max-width: 740px;
  font-size: clamp(3.35rem, 6vw, 6.35rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.home-hero-content .hero-copy > p {
  max-width: 640px;
  font-size: 1.18rem;
}

.home-hero .eyebrow {
  color: var(--neon);
  background: rgba(92, 198, 194, 0.12);
  border-color: rgba(92, 198, 194, 0.38);
  box-shadow: 0 0 32px rgba(92, 198, 194, 0.12);
}

.home-dashboard {
  transform: translate3d(calc(var(--hero-x) * 0.9), calc(var(--hero-y) * 0.65), 0);
}

.home-dashboard::before {
  inset: -16px;
  border-color: rgba(92, 198, 194, 0.18);
  background:
    linear-gradient(90deg, rgba(92, 198, 194, 0.2) 1px, transparent 1px),
    linear-gradient(0deg, rgba(92, 198, 194, 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.42;
  transform: rotate(1deg);
}

.live-console {
  overflow: hidden;
  border: 1px solid rgba(92, 198, 194, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 33, 53, 0.92), rgba(15, 30, 40, 0.72));
  color: #eeefea;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(238, 239, 234, 0.05) inset;
  backdrop-filter: blur(18px);
  animation: panel-float 7s var(--ease-out) infinite;
}

.console-bar {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(238, 239, 234, 0.12);
  background: rgba(238, 239, 234, 0.05);
}

.console-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.console-bar span:nth-child(1) {
  background: var(--hot);
}

.console-bar span:nth-child(2) {
  background: var(--amber);
}

.console-bar span:nth-child(3) {
  background: var(--neon);
}

.console-bar strong {
  margin-left: auto;
  color: rgba(238, 239, 234, 0.7);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.scan-window {
  padding: 18px;
}

.scan-frame {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(92, 198, 194, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(92, 198, 194, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(238, 239, 234, 0.08), rgba(238, 239, 234, 0.02));
}

.scan-frame > span {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: var(--neon);
  opacity: 0.9;
}

.scan-frame > span:nth-child(1) {
  top: 14px;
  left: 14px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.scan-frame > span:nth-child(2) {
  top: 14px;
  right: 14px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.scan-frame > span:nth-child(3) {
  right: 14px;
  bottom: 14px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.scan-frame > span:nth-child(4) {
  bottom: 14px;
  left: 14px;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.scan-line {
  position: absolute;
  inset: 0 0 auto;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(92, 198, 194, 0.3), transparent);
  filter: blur(0.2px);
  animation: scan-sweep 3.4s linear infinite;
}

.scan-grid {
  position: absolute;
  inset: 54px 28px 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

.scan-grid i {
  border: 1px solid rgba(92, 198, 194, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.2), transparent),
    rgba(238, 239, 234, 0.05);
  animation: grid-pulse 2.6s ease-in-out infinite;
}

.scan-grid i:nth-child(2n) {
  animation-delay: 0.32s;
}

.scan-grid i:nth-child(3n) {
  animation-delay: 0.62s;
}

.house-scan {
  position: absolute;
  inset: 34px 42px 28px;
  display: grid;
  place-items: center;
  perspective: 800px;
}

.house-roof {
  position: absolute;
  top: 8px;
  width: 205px;
  height: 120px;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.78), rgba(215, 255, 90, 0.5));
  clip-path: polygon(50% 0, 100% 58%, 86% 58%, 86% 100%, 14% 100%, 14% 58%, 0 58%);
  filter: drop-shadow(0 20px 30px rgba(92, 198, 194, 0.2));
  opacity: 0.92;
  animation: house-glow 3.2s ease-in-out infinite;
}

.house-body {
  position: absolute;
  top: 76px;
  width: 174px;
  height: 112px;
  border: 1px solid rgba(92, 198, 194, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 33, 53, 0.64), rgba(92, 198, 194, 0.1));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.26),
    0 0 36px rgba(92, 198, 194, 0.1) inset;
}

.house-window,
.house-door {
  position: absolute;
  border: 1px solid rgba(92, 198, 194, 0.54);
  border-radius: 6px;
  background: rgba(92, 198, 194, 0.12);
}

.house-window {
  top: 22px;
  width: 42px;
  height: 34px;
}

.house-window-left {
  left: 24px;
}

.house-window-right {
  right: 24px;
}

.house-door {
  right: 66px;
  bottom: 0;
  width: 42px;
  height: 58px;
  border-bottom: 0;
  background: rgba(242, 140, 40, 0.16);
}

.house-foundation {
  position: absolute;
  bottom: 16px;
  width: 236px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(92, 198, 194, 0.8), transparent);
  filter: blur(0.2px);
}

.scan-tags-orbit {
  --orbit-radius: 112px;
  position: absolute;
  inset: 0;
  z-index: 3;
  animation: scan-orbit 22s linear infinite;
  transform-origin: 50% 50%;
  pointer-events: none;
}

.scan-tags-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:
    rotate(var(--angle))
    translateX(var(--orbit-radius))
    rotate(calc(-1 * var(--angle)))
    translate(-50%, -50%);
  transform-origin: 0 0;
}

.scan-tags-orbit b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(92, 198, 194, 0.46);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.22), rgba(15, 29, 46, 0.82)),
    rgba(15, 29, 46, 0.82);
  color: #eeefea;
  font-size: 0.7rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(92, 198, 194, 0.16);
  animation: scan-label-counter 22s linear infinite;
}

.scan-pin {
  position: absolute;
  min-width: 42px;
  padding: 5px 8px;
  border: 1px solid rgba(92, 198, 194, 0.42);
  border-radius: 999px;
  background: rgba(15, 29, 46, 0.78);
  color: #eeefea;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  animation: pin-float 2.7s ease-in-out infinite;
}

.scan-pin-dpe {
  top: 18px;
  right: 42px;
}

.scan-pin-elec {
  left: 20px;
  bottom: 54px;
  animation-delay: 0.28s;
}

.scan-pin-gaz {
  right: 18px;
  bottom: 48px;
  animation-delay: 0.54s;
}

.console-list {
  display: grid;
  gap: 1px;
  background: rgba(238, 239, 234, 0.1);
}

.console-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 18px;
  background: rgba(15, 29, 46, 0.54);
}

.console-list span {
  color: rgba(238, 239, 234, 0.56);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.console-list strong {
  color: #eeefea;
  max-width: 310px;
  text-align: right;
  line-height: 1.25;
}

.console-list .diagnostic-rotator {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  width: min(100%, 320px);
  max-width: 320px;
  min-height: 32px;
  text-align: left;
  line-height: 1;
}

.diagnostic-rotator em {
  flex: 0 0 auto;
  color: rgba(92, 198, 194, 0.76);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.rotator-window {
  position: relative;
  flex: 0 1 176px;
  min-width: 132px;
  max-width: 176px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(92, 198, 194, 0.42);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.18), rgba(242, 140, 40, 0.08)),
    rgba(15, 29, 46, 0.76);
  box-shadow:
    0 0 26px rgba(92, 198, 194, 0.14),
    0 12px 28px rgba(0, 0, 0, 0.22);
}

.rotator-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(238, 239, 234, 0.18), transparent);
  transform: translateX(-110%);
  animation: diagnostic-sheen 1.45s ease-in-out infinite;
}

.rotator-word {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  color: #eeefea;
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 950;
  text-align: center;
  white-space: nowrap;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
}

.rotator-word.is-leaving {
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
  filter: blur(3px);
}

.rotator-word.is-entering {
  animation: diagnostic-word-enter 320ms ease both;
}

.console-progress {
  height: 5px;
  background: rgba(238, 239, 234, 0.08);
}

.console-progress span {
  display: block;
  width: 44%;
  height: 100%;
  background: linear-gradient(90deg, var(--neon), var(--acid), var(--amber));
  animation: progress-run 3s ease-in-out infinite;
}

.service-ticker {
  position: relative;
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(92, 198, 194, 0.22);
  border-bottom: 1px solid rgba(92, 198, 194, 0.22);
  background: #0f1d2e;
  color: #eeefea;
}

.service-ticker::before,
.service-ticker::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(12vw, 150px);
  pointer-events: none;
}

.service-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #0f1d2e, rgba(15, 29, 46, 0));
}

.service-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #0f1d2e, rgba(15, 29, 46, 0));
}

.ticker-viewport {
  overflow: hidden;
  width: 100%;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-slide 46s linear infinite;
  will-change: transform;
}

.service-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

.ticker-group a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(238, 239, 234, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.08), rgba(242, 140, 40, 0.04)),
    rgba(238, 239, 234, 0.06);
  color: rgba(238, 239, 234, 0.84);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.ticker-group a:nth-child(3n) {
  color: var(--neon);
}

.ticker-group a:nth-child(4n) {
  border-color: rgba(242, 140, 40, 0.28);
}

.ticker-group a:hover,
.ticker-group a:focus-visible {
  color: #eeefea;
  border-color: rgba(92, 198, 194, 0.66);
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.18), rgba(242, 140, 40, 0.1)),
    rgba(238, 239, 234, 0.1);
  box-shadow: 0 0 24px rgba(92, 198, 194, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.quick-entry {
  margin-top: 0;
  padding-top: 28px;
}

.quick-entry a {
  background:
    linear-gradient(145deg, rgba(238, 239, 234, 0.96), rgba(246, 247, 242, 0.92));
  transform-style: preserve-3d;
}

.quick-entry a:hover,
.quick-entry a:focus-visible {
  transform: translateY(-8px) rotateX(1.5deg);
}

.proof-numbers {
  background:
    linear-gradient(120deg, rgba(92, 198, 194, 0.18), transparent 36%),
    linear-gradient(145deg, #0f1d2e, #254f82 68%, #102135);
}

.proof-numbers strong {
  color: #eeefea;
  font-size: clamp(4rem, 8vw, 7.4rem);
}

.home-impact {
  background:
    linear-gradient(130deg, rgba(255, 95, 56, 0.14), transparent 34%),
    #101f33;
}

.home-impact h2 {
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.96;
}

.page-hero {
  --hero-x: 0px;
  --hero-y: 0px;
  isolation: isolate;
  min-height: min(700px, 72svh);
}

.page-hero-media {
  z-index: 0;
}

.page-hero-media img {
  transform: scale(1.06) translate3d(calc(var(--hero-x) * -0.28), calc(var(--hero-y) * -0.28), 0);
  filter: saturate(1.12) contrast(1.06);
  animation: page-image-drift 14s var(--ease-out) both;
  will-change: transform;
}

.page-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(92, 198, 194, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(92, 198, 194, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: translate3d(calc(var(--hero-x) * 0.5), calc(var(--hero-y) * 0.5), 0);
  animation: hero-grid-shift 14s linear infinite;
}

.page-hero::after {
  z-index: 2;
}

.page-hero-content {
  z-index: 3;
}

.page-hero-content h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  line-height: 0.96;
}

.mission-dashboard .dashboard-card {
  border-color: rgba(92, 198, 194, 0.26);
  background:
    linear-gradient(145deg, rgba(16, 33, 53, 0.98), rgba(16, 33, 53, 0.94));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  animation: panel-float 7.5s var(--ease-out) infinite;
}

.mission-dashboard .dashboard-card::after {
  background: linear-gradient(90deg, var(--neon), var(--acid), var(--hot));
}

.mission-dashboard .dashboard-kicker {
  color: var(--neon) !important;
}

.mission-dashboard .dashboard-title {
  color: #eeefea;
}

.mission-dashboard .dashboard-flow span {
  position: relative;
  z-index: 1;
  border-color: rgba(92, 198, 194, 0.22);
  background: rgba(238, 239, 234, 0.12);
  color: #eeefea;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.mission-dashboard .dashboard-flow b {
  background: var(--neon);
  color: #0f2730;
  animation: mission-step-pulse 2.7s ease-in-out infinite;
}

.mission-dashboard .dashboard-flow span:nth-child(2) b {
  animation-delay: 0.28s;
}

.mission-dashboard .dashboard-flow span:nth-child(3) b {
  animation-delay: 0.56s;
}

.mission-dashboard .dashboard-flow::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 15%;
  left: 15%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(92, 198, 194, 0.18), rgba(215, 255, 90, 0.84), rgba(242, 140, 40, 0.18));
  transform-origin: left;
  animation: mission-flow-line 2.7s ease-in-out infinite;
}

.mission-dashboard .dashboard-flow span:hover,
.mission-dashboard .dashboard-flow span:focus-within {
  border-color: rgba(92, 198, 194, 0.52);
  background: rgba(92, 198, 194, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.mission-dashboard .dashboard-note {
  background: rgba(92, 198, 194, 0.16);
  color: #eeefea;
}

.impact-points > div {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), background 0.28s ease;
}

.impact-points > div::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--acid), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.impact-points > div:hover {
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.1), transparent 58%),
    #102135;
  transform: translateX(8px);
}

.impact-points > div:hover::after {
  transform: scaleX(1);
}

.reveal-item {
  transform: translateY(30px) scale(0.985);
}

.reveal-item.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes hero-grid-shift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 124px 62px, 62px 124px;
  }
}

@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes scan-sweep {
  from {
    transform: translateY(-54px);
  }

  to {
    transform: translateY(244px);
  }
}

@keyframes grid-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes house-glow {
  0%,
  100% {
    opacity: 0.78;
    transform: translateY(0) rotateX(0deg);
  }

  50% {
    opacity: 1;
    transform: translateY(-4px) rotateX(4deg);
  }
}

@keyframes pin-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes scan-orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes scan-label-counter {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes diagnostic-word-enter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes diagnostic-sheen {
  0%,
  28% {
    transform: translateX(-115%);
  }

  70%,
  100% {
    transform: translateX(115%);
  }
}

@keyframes progress-run {
  0%,
  100% {
    width: 38%;
  }

  50% {
    width: 92%;
  }
}

@keyframes ticker-slide {
  from {
    transform: translateX(0);
  }

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

@keyframes page-image-drift {
  from {
    transform: scale(1.1) translate3d(calc(var(--hero-x) * -0.28), calc(var(--hero-y) * -0.28), 0);
  }

  to {
    transform: scale(1.06) translate3d(calc(var(--hero-x) * -0.28), calc(var(--hero-y) * -0.28), 0);
  }
}

@keyframes mission-step-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(92, 198, 194, 0.28);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(92, 198, 194, 0);
    transform: scale(1.06);
  }
}

@keyframes mission-flow-line {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleX(0.38);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 1080px) {
  .home-hero {
    min-height: min(760px, 76svh);
  }

  .home-hero-content h1 {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
  }
}

@media (max-width: 780px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero-content h1 {
    font-size: 2.7rem;
  }

  .service-ticker {
    padding: 10px 0;
  }

  .ticker-track {
    animation-duration: 30s;
  }

  .quick-entry {
    padding-top: 0;
  }

  .proof-numbers strong {
    font-size: 4rem;
  }

  .home-impact h2 {
    font-size: 2.65rem;
  }
}

@media (max-width: 460px) {
  .home-hero-content h1 {
    font-size: 2.25rem;
  }

  .home-impact h2 {
    font-size: 2.2rem;
  }
}

/* Comment fixes: dark-section contrast and quote-first footer */
.cta-band h2,
.contact-section h2 {
  color: #eeefea;
}

.cta-band p,
.contact-section p {
  color: rgba(238, 239, 234, 0.84);
}

.contact-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(92, 198, 194, 0.14), transparent 34%),
    linear-gradient(145deg, #0f2730, #254f82 62%, #101f33);
}

.contact-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  align-items: start;
}

.contact-primary {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 58px) clamp(34px, 6vw, 78px) clamp(28px, 4vw, 58px) clamp(28px, 4vw, 54px);
  border: 1px solid rgba(92, 198, 194, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.1), transparent 42%),
    rgba(238, 239, 234, 0.04);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.contact-primary::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(92, 198, 194, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(92, 198, 194, 0.18), transparent 62%);
  pointer-events: none;
}

.contact-primary h2 {
  max-width: 640px;
  margin-bottom: 18px;
  color: #eeefea;
  font-size: clamp(2.3rem, 3.75vw, 4.25rem);
  line-height: 1.02;
  text-wrap: balance;
}

.contact-primary > p {
  max-width: 580px;
  font-size: 1.08rem;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn-quote-large {
  min-height: 58px;
  padding-inline: 24px;
  font-size: 1.02rem;
}

.contact-methods {
  position: relative;
  z-index: 1;
}

.contact-form-details {
  overflow: hidden;
  border-color: rgba(238, 239, 234, 0.16);
  background: rgba(238, 239, 234, 0.06);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.contact-form-details:hover,
.contact-form-details[open] {
  border-color: rgba(92, 198, 194, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.contact-form-details summary {
  color: #eeefea;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.12), rgba(238, 239, 234, 0.03));
}

.contact-form-details summary::after {
  content: "+";
  float: right;
  color: var(--neon);
  font-weight: 900;
}

.contact-form-details[open] summary::after {
  content: "-";
}

.contact-form-details .contact-form {
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(238, 239, 234, 0.14);
  border-radius: 0;
  background: rgba(238, 239, 234, 0.04);
  box-shadow: none;
}

.footer-credit {
  margin-top: 10px;
  color: rgba(238, 239, 234, 0.78) !important;
}

.footer-credit a {
  color: #eeefea;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

@media (max-width: 780px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-primary {
    min-height: 0;
    padding: 24px;
  }

  .contact-primary h2 {
    max-width: 100%;
    font-size: 2.12rem;
  }

  .contact-actions .btn {
    width: 100%;
  }
}

/* Comment fix: brighter home impact section */
.home-impact {
  background:
    linear-gradient(90deg, rgba(92, 198, 194, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(92, 198, 194, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #eeefea 0%, #edf7f5 44%, #e0f2f0 100%);
  background-size: 72px 72px, 72px 72px, auto;
  color: #102135;
}

.home-impact::before {
  background:
    linear-gradient(120deg, rgba(92, 198, 194, 0.24), transparent 34%),
    linear-gradient(300deg, rgba(242, 140, 40, 0.16), transparent 42%);
  opacity: 1;
}

.home-impact-grid {
  position: relative;
  z-index: 1;
}

.home-impact .eyebrow {
  color: #206b69;
  background: rgba(92, 198, 194, 0.1);
  border-color: rgba(92, 198, 194, 0.22);
  box-shadow: none;
}

.home-impact h2 {
  color: #102135;
  text-shadow: none;
}

.home-impact p,
.home-impact-copy > p:last-child {
  color: #3f5063;
}

.impact-points {
  border: 1px solid rgba(92, 198, 194, 0.16);
  background: rgba(92, 198, 194, 0.12);
  box-shadow: 0 26px 70px rgba(7, 17, 28, 0.1);
}

.impact-points > div {
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.16), transparent 56%),
    rgba(238, 239, 234, 0.9);
  color: #102135;
}

.impact-points > div:hover {
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.2), transparent 58%),
    #eeefea;
  transform: translateY(-3px);
}

.impact-points span {
  color: #206b69;
}

.impact-points strong {
  color: #102135;
}

.impact-points p {
  color: #4c5d70;
}

/* Comment fix: airier home cards and readable impact headline */
.service-ticker + .quick-entry {
  padding-top: 38px;
  padding-bottom: 28px;
}

.quick-entry + .trust-strip {
  padding-top: 30px;
  padding-bottom: 42px;
}

.trust-strip-inner {
  gap: 22px;
}

.trust-strip-inner > div {
  padding: 22px;
}

.home-impact {
  padding: 92px 0;
}

.home-impact-grid {
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  align-items: center;
}

.home-impact h2 {
  max-width: 560px;
  font-size: 3.45rem;
  line-height: 1.04;
}

@media (max-width: 1100px) {
  .home-impact h2 {
    font-size: 3rem;
  }
}

@media (max-width: 760px) {
  .service-ticker + .quick-entry {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .quick-entry + .trust-strip {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .home-impact {
    padding: 64px 0;
  }

  .home-impact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .home-impact-copy {
    max-width: 100%;
  }

  .home-impact h2 {
    max-width: 9.5em;
    font-size: 2.35rem;
  }

  .home-impact-copy > p:last-child {
    max-width: 34em;
  }

  .impact-points > div {
    grid-template-columns: 42px 1fr;
    gap: 6px 16px;
    padding: 20px;
  }
}

@media (max-width: 460px) {
  .home-impact h2 {
    font-size: 2.02rem;
    line-height: 1.08;
  }

  .impact-points > div {
    grid-template-columns: 1fr;
  }

  .impact-points span {
    grid-row: auto;
  }
}

/* Comment fix: mobile hero needs one real text column */
@media (max-width: 780px) {
  .home-hero-content {
    grid-template-columns: 1fr;
    width: min(100% - 52px, 1120px);
    padding: 66px 0 78px;
  }

  .home-hero .hero-copy {
    width: 100%;
    max-width: calc(100vw - 52px);
  }

  .home-hero-content h1 {
    width: 100%;
    max-width: 8em;
    overflow-wrap: break-word;
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .home-hero-content .hero-copy > p {
    max-width: 520px;
    font-size: 1.04rem;
    line-height: 1.52;
  }

  .home-hero .eyebrow {
    max-width: min(100%, 320px);
  }
}

@media (max-width: 460px) {
  .home-hero-content {
    width: min(100% - 42px, 1120px);
    padding: 58px 0 68px;
  }

  .home-hero-content h1 {
    max-width: 8em;
    font-size: clamp(1.95rem, 9.4vw, 2.16rem);
    line-height: 1.04;
  }
}

/* Comment fix: compact mobile service cards */
@media (max-width: 780px) {
  #diagnostics-populaires .card-grid.four {
    gap: 12px;
    align-items: start;
  }

  #diagnostics-populaires .service-card {
    min-height: 0;
    gap: 8px;
    padding: 16px 14px;
  }

  #diagnostics-populaires .service-card .card-icon {
    width: 54px;
    height: 54px;
    margin-inline: auto;
  }

  #diagnostics-populaires .service-card .card-icon img {
    width: 40px;
    height: 40px;
  }

  #diagnostics-populaires .service-card strong {
    font-size: 1rem;
    line-height: 1.16;
  }

  #diagnostics-populaires .service-card span:not(.card-icon) {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  #diagnostics-populaires .service-card small {
    margin-top: 6px;
    gap: 5px;
    font-size: 0.78rem;
    line-height: 1.18;
  }

  #diagnostics-populaires .service-card small svg {
    width: 15px;
    height: 15px;
    margin-left: auto;
    flex: 0 0 auto;
  }
}

@media (max-width: 460px) {
  #diagnostics-populaires .card-grid.four {
    gap: 10px;
  }

  #diagnostics-populaires .service-card {
    padding: 13px 12px;
  }

  #diagnostics-populaires .service-card .card-icon {
    width: 50px;
    height: 50px;
  }

  #diagnostics-populaires .service-card .card-icon img {
    width: 38px;
    height: 38px;
  }

  #diagnostics-populaires .service-card span:not(.card-icon) {
    font-size: 0.88rem;
  }

  #diagnostics-populaires .service-card small {
    font-size: 0.74rem;
  }
}

/* Comment fix: mobile nav must scroll independently */
@media (max-width: 1080px) {
  body.nav-menu-open {
    overflow: hidden;
  }

  .site-header.nav-open {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    height: 100svh;
    max-height: 100svh;
    align-content: start;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
    background: rgba(238, 239, 234, 0.99);
  }

  .site-header.nav-open .site-nav {
    padding-bottom: 16px;
  }

  .site-header.nav-open .header-actions {
    padding-bottom: 22px;
  }

  body.nav-menu-open .mobile-action-bar {
    opacity: 0;
    pointer-events: none;
  }
}

/* Comment fix: compact home hero so the diagnostic ticker enters the first viewport */
@media (min-width: 1081px) {
  .home-hero {
    min-height: min(620px, 62svh);
  }

  .home-hero-content {
    width: min(1180px, 90vw);
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.64fr);
    gap: clamp(24px, 3.5vw, 50px);
    padding: 38px 0 44px;
  }

  .home-hero-content h1 {
    max-width: 600px;
    font-size: clamp(2.65rem, 3.45vw, 4.1rem);
    line-height: 0.98;
  }

  .home-hero-content .hero-copy > p {
    max-width: 600px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .home-hero .cta-row {
    margin-top: 18px;
  }

  .home-hero .hero-proof {
    margin-top: 16px;
  }

  .home-hero .project-badges {
    margin-top: 12px;
  }

  .home-dashboard {
    max-width: 460px;
    justify-self: end;
  }

  .live-console {
    transform: none;
  }

  .home-dashboard .console-bar {
    min-height: 38px;
    padding: 8px 13px;
  }

  .home-dashboard .scan-window {
    padding: 12px;
  }

  .home-dashboard .scan-frame {
    min-height: 178px;
  }

  .home-dashboard .console-list div {
    padding: 9px 14px;
  }

  .home-dashboard .console-list strong {
    font-size: 0.9rem;
  }

  .home-dashboard .dashboard-mini-grid {
    margin-top: 8px;
  }

  .home-dashboard .dashboard-mini-grid div {
    min-height: 74px;
    padding: 12px;
  }
}

/* Project pages: surface sale/rental diagnostics immediately */
.hero-diagnostic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 720px;
  margin-top: 24px;
}

.hero-diagnostic-pills a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(92, 198, 194, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.12), rgba(242, 140, 40, 0.08)),
    rgba(238, 239, 234, 0.1);
  color: #eeefea;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-diagnostic-pills a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(238, 239, 234, 0.24) 45%, transparent 68%);
  transform: translateX(-120%);
  animation: diagnostic-pill-sheen 3.2s ease-in-out infinite;
  pointer-events: none;
}

.hero-diagnostic-pills a:nth-child(2n)::before {
  animation-delay: 0.22s;
}

.hero-diagnostic-pills a:nth-child(3n)::before {
  animation-delay: 0.44s;
}

.hero-diagnostic-pills a:hover,
.hero-diagnostic-pills a:focus-visible {
  border-color: rgba(92, 198, 194, 0.72);
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.2), rgba(242, 140, 40, 0.12)),
    rgba(238, 239, 234, 0.16);
  outline: none;
  transform: translateY(-2px);
}

.diagnostic-focus {
  position: relative;
  z-index: 5;
  overflow: hidden;
  margin-top: -38px;
  padding: 0 0 72px;
  background:
    linear-gradient(180deg, rgba(247, 252, 251, 0) 0, #f4f5ef 38px, #eeefea 100%);
}

.diagnostic-focus::before {
  content: "";
  position: absolute;
  inset: 38px 0 0;
  background:
    linear-gradient(90deg, rgba(92, 198, 194, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(242, 140, 40, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.34;
  pointer-events: none;
  animation: focus-grid-move 18s linear infinite;
}

.diagnostic-focus .section-inner {
  position: relative;
  z-index: 1;
}

.diagnostic-focus-heading {
  max-width: 880px;
  margin-bottom: 24px;
  padding-top: 58px;
}

.diagnostic-focus-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

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

.diagnostic-focus-card {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(216, 222, 216, 0.98);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.06), transparent 48%),
    #eeefea;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.07);
  transition:
    transform 190ms ease,
    border-color 190ms ease,
    box-shadow 190ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.diagnostic-focus-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  transform: scaleX(0.48);
  transform-origin: left;
  transition: transform 190ms ease;
}

.diagnostic-focus-card::after {
  content: "";
  position: absolute;
  inset: -50% -30%;
  background: radial-gradient(circle at 30% 20%, rgba(92, 198, 194, 0.2), transparent 34%);
  opacity: 0;
  transform: translate3d(-8%, 8%, 0) rotate(10deg);
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease-out);
  pointer-events: none;
}

.diagnostic-focus-card:hover,
.diagnostic-focus-card:focus-visible {
  border-color: rgba(92, 198, 194, 0.34);
  box-shadow: 0 24px 62px rgba(92, 198, 194, 0.14);
  outline: none;
  transform: translateY(-7px) rotateX(1.4deg);
}

.diagnostic-focus-card:hover::before,
.diagnostic-focus-card:focus-visible::before {
  transform: scaleX(1);
}

.diagnostic-focus-card:hover::after,
.diagnostic-focus-card:focus-visible::after {
  opacity: 1;
  transform: translate3d(6%, -4%, 0) rotate(0deg);
}

.diagnostic-focus-card .card-icon,
.diagnostic-focus-card strong,
.diagnostic-focus-card span {
  position: relative;
  z-index: 1;
}

.diagnostic-focus-card .card-icon {
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease,
    background 220ms ease;
}

.diagnostic-focus-card:hover .card-icon,
.diagnostic-focus-card:focus-visible .card-icon {
  background: #d9f2ef;
  box-shadow: 0 14px 28px rgba(92, 198, 194, 0.12);
  transform: translateY(-3px) scale(1.05);
}

.diagnostic-focus-card strong {
  font-size: 1.12rem;
  line-height: 1.2;
}

.diagnostic-focus-card span:not(.card-icon) {
  color: #526276;
  font-size: 0.95rem;
  line-height: 1.45;
}

.diagnostic-focus-card.reveal-item {
  transform: translateY(30px) rotateX(2deg) scale(0.985);
}

.diagnostic-focus-card.reveal-item.is-visible {
  transform: translateY(0) rotateX(0) scale(1);
}

.hero-slider {
  overflow: hidden;
  background: #0f1d2e;
}

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  animation: hero-slide-fade 36s linear infinite;
}

.hero-slider .hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slider .hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slider .hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slider .hero-slide:nth-child(4) {
  animation-delay: 18s;
}

.hero-slider .hero-slide:nth-child(5) {
  animation-delay: 24s;
}

.hero-slider .hero-slide:nth-child(6) {
  animation-delay: 30s;
}

.hero-slider .hero-slide img {
  animation: hero-slide-zoom 36s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-slider .hero-slide:nth-child(1) img {
  animation-delay: 0s;
}

.hero-slider .hero-slide:nth-child(2) img {
  animation-delay: 6s;
}

.hero-slider .hero-slide:nth-child(3) img {
  animation-delay: 12s;
}

.hero-slider .hero-slide:nth-child(4) img {
  animation-delay: 18s;
}

.hero-slider .hero-slide:nth-child(5) img {
  animation-delay: 24s;
}

.hero-slider .hero-slide:nth-child(6) img {
  animation-delay: 30s;
}

.breadcrumbs {
  padding: 12px 5vw 16px;
  background: #eeefea;
}

.breadcrumbs ol {
  max-width: 1180px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  color: #526276;
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "/";
  color: #98a6b3;
}

.breadcrumbs a {
  color: var(--teal-contrast);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.breadcrumbs span {
  color: #526276;
}

.service-guidance {
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.08), transparent 44%),
    #f4f5ef;
}

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

.guidance-grid article,
.local-facts article {
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(216, 222, 216, 0.96);
  border-radius: 8px;
  background: #eeefea;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.07);
}

.guidance-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #dff2f0;
  color: var(--teal-contrast);
}

.guidance-grid h3,
.local-facts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.guidance-grid p,
.local-facts span {
  margin: 0;
  color: #526276;
  font-size: 0.96rem;
  line-height: 1.5;
}

.local-detail {
  background: #eeefea;
}

.local-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.local-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.visual-info-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.context-image img {
  aspect-ratio: 16 / 10;
}

.local-facts article {
  min-height: 0;
  padding: 18px 20px;
}

.local-nearby {
  padding-top: 0;
}

.local-nearby > p {
  margin-bottom: 12px;
}

.local-nearby > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.local-nearby a,
.compact-city-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(92, 198, 194, 0.18);
  border-radius: 8px;
  background: #eeefea;
  color: var(--teal-contrast);
  font-weight: 800;
  font-size: 0.91rem;
  transition: transform 180ms var(--ease-out), border-color 180ms ease, background 180ms ease;
}

.local-nearby a:hover,
.local-nearby a:focus-visible,
.compact-city-links a:hover,
.compact-city-links a:focus-visible {
  border-color: var(--teal);
  background: #dff2f0;
  outline: none;
  transform: translateY(-2px);
}

.local-seo-detail {
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.08), transparent 44%),
    var(--paper);
}

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

.local-seo-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 216px;
  padding: 22px;
  border: 1px solid rgba(216, 222, 216, 0.96);
  border-radius: 8px;
  background: #f7f8f4;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
}

.local-seo-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.local-seo-grid p {
  margin: 0;
  color: #526276;
  font-size: 0.96rem;
  line-height: 1.55;
}

.local-seo-grid .compact-city-links {
  padding-top: 6px;
}

.city-hub-hero {
  background:
    linear-gradient(135deg, rgba(242, 140, 40, 0.09), transparent 46%),
    #f4f5ef;
}

.visual-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(620px, 70svh);
  display: grid;
  align-items: center;
  padding: 0;
  color: #eeefea;
  background: #102135;
  border-bottom: 0;
}

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

.visual-hero-media {
  z-index: 0;
}

.visual-hero-media img {
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.05);
}

.visual-hero::before,
.visual-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.visual-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(92, 198, 194, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(92, 198, 194, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.4;
}

.visual-hero::after {
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(16, 33, 53, 0.96) 0%, rgba(16, 33, 53, 0.76) 44%, rgba(16, 33, 53, 0.24) 100%),
    linear-gradient(0deg, rgba(16, 33, 53, 0.42), rgba(92, 198, 194, 0.1));
}

.visual-hero .section-inner {
  position: relative;
  z-index: 3;
  width: min(1180px, 90vw);
  max-width: none;
  padding: 92px 0 78px;
}

.visual-hero .eyebrow {
  color: #c8efec;
  background: rgba(92, 198, 194, 0.12);
  border-color: rgba(92, 198, 194, 0.32);
}

.visual-hero h1 {
  max-width: 780px;
  color: #eeefea;
  font-size: 4.8rem;
  line-height: 0.96;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
}

.visual-hero .section-inner > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(238, 239, 234, 0.9);
  font-size: 1.1rem;
}

.visual-hero .btn-ghost {
  color: #eeefea;
  background: rgba(238, 239, 234, 0.12);
  border-color: rgba(238, 239, 234, 0.42);
}

.visual-hero .btn-ghost:hover,
.visual-hero .btn-ghost:focus-visible {
  color: var(--ink);
  background: #eeefea;
}

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

.local-choice-card {
  position: relative;
  overflow: hidden;
  min-height: 188px;
  aspect-ratio: 1.45 / 1;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(16, 33, 53, 0.14);
  border-radius: 8px;
  background: #102135;
  color: #fff;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.12);
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.local-choice-card.is-large {
  grid-column: span 2;
  min-height: 292px;
  aspect-ratio: 1.92 / 1;
}

.local-choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 33, 53, 0.03) 28%, rgba(16, 33, 53, 0.78) 100%),
    linear-gradient(135deg, rgba(32, 107, 105, 0.28), rgba(242, 140, 40, 0.16));
}

.local-choice-card:hover,
.local-choice-card:focus-visible {
  border-color: rgba(92, 198, 194, 0.54);
  box-shadow: 0 22px 58px rgba(17, 24, 39, 0.17);
  outline: none;
  transform: translateY(-3px);
}

.local-choice-media {
  position: absolute;
  inset: 0;
  display: block;
}

.local-choice-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.local-choice-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(16, 33, 53, 0.04), rgba(16, 33, 53, 0.78));
}

.local-choice-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  background: rgba(238, 239, 234, 0.94);
}

.local-choice-icon img {
  width: 40px;
  height: 40px;
}

.local-choice-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.local-choice-copy strong {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.15;
}

.local-choice-copy small {
  color: rgba(238, 239, 234, 0.86);
  font-weight: 750;
  line-height: 1.35;
}

.city-hub-services .service-card span:not(.card-icon) {
  min-height: 44px;
}

.city-hub-services .diagnostic-rail-heading h2 {
  max-width: 560px;
  font-size: clamp(2rem, 2.6vw, 2.75rem);
  line-height: 1.08;
}

.city-hub-detail .local-facts article {
  background: #f7f8f4;
}

.zone-hubs .link-cluster {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr) minmax(280px, 0.8fr);
}

.zone-hubs .link-group {
  align-content: start;
}

.zone-hubs .link-group p {
  margin: 0 0 10px;
  color: #526276;
  font-size: 0.96rem;
  line-height: 1.5;
}

.compact-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.local-intervention {
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.1), transparent 42%),
    linear-gradient(180deg, #f5f6f1, #eeefea);
}

.local-intervention-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.local-intervention-copy {
  display: grid;
  gap: 14px;
}

.local-intervention-copy h2 {
  max-width: 680px;
  font-size: clamp(2.1rem, 3.1vw, 3.25rem);
  line-height: 1.03;
}

.local-intervention-copy p {
  max-width: 650px;
}

.local-intervention-lede {
  color: #405266;
  font-size: 1.08rem;
  line-height: 1.62;
}

.local-intervention-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}

.local-intervention-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(92, 198, 194, 0.28);
  border-radius: 8px;
  background: #f7f8f4;
  color: var(--teal-contrast);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
  transition: transform 180ms var(--ease-out), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.local-intervention-actions a:first-child {
  border-color: rgba(242, 140, 40, 0.58);
  background: linear-gradient(180deg, #fb9633, var(--amber));
  color: #fff;
  box-shadow: 0 16px 34px rgba(242, 140, 40, 0.24);
}

.local-intervention-actions a:hover,
.local-intervention-actions a:focus-visible {
  border-color: rgba(32, 107, 105, 0.5);
  background: #e9f5f2;
  outline: none;
  transform: translateY(-2px);
}

.local-intervention-actions a:first-child:hover,
.local-intervention-actions a:first-child:focus-visible {
  border-color: rgba(199, 108, 18, 0.62);
  background: linear-gradient(180deg, #ff9f3b, #f28c28);
  box-shadow: 0 18px 38px rgba(242, 140, 40, 0.3);
}

.local-intervention-actions svg {
  width: 18px;
  height: 18px;
}

.local-intervention-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(216, 222, 216, 0.96);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(92, 198, 194, 0.11), transparent 46%),
    linear-gradient(180deg, #f8f9f4, #e9eee8);
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.13);
}

.local-intervention-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.52) 38%, transparent 64%);
  opacity: 0.5;
  transform: translateX(-62%);
  animation: local-card-sheen 8s ease-in-out infinite;
}

.local-card-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon city"
    "icon sector";
  gap: 2px 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(32, 107, 105, 0.14);
}

.local-card-head span {
  grid-area: icon;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #dff2f0;
  color: var(--teal-contrast);
}

.local-card-head strong {
  grid-area: city;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.1;
}

.local-card-head em {
  grid-area: sector;
  color: #526276;
  font-style: normal;
  font-weight: 780;
  line-height: 1.35;
}

.local-intervention-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.local-intervention-flow article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 14px;
  border: 1px solid rgba(216, 222, 216, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform 180ms var(--ease-out), border-color 180ms ease, background 180ms ease;
}

.local-intervention-flow article:hover {
  border-color: rgba(92, 198, 194, 0.42);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.local-intervention-flow b {
  color: var(--teal-contrast);
  font-size: 0.86rem;
}

.local-intervention-flow strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.18;
}

.local-intervention-flow small {
  color: #526276;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.42;
}

.local-diagnostic-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.local-diagnostic-chips a,
.local-diagnostic-chips span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(92, 198, 194, 0.22);
  border-radius: 8px;
  background: #eefaf8;
  color: var(--teal-contrast);
  font-weight: 850;
  line-height: 1.2;
}

.local-diagnostic-chips a {
  transition: transform 180ms var(--ease-out), border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.local-diagnostic-chips a:hover,
.local-diagnostic-chips a:focus-visible {
  border-color: rgba(242, 140, 40, 0.52);
  background: #f8efe6;
  color: var(--amber-dark);
  outline: none;
  transform: translateY(-2px);
}

@keyframes local-card-sheen {
  0%,
  42% {
    transform: translateX(-72%);
  }

  72%,
  100% {
    transform: translateX(72%);
  }
}

:root {
  --surface-raised: linear-gradient(145deg, #f8f9f4, #e7ece7);
  --surface-soft: #eef2ed;
  --surface-border: rgba(255, 255, 255, 0.72);
  --shadow-neu: 12px 12px 28px rgba(17, 24, 39, 0.1), -10px -10px 24px rgba(255, 255, 255, 0.7);
  --shadow-neu-hover: 16px 16px 34px rgba(17, 24, 39, 0.13), -12px -12px 30px rgba(255, 255, 255, 0.78);
  --shadow-neu-pressed: inset 8px 8px 18px rgba(17, 24, 39, 0.09), inset -8px -8px 18px rgba(255, 255, 255, 0.72);
}

.service-card,
.check-panel,
.link-group,
.guidance-grid article,
.local-facts article,
.local-seo-grid article,
.split-cta,
  .city-list-details > summary,
.contact-form-details {
  border-color: rgba(16, 33, 53, 0.1);
  background: var(--surface-raised);
  box-shadow: var(--shadow-neu);
}

.site-footer .contact-form-details summary {
  color: var(--ink);
  text-shadow: none;
}

.site-footer .contact-form-details[open] summary {
  color: var(--teal-contrast);
}

.service-card:hover,
.service-card:focus-visible,
.link-group:hover,
.link-group:focus-within,
.guidance-grid article:hover,
.local-facts article:hover {
  box-shadow: var(--shadow-neu-hover);
}

.btn {
  box-shadow: 8px 8px 18px rgba(17, 24, 39, 0.12), -6px -6px 16px rgba(255, 255, 255, 0.24);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-neu-pressed);
}

.diagnostic-rail-section {
  overflow: hidden;
}

.diagnostic-rail-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: 30px;
}

.diagnostic-rail-heading h2 {
  max-width: 720px;
  font-size: clamp(2.2rem, 4.7vw, 4.6rem);
  line-height: 0.98;
}

.diagnostic-rail-heading > p {
  color: #526276;
  font-size: 1.06rem;
  line-height: 1.56;
}

.diagnostic-rail-viewport {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.diagnostic-rail-track {
  width: max-content;
  display: flex;
  gap: 16px;
  padding: 8px 16px 34px;
  animation: diagnostic-rail-scroll 44s linear infinite;
}

.diagnostic-rail-track:hover {
  animation-play-state: paused;
}

.diagnostic-rail-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 clamp(250px, 20vw, 312px);
  min-height: 238px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(16, 33, 53, 0.1);
  border-radius: 8px;
  background: var(--surface-raised);
  color: var(--ink);
  box-shadow: var(--shadow-neu);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease;
}

.diagnostic-rail-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -64px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(92, 198, 194, 0.14);
}

.diagnostic-rail-card:nth-child(3n + 2)::after {
  background: rgba(242, 140, 40, 0.16);
}

.diagnostic-rail-card:nth-child(3n + 3)::after {
  background: rgba(75, 121, 181, 0.15);
}

.diagnostic-rail-card:hover,
.diagnostic-rail-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(92, 198, 194, 0.32);
  box-shadow: var(--shadow-neu-hover);
  outline: none;
}

.diagnostic-rail-card > * {
  position: relative;
  z-index: 1;
}

.rail-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rail-card-index {
  color: var(--amber-dark);
  font-weight: 900;
  font-size: 0.95rem;
}

.rail-card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 33, 53, 0.08);
  border-radius: 8px;
  background: #f8f9f4;
  box-shadow: var(--shadow-neu-pressed);
}

.rail-card-icon img {
  width: 36px;
  height: 36px;
}

.diagnostic-rail-card strong {
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.12;
}

.diagnostic-rail-card span:not(.rail-card-top):not(.rail-card-index):not(.card-icon) {
  color: #526276;
  line-height: 1.45;
}

.diagnostic-rail-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-contrast);
  font-weight: 850;
}

.city-accordion {
  padding: 0;
  gap: 0;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
}

.city-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 116px;
  padding: 22px;
  color: var(--ink);
}

.city-accordion summary::-webkit-details-marker {
  display: none;
}

.city-accordion summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #dff2f0;
  color: var(--teal-contrast);
  font-size: 1.15rem;
  font-weight: 900;
  transition: transform 180ms var(--ease-out), background 180ms ease;
}

.city-accordion[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  background: #f7dcc2;
  color: var(--amber-dark);
}

.city-accordion summary strong,
.city-accordion summary small {
  display: block;
}

.city-accordion summary strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.12rem;
}

.city-accordion summary small {
  max-width: 52ch;
  color: #526276;
  font-size: 0.95rem;
  line-height: 1.48;
}

.city-accordion summary em {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(92, 198, 194, 0.18);
  border-radius: 999px;
  background: #f7f8f4;
  color: var(--teal-contrast);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
}

.city-accordion .compact-city-links {
  padding: 0 22px 22px;
  animation: accordion-links-in 220ms var(--ease-out) both;
}

.zone-hubs .city-accordion.link-group:hover {
  transform: translateY(-2px);
}

@keyframes diagnostic-pill-sheen {
  0%,
  42% {
    transform: translateX(-120%);
  }

  76%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes accordion-links-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cta-ring-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-10px, 8px, 0) rotate(18deg);
  }
}

@keyframes cta-ring-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.5;
  }

  50% {
    transform: translate3d(-16px, -6px, 0);
    opacity: 0.9;
  }
}

@keyframes diagnostic-rail-scroll {
  from {
    transform: translateX(0);
  }

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

@keyframes focus-grid-move {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 96px 48px, 48px 96px;
  }
}

@keyframes hero-slide-fade {
  0%,
  15% {
    opacity: 1;
  }

  20%,
  100% {
    opacity: 0;
  }
}

@keyframes hero-slide-zoom {
  0% {
    transform: scale(1.04) translate3d(calc(var(--hero-x) * -0.35), calc(var(--hero-y) * -0.35), 0);
  }

  50% {
    transform: scale(1.115) translate3d(calc(var(--hero-x) * -0.35), calc(var(--hero-y) * -0.35), 0);
  }

  100% {
    transform: scale(1.06) translate3d(calc(var(--hero-x) * -0.35), calc(var(--hero-y) * -0.35), 0);
  }
}

@media (max-width: 980px) {
  .visual-hero .section-inner {
    padding: 84px 0 70px;
  }

  .visual-hero h1 {
    font-size: 3.65rem;
  }

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

  .guidance-grid,
  .local-seo-grid,
  .local-detail-grid,
  .diagnostic-rail-heading,
  .journey-track,
  .prep-card-grid,
  .same-city-inner,
  .local-intervention-grid,
  .mini-faq-grid,
  .city-editorial-grid,
  .zone-hubs .link-cluster {
    grid-template-columns: 1fr;
  }

  .journey-track::before {
    display: none;
  }

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

  .local-choice-card.is-large {
    grid-column: span 1;
    min-height: 238px;
  }

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

  .local-intervention-flow article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .breadcrumbs {
    padding-top: 10px;
    padding-bottom: 14px;
  }

  .visual-hero {
    min-height: auto;
  }

  .visual-hero .section-inner {
    padding: 74px 0 62px;
  }

  .visual-hero h1 {
    max-width: 100%;
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .visual-hero .section-inner > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .visual-hero::after {
    background:
      linear-gradient(100deg, rgba(16, 33, 53, 0.97) 0%, rgba(16, 33, 53, 0.86) 58%, rgba(16, 33, 53, 0.36) 100%),
      linear-gradient(0deg, rgba(16, 33, 53, 0.48), rgba(92, 198, 194, 0.08));
  }

  .breadcrumbs ol {
    font-size: 0.82rem;
  }

  .hero-diagnostic-pills {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-diagnostic-pills a {
    min-height: 36px;
    padding: 8px 11px;
    font-size: 0.9rem;
  }

  .diagnostic-focus {
    margin-top: 0;
    padding: 52px 0;
  }

  .diagnostic-focus-heading {
    padding-top: 0;
  }

  .diagnostic-focus-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic-rail-heading h2 {
    font-size: 2.35rem;
  }

  .diagnostic-rail-card {
    flex-basis: 258px;
    min-height: 222px;
  }

  .diagnostic-focus-card {
    min-height: 0;
    padding: 18px;
  }

  .local-choice-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .local-choice-card,
  .local-choice-card.is-large {
    min-height: 204px;
    aspect-ratio: 1.38 / 1;
  }

  .local-choice-content {
    padding: 14px;
  }

  .local-choice-icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .local-choice-icon img {
    width: 36px;
    height: 36px;
  }

  .city-accordion summary {
    min-height: 0;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 18px;
  }

  .city-accordion summary em {
    order: 3;
  }

  .city-accordion .compact-city-links {
    padding: 0 18px 18px;
  }

  .guidance-grid article,
  .local-facts article {
    min-height: 0;
    padding: 18px;
  }

  .local-intervention-copy h2 {
    font-size: 2rem;
  }

  .local-intervention-card {
    padding: 16px;
  }

  .local-intervention-actions {
    display: grid;
  }

  .local-intervention-actions a {
    justify-content: center;
  }

  .local-diagnostic-chips a,
  .local-diagnostic-chips span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .visual-hero .section-inner {
    padding: 64px 0 54px;
  }

  .visual-hero h1 {
    font-size: 2.12rem;
  }

  .local-diagnostic-chips a,
  .local-diagnostic-chips span {
    flex-basis: calc(50% - 8px);
  }

  .local-diagnostic-chips a:last-child,
  .local-diagnostic-chips span:last-child {
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider .hero-slide {
    opacity: 0 !important;
    animation: none !important;
  }

  .hero-slider .hero-slide:first-child {
    opacity: 1 !important;
  }

  .hero-slider .hero-slide img {
    animation: none !important;
    transform: scale(1.06) !important;
  }

  .city-accordion .compact-city-links,
  .diagnostic-rail-track,
  .local-intervention-card::before,
  .cta-band .split-cta::before,
  .cta-band .split-cta::after {
    animation: none !important;
  }

  .diagnostic-rail-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
