
:root {
  --black: #02040A;
  --navy: #061B45;
  --navy-dark: #030711;
  --blue: #006DFF;
  --cyan: #00C9FF;
  --blue-soft: #E7F8FF;
  --orange: #FF5A00;
  --orange-dark: #C93600;
  --gold: #FF9D00;
  --yellow: #FFD21A;
  --orange-soft: #FFF1D7;
  --ink: #0B1220;
  --muted: #5D687C;
  --surface: #F7FBFF;
  --border: #D8E6F3;
  --white: #FFFFFF;
  --shadow: 0 18px 45px rgba(2, 4, 10, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #eefaff 38%, #fff3dc 72%, #ffffff 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
button, input, textarea { font: inherit; }
h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: 0; color: inherit; }
h1 { font-size: clamp(1.85rem, 3.8vw, 3.35rem); max-width: 880px; font-weight: 900; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.95rem); font-weight: 900; }
h3 { font-size: clamp(1.04rem, 1.8vw, 1.25rem); font-weight: 850; }
p { margin: 0; color: var(--muted); }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10000;
  background: var(--orange);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled, .site-header.is-open {
  background: linear-gradient(90deg, rgba(2,4,10,.97), rgba(3,7,17,.95), rgba(6,27,69,.92));
  box-shadow: 0 12px 30px rgba(2,4,10,.25);
  backdrop-filter: blur(12px);
}
.nav-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(92px, 26vw);
  padding: 4px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--black), var(--navy));
  border: 1px solid rgba(255,210,26,.42);
  box-shadow: 0 0 14px rgba(0,201,255,.18), 0 0 18px rgba(255,90,0,.14);
}
.brand img { width: 100%; height: auto; }
.desktop-nav, .nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
.desktop-nav a, .dropdown button, .phone-link {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.site-header.is-scrolled .desktop-nav a,
.site-header.is-scrolled .dropdown button,
.site-header.is-scrolled .phone-link,
.site-header.is-open .desktop-nav a,
.site-header.is-open .dropdown button,
.site-header.is-open .phone-link {
  color: var(--white);
}
.desktop-nav a:hover, .dropdown button:hover, .phone-link:hover { color: var(--yellow); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: linear-gradient(145deg, rgba(2,4,10,.98), rgba(6,27,69,.98));
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(2,4,10,.38), 0 0 0 1px rgba(0,201,255,.12);
  border: 1px solid rgba(255,210,26,.28);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  color: rgba(255,255,255,.9);
  padding: 9px 10px;
  border-radius: 6px;
  font-size: .92rem;
  border-left: 3px solid transparent;
}
.site-header.is-scrolled .dropdown-menu a,
.site-header.is-open .dropdown-menu a {
  color: rgba(255,255,255,.9);
}
.dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(255,90,0,.22), rgba(0,201,255,.18));
  border-left-color: var(--yellow);
  color: var(--white);
}
.mobile-toggle {
  display: none;
  border: 0;
  background: rgba(255,255,255,.95);
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 16px 18px;
}
.mobile-menu a {
  display: block;
  padding: 11px 4px;
  color: var(--ink);
  font-weight: 750;
  border-bottom: 1px solid var(--border);
}
.icon-sm { width: 18px; height: 18px; flex: 0 0 auto; }
.icon-md { width: 24px; height: 24px; flex: 0 0 auto; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--orange), var(--gold) 55%, var(--yellow)); color: var(--black); }
.btn-primary:hover { background: linear-gradient(135deg, var(--yellow), var(--orange), var(--cyan)); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-outline-light { border-color: var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-outline-dark { border-color: var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-sm { min-height: 42px; padding: 9px 13px; font-size: .92rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 28px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-soft), var(--orange-soft), #FFF9D9);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.eyebrow.light {
  color: var(--white);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
}
.home-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 130px 0 76px;
}
.hero-video, .hero-photo, .hero-fallback, .page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video { z-index: 0; }
.hero-photo { z-index: 0; }
.hero-fallback { z-index: -1; }
.hero-overlay, .page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(255,210,26,.14), transparent 24%),
    linear-gradient(120deg, rgba(2,4,10,.94), rgba(3,7,17,.84) 48%, rgba(6,27,69,.72));
  z-index: 1;
}
.hero-content, .page-hero-content {
  position: relative;
  z-index: 2;
}
.home-hero .hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-hero .button-row { justify-content: center; }
.home-hero h1, .page-hero h1 {
  text-shadow:
    0 0 16px rgba(255,210,26,.56),
    0 0 28px rgba(255,90,0,.5),
    0 0 42px rgba(0,201,255,.42),
    0 6px 20px rgba(0,0,0,.26);
}
.hero-content p {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  max-width: 720px;
  margin-top: 20px;
  margin-inline: auto;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 46px;
}
.hero-stats div {
  min-width: 148px;
  border: 1px solid rgba(255,255,255,.22);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  padding: 14px 16px;
  text-align: left;
  backdrop-filter: blur(8px);
}
.hero-stats strong { display: block; font-size: 2rem; line-height: 1; }
.hero-stats span { display: block; color: rgba(255,255,255,.76); font-weight: 750; }
.info-bar { background: linear-gradient(90deg, var(--black), var(--navy), var(--blue), var(--orange)); color: var(--white); }
.info-bar-grid {
  min-height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-weight: 800;
  font-size: .95rem;
}
.info-bar-grid span, .info-bar-grid a { display: inline-flex; align-items: center; gap: 8px; }
.info-bar svg { color: var(--orange); }
.section { padding: clamp(70px, 9vw, 112px) 0; }
.section.surface { background: linear-gradient(180deg, #eafaff 0%, #fff4db 58%, #ffffff 100%); }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading p { margin-top: 14px; font-size: 1.08rem; }
.light-heading h2, .light-heading p { color: var(--white); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr); }
.split.reverse > div:first-child { order: 2; }
.split p + p { margin-top: 16px; }
.check-list { display: grid; gap: 13px; margin-top: 24px; }
.check-list div {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
}
.check-list svg { color: var(--orange); }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
  margin-top: 28px;
}
.image-stack { position: relative; }
.image-stack img, .rounded-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.image-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  padding: 13px 16px;
  box-shadow: var(--shadow);
}
.image-note strong, .image-note span { display: block; }
.image-note span { color: var(--muted); font-size: .9rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-grid.small { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(6,31,67,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--cyan), var(--blue));
  z-index: 1;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img {
  width: 100%;
  height: 214px;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}
.service-card-body { padding: 18px; background: linear-gradient(180deg, #ffffff, #f8fbff); }
.service-card h3 { color: var(--navy); font-size: 1.03rem; }
.service-card p { margin-top: 10px; font-size: .94rem; }
.service-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--orange);
  font-weight: 900;
}
.process-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--navy) 42%, var(--blue) 68%, var(--orange));
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-grid article {
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 22px;
}
.process-grid span {
  color: var(--orange);
  font-weight: 950;
  font-size: 1.4rem;
}
.process-grid h3 { margin-top: 18px; color: var(--white); }
.process-grid p { margin-top: 10px; color: rgba(255,255,255,.78); }
.areas-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-tags span {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 850;
  padding: 10px 13px;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(6,31,67,.06);
}
.area-section {
  background: linear-gradient(135deg, #ffffff 0%, var(--blue-soft) 42%, #FFF8D6 72%, var(--orange-soft) 100%);
}
.area-map-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}
.area-map-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-map-button {
  border: 1px solid rgba(10,55,115,.18);
  background: rgba(255,255,255,.9);
  color: var(--navy);
  border-radius: 8px;
  padding: 10px 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(6,31,67,.06);
  transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.area-map-button:hover { transform: translateY(-2px); border-color: var(--blue); }
.area-map-button.is-active {
  color: var(--black);
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--yellow), var(--cyan));
  box-shadow: 0 12px 24px rgba(19,136,216,.2);
}
.map-card {
  border: 1px solid rgba(10,55,115,.14);
  border-radius: 8px;
  padding: 8px;
  background: linear-gradient(135deg, var(--orange), var(--yellow), var(--cyan), var(--blue));
  box-shadow: var(--shadow);
}
.map-card iframe {
  width: 100%;
  height: 430px;
  border: 0;
  border-radius: 6px;
  background: var(--blue-soft);
}
.reviews-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--navy) 44%, var(--blue) 72%, var(--cyan));
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.07));
  box-shadow: 0 18px 38px rgba(0,0,0,.15);
}
.review-card:nth-child(2) { border-top: 4px solid var(--orange); }
.review-card:nth-child(3) { border-top: 4px solid var(--cyan); }
.review-stars {
  display: flex;
  gap: 5px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.review-card h3 { color: var(--white); }
.review-card p { color: rgba(255,255,255,.82); margin-top: 12px; }
.review-card div:last-child {
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 20px;
  padding-top: 14px;
}
.review-card strong, .review-card span { display: block; }
.review-card span { color: rgba(255,255,255,.7); font-weight: 750; font-size: .92rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 245px;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 750;
}
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 52px;
}
.faq-list {
  border-top: 1px solid var(--border);
}
.faq-list details {
  border-bottom: 1px solid var(--border);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary svg { transform: rotate(180deg); }
.faq-list p { padding: 0 0 20px; }
.cta-band {
  background: linear-gradient(135deg, var(--orange), var(--gold) 34%, var(--blue) 72%, var(--cyan));
  color: var(--white);
  padding: 50px 0;
}
.cta-content {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 8px; max-width: 650px; }
.quote-section { background: var(--surface); }
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .8fr);
  gap: 28px;
  align-items: start;
}
.quote-frame {
  min-height: 681px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.quote-frame iframe {
  width: 100%;
  height: 681px;
  min-height: 681px;
  border: 0;
  display: block;
}
.quote-fallback {
  padding: 12px 16px 14px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.quote-fallback a {
  display: inline-flex;
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-panel, .contact-card, .map-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 8px 22px rgba(6,31,67,.08);
}
.contact-panel h3, .contact-card h2, .map-panel h3 { color: var(--navy); }
.contact-panel p, .contact-card p { margin-top: 10px; }
.contact-panel a, .contact-panel div:not(:first-child), .contact-card a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.contact-panel svg, .contact-card svg { color: var(--orange); }
.contact-panel span, .contact-panel strong, .contact-panel small { display: block; }
.contact-panel small { color: var(--muted); font-size: .82rem; }
.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 128px 0 68px;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.2vw, 2.85rem); max-width: 760px; }
.page-hero p {
  color: rgba(255,255,255,.86);
  margin-top: 16px;
  max-width: 690px;
  font-size: 1.15rem;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,.72);
  margin-bottom: 14px;
  font-size: .93rem;
  font-weight: 750;
}
.breadcrumbs a:hover { color: var(--white); }
.include-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.include-grid div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
}
.include-grid svg { color: var(--orange); margin-bottom: 10px; }
.include-grid h3 { color: var(--navy); font-size: 1rem; }
.feature-grid, .value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid article, .value-grid article {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}
.feature-grid h3, .value-grid h3 { color: var(--navy); }
.feature-grid p, .value-grid p { margin-top: 10px; }
.service-depth {
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
}
.service-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 28px;
  align-items: stretch;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--navy) 45%, var(--blue) 68%, var(--orange));
  box-shadow: var(--shadow);
}
.service-highlight .eyebrow {
  background: rgba(255,255,255,.16);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.18);
}
.service-highlight p { color: rgba(255,255,255,.84); margin-top: 14px; }
.service-highlight > p {
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.scenario-grid article {
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6,31,67,.07);
}
.scenario-grid article:nth-child(2) { border-top-color: var(--blue); }
.scenario-grid article:nth-child(3) { border-top-color: var(--cyan); }
.scenario-grid h3 { color: var(--navy); }
.scenario-grid p { margin-top: 10px; }
.response-list { margin-top: clamp(40px, 5vw, 58px); }
.response-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.response-steps article {
  border: 1px solid rgba(10,55,115,.14);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}
.response-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--yellow), var(--blue));
  font-weight: 950;
  margin-bottom: 16px;
}
.response-steps h3 { color: var(--navy); }
.response-steps p { margin-top: 10px; }
.stats-band {
  background: linear-gradient(90deg, var(--black), var(--navy), var(--blue));
  color: var(--white);
  padding: 42px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}
.stats-grid strong { display: block; font-size: 2.3rem; color: var(--yellow); line-height: 1; }
.stats-grid span { display: block; color: rgba(255,255,255,.82); font-weight: 800; margin-top: 8px; }
.contact-top-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
}
.contact-card a {
  color: var(--navy);
  font-weight: 900;
}
.map-panel iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 8px;
  margin-top: 14px;
}
.footer {
  background: linear-gradient(135deg, var(--black), var(--navy-dark) 52%, #041D47);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 58px 0;
}
.footer-brand {
  display: block;
  width: min(152px, 100%);
  background: linear-gradient(135deg, var(--black), var(--navy));
  border: 1px solid rgba(255,210,26,.36);
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 0 18px rgba(0,201,255,.18), 0 0 22px rgba(255,90,0,.16);
}
.footer p, .footer li, .footer a { color: rgba(255,255,255,.76); }
.footer p { margin-top: 16px; font-size: .95rem; }
.footer h3 {
  font-size: .98rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer a:hover { color: var(--orange); }
.footer-areas { font-size: .83rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: .86rem; }

@media (max-width: 1120px) {
  .desktop-nav, .nav-actions { display: none; }
  .mobile-toggle { display: inline-flex; }
  .site-header.is-open .mobile-menu { display: block; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid, .scenario-grid, .response-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }
  .home-hero { min-height: 88vh; padding: 112px 0 54px; }
  h1 { font-size: clamp(1.85rem, 8.8vw, 2.75rem); }
  .page-hero h1 { font-size: clamp(1.72rem, 7.4vw, 2.35rem); }
  .button-row, .cta-content { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .info-bar-grid { gap: 10px; padding: 12px 0; justify-content: flex-start; }
  .split, .split.reverse, .areas-grid, .area-map-grid, .service-highlight, .faq-grid, .quote-grid, .contact-top-grid {
    grid-template-columns: 1fr;
  }
  .split.reverse > div:first-child { order: 0; }
  .service-grid, .service-grid.small, .gallery-grid, .include-grid, .feature-grid, .value-grid, .review-grid, .scenario-grid, .response-steps, .stats-grid, .process-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats { width: 100%; }
  .hero-stats div { flex: 1 1 100%; }
  .brand { width: min(82px, 28vw); }
  .page-hero { min-height: 390px; padding-top: 112px; }
  .map-card iframe { height: 340px; }
  .quote-frame { min-height: 720px; }
  .quote-frame iframe { height: 720px; min-height: 720px; }
}
