:root {
  --bg: #05070b;
  --bg-2: #0a0f17;
  --panel: #101722;
  --panel-2: #151e2a;
  --line: rgba(122, 190, 255, 0.2);
  --text: #f3f7fb;
  --muted: #a9b6c7;
  --blue: #008cff;
  --blue-2: #35b7ff;
  --cyan: #64e4ff;
  --copper: #f0a34b;
  --ok: #3ddc97;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.44);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 75%);
  z-index: -1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.08; margin: 0 0 1rem; letter-spacing: 0; }
h1 { font-size: 3.9rem; max-width: 940px; }
h2 { font-size: 2.45rem; }
h3 { font-size: 1.18rem; }
svg { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--blue);
  color: white;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 11, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(0, 140, 255, 0.38);
}
.brand strong { display: block; font-size: 1rem; }
.brand small { display: block; color: var(--muted); font-size: 0.78rem; }

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  color: #dce7f3;
  font-size: 0.92rem;
  padding: 0.7rem 0.78rem;
  border-radius: 6px;
  transition: background 180ms ease, color 180ms ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(0, 140, 255, 0.13);
  color: white;
}

.header-call,
.menu-toggle {
  border: 1px solid var(--line);
  color: white;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
}
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.85rem;
  border-color: rgba(53, 183, 255, 0.85);
  background: linear-gradient(135deg, var(--blue), #005dff);
  color: white;
  font-weight: 800;
  box-shadow: 0 0 26px rgba(0, 140, 255, 0.34), inset 0 0 0 1px rgba(255,255,255,0.15);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.header-call:hover {
  transform: translateY(-1px);
  border-color: rgba(100, 228, 255, 0.95);
  background: linear-gradient(135deg, #12a3ff, #006cff);
  box-shadow: 0 0 34px rgba(0, 140, 255, 0.48), inset 0 0 0 1px rgba(255,255,255,0.2);
}
.header-call svg { filter: drop-shadow(0 0 8px rgba(255,255,255,0.24)); }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  place-items: center;
}

.hero {
  min-height: 740px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-slider,
.hero-slide,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slider {
  z-index: 0;
  background: #02050a;
}
.hero-slide {
  opacity: 0;
  overflow: hidden;
  animation: heroSlideCycle 36.4s infinite;
  transition: opacity 1400ms ease;
}
.hero-slide:nth-child(1),
.hero-slide:nth-child(1) img { animation-delay: 0s; }
.hero-slide:nth-child(2),
.hero-slide:nth-child(2) img { animation-delay: 5.2s; }
.hero-slide:nth-child(3),
.hero-slide:nth-child(3) img { animation-delay: 10.4s; }
.hero-slide:nth-child(4),
.hero-slide:nth-child(4) img { animation-delay: 15.6s; }
.hero-slide:nth-child(5),
.hero-slide:nth-child(5) img { animation-delay: 20.8s; }
.hero-slide:nth-child(6),
.hero-slide:nth-child(6) img { animation-delay: 26s; }
.hero-slide:nth-child(7),
.hero-slide:nth-child(7) img { animation-delay: 31.2s; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  object-fit: cover;
  object-position: var(--slide-position, center);
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.04);
  animation: heroImageZoom 36.4s infinite;
  transition: transform 8200ms cubic-bezier(.2,.7,.2,1), filter 1400ms ease;
}
.hero-slide.is-active img {
  transform: scale(1.13);
  filter: saturate(1.1) contrast(1.06);
}
.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,7,11,0.98) 0%, rgba(5,7,11,0.86) 35%, rgba(5,7,11,0.48) 69%, rgba(5,7,11,0.28) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5,7,11,0.5) 20%, transparent 48%),
    radial-gradient(ellipse at 18% 52%, rgba(0, 140, 255, 0.24), transparent 42%);
}
@keyframes heroSlideCycle {
  0% { opacity: 0; }
  4% { opacity: 1; }
  14% { opacity: 1; }
  19% { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes heroImageZoom {
  0% { transform: scale(1.055); }
  18% { transform: scale(1.13); }
  100% { transform: scale(1.13); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 360px);
  gap: 2rem;
  align-items: end;
}
.hero-copy p { font-size: 1.18rem; max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
  margin-bottom: 0.95rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(0,140,255,0.7);
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.86rem 1rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, border 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #005dff);
  color: white;
  box-shadow: 0 0 30px rgba(0, 140, 255, 0.34);
}
.btn-primary:hover { box-shadow: 0 0 48px rgba(0, 140, 255, 0.52); }
.btn-outline {
  border-color: rgba(100,228,255,0.38);
  background: rgba(0, 140, 255, 0.08);
  color: white;
}
.btn-ghost {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #e9f4ff;
}
.hero-phone {
  margin-top: 1.3rem;
  font-size: 1.45rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 0 28px rgba(0, 140, 255, 0.55);
}
.hero-panel,
.urgent-card,
.contact-card,
.map-panel,
.lead-form,
.detail-block,
.feature,
.process-step,
.review,
.faq-group {
  background: linear-gradient(180deg, rgba(21, 30, 42, 0.92), rgba(10, 15, 23, 0.92));
  border: 1px solid rgba(122,190,255,0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel {
  padding: 1.3rem;
  border-left: 3px solid var(--blue);
}
.hero-panel span { color: var(--cyan); font-weight: 800; }
.hero-panel strong { display: block; font-size: 1.18rem; margin: 0.35rem 0 0.5rem; }

.trust-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(10,15,23,0.78);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid div {
  padding: 1.1rem;
  display: grid;
  gap: 0.25rem;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.trust-grid div:last-child { border-right: 1px solid rgba(255,255,255,0.08); }
.trust-grid svg { color: var(--blue-2); font-size: 1.35rem; }
.trust-grid span { color: var(--muted); font-size: 0.92rem; }

.section { padding: 6rem 0; }
.section-head {
  margin-bottom: 2.1rem;
  max-width: 780px;
}
.section-head p { font-size: 1.05rem; }
.dark-section {
  background: linear-gradient(180deg, rgba(10,15,23,0.78), rgba(5,7,11,0.96));
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.services-grid.compact { grid-template-columns: repeat(3, 1fr); }
.service-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(16,23,34,0.86);
  border: 1px solid rgba(122,190,255,0.16);
  box-shadow: 0 18px 45px rgba(0,0,0,0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,140,255,0.45);
  box-shadow: 0 24px 70px rgba(0,0,0,0.34), 0 0 38px rgba(0,140,255,0.16);
}
.service-media {
  display: block;
  position: relative;
  height: 205px;
  overflow: hidden;
}
.service-media img,
.gallery-item img,
.page-hero-media img,
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,7,11,0.78), transparent 56%);
}
.service-media span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  z-index: 1;
  color: white;
  border-radius: 8px;
  background: rgba(0,140,255,0.86);
  box-shadow: 0 0 26px rgba(0,140,255,0.55);
}
.service-body { padding: 1.1rem; }
.service-body h3 a:hover,
.text-link:hover,
.footer-grid a:hover { color: var(--cyan); }
.service-body ul,
.large-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.55rem;
}
.service-body li,
.large-list li {
  color: #d7e3ef;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.service-body li svg,
.large-list li svg { color: var(--ok); margin-top: 0.2rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--blue-2);
  font-weight: 800;
}

.split-grid,
.page-hero-grid,
.service-detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}
.split-media {
  height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.split-copy p { font-size: 1.04rem; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.stats div {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(122,190,255,0.16);
  background: rgba(255,255,255,0.04);
}
.stats strong { display: block; color: white; font-size: 1.05rem; }
.stats span { color: var(--muted); font-size: 0.88rem; }

.feature-grid,
.process-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature {
  padding: 1.25rem;
  min-height: 215px;
}
.feature svg { color: var(--blue-2); font-size: 1.55rem; margin-bottom: 1rem; }
.feature p { font-size: 0.95rem; }
.process-grid { grid-template-columns: repeat(3, 1fr); }
.process-step { padding: 1.25rem; }
.process-step strong {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  margin-bottom: 1rem;
}
.reviews-grid { grid-template-columns: repeat(3, 1fr); }
.review {
  padding: 1.25rem;
  margin: 0;
}
.review p { color: #e4eef8; font-size: 1.02rem; }
.review cite { color: var(--cyan); font-style: normal; font-weight: 700; }

.emergency-preview {
  background:
    linear-gradient(90deg, rgba(0,140,255,0.18), rgba(5,7,11,0.6)),
    var(--panel);
  border-top: 1px solid rgba(100,228,255,0.16);
  border-bottom: 1px solid rgba(100,228,255,0.16);
}
.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.emergency-inner h2 { max-width: 760px; }

.zones { padding-top: 4rem; }
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.zone-list a,
.zone-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(122,190,255,0.2);
  border-radius: 6px;
  color: #e5f2ff;
  background: rgba(255,255,255,0.04);
}
.zone-list a:hover { background: rgba(0,140,255,0.12); border-color: rgba(0,140,255,0.46); }
.zone-list.small { margin-top: 1rem; }
.zone-list.small span { font-size: 0.9rem; }

.local-landing-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: -2.4rem;
  margin-bottom: 3.6rem;
}

.local-service-seo .cta-actions,
#faq-seo-local .faq-grid {
  margin-top: 1.2rem;
}

.cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(0,140,255,0.24), rgba(10,15,23,0.96));
  border-top: 1px solid rgba(100,228,255,0.2);
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}
.cta-band h2 { max-width: 680px; }
.cta-band p { max-width: 700px; }

.page-hero {
  padding: 7.5rem 0 5rem;
  background:
    linear-gradient(180deg, rgba(0,140,255,0.13), transparent 48%),
    linear-gradient(90deg, rgba(5,7,11,1), rgba(10,15,23,0.92));
  border-bottom: 1px solid rgba(122,190,255,0.14);
}
.page-hero h1 { font-size: 3.2rem; }
.narrow { max-width: 850px; }
.page-hero-media {
  height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.service-detail-grid { align-items: stretch; }
.detail-block { padding: 1.45rem; }
.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.pill-grid span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem;
  border: 1px solid rgba(122,190,255,0.18);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
}
.pill-grid svg { color: var(--ok); }

.urgency-hero .page-hero-grid,
.contact-hero .page-hero-grid { align-items: stretch; }
.urgent-card,
.contact-card {
  padding: 1.5rem;
  display: grid;
  align-content: center;
  gap: 0.85rem;
  border-left: 3px solid var(--blue);
}
.urgent-card strong {
  color: white;
  font-size: 2.15rem;
  text-shadow: 0 0 28px rgba(0,140,255,0.54);
}
.urgent-card span { color: var(--cyan); font-weight: 800; }
.contact-card a,
.contact-card span {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #e8f3ff;
}
.contact-card svg { color: var(--blue-2); margin-top: 0.18rem; }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}
.gallery-filters button {
  color: #dce7f3;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(122,190,255,0.18);
  border-radius: 6px;
  padding: 0.72rem 0.9rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.gallery-filters button:hover,
.gallery-filters button.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(122,190,255,0.16);
  box-shadow: 0 16px 45px rgba(0,0,0,0.25);
}
.gallery-item img { height: 285px; }
.gallery-item figcaption {
  padding: 0.85rem 1rem;
  font-weight: 800;
}
.gallery-item.is-hidden { display: none; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.faq-group { padding: 1.15rem; }
.faq-group h2 { font-size: 1.25rem; color: var(--cyan); }
details {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.85rem 0;
}
summary {
  cursor: pointer;
  color: white;
  font-weight: 800;
}
details p { margin: 0.7rem 0 0; }

.contact-grid { align-items: start; }
.lead-form {
  padding: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.form-head,
.full { grid-column: 1 / -1; }
label {
  display: grid;
  gap: 0.4rem;
  color: #e8f3ff;
  font-weight: 800;
}
input,
select,
textarea {
  width: 100%;
  color: white;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(122,190,255,0.2);
  border-radius: 6px;
  padding: 0.82rem 0.9rem;
  font: inherit;
}
textarea { resize: vertical; }
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0,140,255,0.6);
  border-color: var(--blue);
}
.native-select-hidden { display: none; }
.custom-select {
  position: relative;
  width: 100%;
}
.custom-select__button {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  color: white;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(122,190,255,0.2);
  border-radius: 6px;
  padding: 0.82rem 0.9rem;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.custom-select__button::after {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}
.custom-select__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-select__button:hover,
.custom-select__button:focus {
  outline: none;
  border-color: rgba(0,140,255,0.75);
  background: rgba(255,255,255,0.075);
  box-shadow: 0 0 0 3px rgba(0,140,255,0.18);
}
.custom-select.is-open .custom-select__button::after {
  transform: rotate(225deg) translate(-2px, -1px);
}
.custom-select__panel {
  position: absolute;
  z-index: 60;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  display: none;
  max-height: min(320px, 46vh);
  overflow-y: auto;
  padding: 0.35rem;
  background: linear-gradient(180deg, #121b28 0%, #07101d 100%);
  border: 1px solid rgba(0,140,255,0.5);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0,0,0,0.55), 0 0 28px rgba(0,140,255,0.2);
}
.custom-select.is-open .custom-select__panel { display: block; }
.custom-select__group {
  padding: 0.75rem 0.75rem 0.35rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.custom-select__option {
  width: 100%;
  display: block;
  color: #e8f3ff;
  background: transparent;
  border: 0;
  border-radius: 6px;
  padding: 0.72rem 0.75rem;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.custom-select__option:hover,
.custom-select__option:focus,
.custom-select__option[aria-selected="true"] {
  outline: none;
  color: white;
  background: linear-gradient(90deg, rgba(0,119,255,0.95), rgba(0,204,255,0.55));
}
.check-row {
  grid-template-columns: auto 1fr;
  align-items: center;
}
.check-row input { width: auto; }
.form-note { font-size: 0.9rem; }
.form-note a { color: var(--cyan); font-weight: 800; }
.map-panel { padding: 1.35rem; }
.map-panel iframe {
  width: 100%;
  min-height: 390px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(0.2) contrast(1.06);
}

.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.privacy-row {
  align-items: flex-start;
  padding: 0.85rem;
  border: 1px solid rgba(122,190,255,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}
.privacy-row a {
  color: var(--cyan);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.map-consent {
  min-height: 390px;
  display: grid;
  place-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(122,190,255,0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,140,255,0.18), transparent 42%),
    rgba(255,255,255,0.035);
}
.map-consent[hidden],
iframe[hidden] {
  display: none !important;
}

.legal-hero {
  padding: 7rem 0 3rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(0,140,255,0.24), transparent 34%),
    linear-gradient(135deg, rgba(7,12,20,0.98), rgba(3,5,9,0.98));
  border-bottom: 1px solid rgba(122,190,255,0.16);
}
.legal-hero p {
  max-width: 780px;
}
.legal-section {
  padding: 4rem 0;
}
.legal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.legal-card {
  border: 1px solid rgba(122,190,255,0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
  box-shadow: 0 20px 55px rgba(0,0,0,0.22);
}
.legal-card {
  padding: 1.35rem;
}
.legal-card a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-card a:hover {
  color: #e5f2ff;
}
.legal-data {
  margin: 0;
  color: var(--muted);
}
.legal-data dt {
  color: var(--text);
  font-weight: 850;
  margin-top: 0.9rem;
}
.legal-data dt:first-child {
  margin-top: 0;
}
.legal-data dd {
  margin: 0.18rem 0 0;
}
.legal-data ul {
  color: var(--muted);
  padding-left: 1.2rem;
}
.legal-data li {
  margin: 0.45rem 0;
}
.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(122,190,255,0.16);
  border-radius: 8px;
}
.legal-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}
.legal-table th,
.legal-table td {
  padding: 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}
.legal-table th {
  color: var(--text);
  background: rgba(0,140,255,0.12);
}
.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.legal-links a,
.legal-links button {
  display: inline-flex;
  align-items: center;
  color: #dce7f3;
  font: inherit;
  font-weight: 750;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.legal-links a:hover,
.legal-links button:hover {
  color: var(--cyan);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cookie-banner__content {
  width: min(920px, 100%);
  pointer-events: auto;
  padding: 1.2rem;
  border: 1px solid rgba(122,190,255,0.3);
  border-radius: 8px;
  background: rgba(5,7,11,0.96);
  box-shadow: 0 26px 80px rgba(0,0,0,0.52), 0 0 36px rgba(0,140,255,0.18);
  backdrop-filter: blur(18px);
}
.cookie-banner h2 {
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
}
.cookie-options {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
}
.cookie-options[hidden],
.cookie-actions [hidden] {
  display: none !important;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.cookie-actions .btn {
  min-width: 140px;
}
.cookie-note {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
}
.cookie-note a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 4rem 0 6rem;
  background: #030509;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 2rem;
}
.footer-grid h2 { font-size: 1rem; color: var(--cyan); }
.footer-grid a {
  display: block;
  color: #e5f2ff;
  margin: 0.45rem 0;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.social-links a,
.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.social-links a {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(122,190,255,0.22);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
}
.social-links a:hover {
  border-color: rgba(100,228,255,0.56);
  background: rgba(0,140,255,0.12);
}
.footer-brand { margin-bottom: 1rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.9rem;
}
.floating-cta {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: grid;
  gap: 0.35rem;
  padding: 0.35rem;
  background: rgba(5,7,11,0.86);
  border: 1px solid rgba(122,190,255,0.22);
  border-radius: 8px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  position: relative;
  width: 52px;
  height: 52px;
  color: white;
  padding: 0;
  border-radius: 6px;
  font-weight: 900;
}
.floating-cta a span {
  position: absolute;
  right: calc(100% + 0.55rem);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  padding: 0.55rem 0.72rem;
  border-radius: 6px;
  color: white;
  background: rgba(5,7,11,0.94);
  border: 1px solid rgba(122,190,255,0.22);
  box-shadow: 0 16px 35px rgba(0,0,0,0.28);
  transition: opacity 160ms ease, transform 160ms ease;
}
.floating-cta a:hover span,
.floating-cta a:focus-visible span {
  opacity: 1;
  transform: translate(-4px, -50%);
}
.floating-cta a:first-child {
  background: var(--blue);
  box-shadow: 0 0 24px rgba(0,140,255,0.34);
}
.floating-cta a:hover { background: rgba(255,255,255,0.1); }
.floating-cta a:first-child:hover { background: #007be0; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  h1 { font-size: 3.05rem; }
  h2 { font-size: 2.1rem; }
  .menu-toggle { display: grid; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    grid-template-columns: 1fr;
    background: rgba(5,7,11,0.97);
    border: 1px solid rgba(122,190,255,0.2);
    border-radius: 8px;
    padding: 0.65rem;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .header-call span { display: none; }
  .hero-content,
  .split-grid,
  .page-hero-grid,
  .service-detail-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: 700px; }
  .hero-content { padding-top: 7rem; }
  .hero-panel { max-width: 540px; }
  .services-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid,
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid,
  .process-grid,
  .footer-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-card { position: static; }
  .emergency-inner,
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand strong { font-size: 0.93rem; }
  .brand small { font-size: 0.72rem; }
  .main-nav { top: 68px; left: 14px; right: 14px; }
  .header-call { width: 44px; height: 44px; justify-content: center; padding: 0; }
  .hero { min-height: 670px; }
  .hero-slide { transition-duration: 1000ms; }
  .hero-slide img { transform: scale(1.08); }
  .hero-slide.is-active img { transform: scale(1.16); }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5,7,11,0.82) 0%, rgba(5,7,11,0.64) 34%, rgba(5,7,11,0.92) 100%),
      radial-gradient(ellipse at 50% 25%, rgba(0, 140, 255, 0.18), transparent 52%);
  }
  .hero-content { padding: 5.4rem 0 4rem; }
  h1,
  .page-hero h1 { font-size: 2.2rem; }
  h2 { font-size: 1.72rem; }
  .hero-copy p { font-size: 1rem; }
  .hero-actions,
  .cta-actions { width: 100%; }
  .btn { width: 100%; }
  .hero-phone { font-size: 1.18rem; }
  .section { padding: 4rem 0; }
  .services-grid,
  .gallery-grid,
  .feature-grid,
  .trust-grid,
  .pill-grid,
  .stats,
  .lead-form { grid-template-columns: 1fr; }
  .split-media,
  .page-hero-media { height: 330px; }
  .service-media { height: 210px; }
  .gallery-item img { height: 240px; }
  .footer-bottom { flex-direction: column; }
  .legal-links {
    justify-content: flex-start;
    gap: 0.65rem 0.9rem;
  }
  .map-consent,
  .map-panel iframe { min-height: 320px; }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 86px;
  }
  .cookie-banner__content {
    max-height: calc(100vh - 110px);
    overflow: auto;
    padding: 1rem;
  }
  .cookie-actions .btn { min-width: 0; }
  .floating-cta {
    top: auto;
    left: 10px;
    right: 10px;
    bottom: 10px;
    transform: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .floating-cta a {
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0.62rem 0.35rem;
    font-size: 0.78rem;
  }
  .floating-cta a span {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    white-space: normal;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .floating-cta svg { width: 1rem; height: 1rem; }
  .site-footer { padding-bottom: 6.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
