﻿:root {
  --navy: #073d6f;
  --deep: #062b45;
  --blue: #0e9ed6;
  --cyan: #6dd8ef;
  --sea: #60b99d;
  --mist: #eef8fb;
  --ice: #f7fbfd;
  --sand: #f5f1e8;
  --ink: #172633;
  --muted: #5e7281;
  --line: #dcebf0;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 61, 111, 0.12);
  --shadow-soft: 0 10px 28px rgba(23, 38, 51, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--deep);
  color: var(--white);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 235, 240, 0.85);
  backdrop-filter: blur(16px);
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 7px 18px;
  color: var(--deep);
  background: linear-gradient(90deg, var(--mist), #ffffff, #effaf4);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.navbar {
  width: min(100%, var(--max));
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 230px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--deep);
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 850;
  text-decoration: none;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-call,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 12px 28px rgba(14, 158, 214, 0.24);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-light,
.btn-glass {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn:hover,
.nav-call:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero,
.page-hero {
  position: relative;
  min-height: calc(100vh - 110px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  background: var(--poster) center / cover no-repeat;
}

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

.hero-bg {
  object-fit: contain;
  object-position: 72% center;
  background: rgba(6, 43, 69, 0.92);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 43, 69, 0.78), rgba(6, 43, 69, 0.34), rgba(6, 43, 69, 0.12)),
    linear-gradient(0deg, rgba(6, 43, 69, 0.34), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 92px 20px 72px;
  color: var(--white);
}

.hero-video .hero-content {
  display: grid;
  grid-template-columns: minmax(280px, 560px) minmax(0, 1fr);
}

.hero-video .hero-content > * {
  grid-column: 1;
}

.hero-content h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede,
.page-hero p {
  max-width: 690px;
  font-size: 1.18rem;
}

.hero-actions,
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.footer-cta .eyebrow,
.quote-strip .eyebrow {
  color: var(--cyan);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-badges span,
.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(14, 158, 214, 0.22);
  border-radius: var(--radius);
  color: var(--deep);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-badges span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 82px 20px;
}

.intro-band {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: center;
}

.intro-copy h2,
.section-heading h2,
.split-copy h2,
.demo-copy h2,
.form-intro h2,
.contact-panel h2,
.footer-cta h2,
.quote-strip h2 {
  margin: 0 0 16px;
  color: var(--deep);
  font-size: clamp(1.85rem, 3.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-copy p,
.section-heading p,
.split-copy p,
.demo-copy p,
.form-intro p,
.city-main p,
.contact-panel p {
  color: var(--muted);
}

.proof-row {
  display: grid;
  gap: 12px;
}

.proof-row span {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sea);
  border-radius: var(--radius);
  background: var(--ice);
  box-shadow: var(--shadow-soft);
}

.proof-row strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
}

.split-section,
.service-demo,
.contact-layout,
.city-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 14px;
  align-items: end;
}

.image-stack img,
.media-hero img,
.service-card img,
.city-side img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.image-stack img:last-child {
  aspect-ratio: 4 / 6;
  margin-top: 54px;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-links a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
}

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

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

.service-card,
.review-card,
.area-card,
.contact-panel,
.quote-form,
.side-box,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.area-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 210px;
  border-radius: 0;
  box-shadow: none;
}

.service-card div {
  padding: 20px;
}

.service-card h3,
.review-card h3,
.area-card strong,
.side-box h2,
.faq-item summary {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 1.1rem;
  line-height: 1.25;
}

.service-card p,
.review-card p,
.side-box p {
  color: var(--muted);
}

.service-card a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.action-section,
.reviews-section,
.area-section,
.faq-section {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  padding-right: max(20px, calc((100vw - var(--max)) / 2 + 20px));
  background: linear-gradient(180deg, var(--ice), #ffffff);
}

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

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

.video-frame {
  position: relative;
  margin: 0;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--poster) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.video-frame figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(6, 43, 69, 0.68);
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.large-video,
.large-video video {
  min-height: 470px;
}

.service-demo {
  align-items: center;
}

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

.review-card {
  padding: 22px;
}

.stars {
  color: #f4b63f;
  font-size: 1.05rem;
  letter-spacing: 0;
}

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

.area-card {
  min-height: 148px;
  padding: 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(14, 158, 214, 0.08), rgba(96, 185, 157, 0.1)),
    var(--white);
}

.area-card span,
.area-card small {
  color: var(--muted);
  font-weight: 800;
}

.area-card strong {
  display: block;
  font-size: 1.65rem;
}

.form-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.quote-form {
  padding: 24px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(14, 158, 214, 0.28);
  outline-offset: 2px;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

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

.page-hero {
  width: min(100%, var(--max));
  min-height: auto;
  margin: 0 auto;
  padding: 70px 20px;
}

.media-hero {
  grid-template-columns: 1fr 0.85fr;
  gap: 42px;
}

.media-hero img {
  max-height: 560px;
}

.simple-hero {
  padding-bottom: 30px;
}

.page-hero h1 {
  color: var(--deep);
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.page-hero p {
  color: var(--muted);
}

.check-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--cyan), var(--blue));
}

.map-wrap {
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--mist);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-panel {
  padding: 28px;
}

.contact-link {
  display: block;
  margin: 12px 0;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
}

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

.faq-item {
  padding: 0 18px;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 0;
  list-style: none;
}

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

.faq-item p {
  margin-top: 0;
  color: var(--muted);
}

.city-content {
  align-items: start;
}

.city-main {
  max-width: 760px;
}

.city-main h2 {
  margin: 30px 0 10px;
  color: var(--deep);
  line-height: 1.15;
}

.city-main .lead {
  color: var(--ink);
  font-size: 1.08rem;
}

.city-side {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 16px;
}

.side-box {
  padding: 20px;
}

.quote-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--navy) 54%, var(--blue));
  box-shadow: var(--shadow);
}

.quote-strip h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
}

.quote-strip p {
  color: rgba(255, 255, 255, 0.84);
}

.internal-links {
  padding-top: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.84);
  background: var(--deep);
}

.footer-cta {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 54px 20px 34px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
}

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

.footer-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 34px 20px 44px;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand img {
  width: 126px;
  height: 126px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 8px;
}

.footer-grid h3 {
  color: var(--white);
  margin: 0 0 12px;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

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

.footer-badges span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.footer-bottom {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 18px 20px 30px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.floating-call {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--sea), var(--blue));
  box-shadow: 0 14px 36px rgba(6, 43, 69, 0.28);
  font-weight: 950;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1040px) {
  .nav-links {
    gap: 12px;
  }

  .nav-call {
    display: none;
  }

  .service-grid,
  .reviews-grid,
  .area-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  body {
    padding-bottom: 70px;
  }

  .trust-strip {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .navbar {
    min-height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 10px;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero-content {
    padding: 86px 20px 56px;
  }

  .hero-bg {
    object-position: center center;
  }

  .hero-video .hero-content {
    grid-template-columns: 1fr;
  }

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

  .hero-lede,
  .page-hero p {
    font-size: 1.02rem;
  }

  .intro-band,
  .split-section,
  .service-demo,
  .form-section,
  .contact-layout,
  .city-content,
  .media-hero {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 18px;
  }

  .image-stack {
    grid-template-columns: 1fr 1fr;
  }

  .image-stack img:last-child {
    margin-top: 24px;
  }

  .service-grid,
  .reviews-grid,
  .area-grid,
  .video-grid,
  .video-grid.two-up,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .video-frame,
  .video-frame video,
  .large-video,
  .large-video video {
    min-height: 430px;
  }

  .city-side {
    position: static;
  }

  .quote-strip,
  .footer-cta,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .floating-call {
    display: flex;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 2.32rem;
  }

  .hero-actions,
  .footer-cta-actions,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .nav-call {
    width: 100%;
  }

  .trust-badges span,
  .footer-badges span {
    width: 100%;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:last-child {
    aspect-ratio: 4 / 5;
    margin-top: 0;
  }

  .video-frame,
  .video-frame video,
  .large-video,
  .large-video video {
    min-height: 360px;
  }
}

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

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