:root {
  --navy: #06114a;
  --navy-2: #0b1d63;
  --yellow: #fff126;
  --yellow-2: #d8c800;
  --ink: #101828;
  --muted: #667085;
  --surface: #f4f6fb;
  --line: #d8deea;
  --white: #ffffff;
  --green: #315f46;
  --shadow: 0 18px 42px rgba(4, 12, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 18px;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: 0;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 22px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--navy);
  border-radius: 6px;
}

.skip-link:focus {
  left: 16px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  color: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 17, 74, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.nav-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 176px;
  height: auto;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 3px 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links a,
.nav-dropdown > button,
.phone-link {
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-links a:hover,
.nav-dropdown > button:hover,
.phone-link:hover,
.nav-links .is-active {
  color: var(--yellow);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: -18px;
  width: 280px;
  padding: 12px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.dropdown-panel a {
  display: block;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 6px;
}

.dropdown-panel a:hover {
  background: var(--surface);
  color: var(--navy);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 12px 26px rgba(255, 241, 38, 0.22);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-small {
  min-height: 42px;
  padding: 10px 15px;
}

.text-link {
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--yellow);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-video,
.subhero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay,
.subhero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 17, 74, 0.92), rgba(6, 17, 74, 0.55)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.18));
}

.hero-content,
.subhero-content {
  position: relative;
  z-index: 2;
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 78px;
}

.hero-content {
  max-width: 980px;
  text-align: center;
}

.hero-content p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 241, 38, 0.14);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-stats {
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(720px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-stats div {
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--yellow);
  font-size: 34px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 92px 0;
}

.section > *,
.footer-grid,
.footer-bottom,
.cta-band,
.area-band {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-header.narrow {
  max-width: 760px;
}

.section-header p,
.split-section > div > p,
.subhero-content p,
.area-band p {
  font-size: 18px;
  color: var(--muted);
}

.bg-surface {
  background: var(--surface);
}

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

.split-section.reverse {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
}

.image-stack {
  position: relative;
  min-height: 430px;
  width: 100%;
  max-width: 500px;
  justify-self: center;
}

.image-stack img,
.media-card img,
.image-grid img,
.card-img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.stack-main {
  height: auto;
  aspect-ratio: 500 / 331;
  box-shadow: var(--shadow);
}

.stack-float {
  position: absolute;
  right: -18px;
  bottom: 0;
  width: 54%;
  height: auto;
  aspect-ratio: 500 / 331;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}

.media-card {
  width: 100%;
  max-width: 524px;
  justify-self: center;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-card img {
  height: auto;
  aspect-ratio: 500 / 331;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 520px;
  justify-self: center;
}

.image-grid img {
  height: auto;
  aspect-ratio: 500 / 331;
}

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

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

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

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

.service-card,
.info-card,
.contact-panel,
.contact-cards > div,
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(6, 17, 74, 0.08);
}

.card-img {
  height: 220px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.card-body,
.info-card,
.contact-panel,
.contact-cards > div,
.review-card {
  padding: 26px;
}

.service-card h3,
.info-card h3,
.feature-list h3,
.contact-panel h3,
.contact-cards h3 {
  color: var(--navy);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.feature-list > div {
  padding-left: 18px;
  border-left: 4px solid var(--yellow);
}

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

.process-grid > div {
  padding: 28px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}

.process-grid h3,
.process-grid p {
  color: var(--white);
}

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

.review-card {
  position: relative;
  margin: 0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  right: 22px;
  top: 10px;
  color: rgba(6, 17, 74, 0.08);
  font-size: 96px;
  line-height: 1;
  font-weight: 900;
}

.stars {
  color: var(--yellow-2);
  font-size: 20px;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
}

.review-card figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 900;
}

.review-card strong,
.review-card em {
  display: block;
}

.review-card strong {
  color: var(--navy);
}

.review-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  margin-top: 2px;
}

.area-band {
  margin-top: 0;
  margin-bottom: 0;
  padding: 54px 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.5fr);
  gap: 34px;
  align-items: start;
  color: var(--white);
}

.area-band::before {
  content: "";
  position: absolute;
}

section.area-band {
  width: 100%;
  max-width: none;
  background: var(--navy);
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
}

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

.area-copy {
  max-width: 460px;
  padding-top: 18px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.area-map-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.92fr) minmax(460px, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.area-chip,
.pill-list span,
.mini-list span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 241, 38, 0.12);
  color: var(--yellow);
  border: 1px solid rgba(255, 241, 38, 0.28);
  font-weight: 700;
}

.area-chip {
  font: inherit;
  cursor: pointer;
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  line-height: 1.15;
}

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

.map-panel {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 410px;
  border: 0;
  background: var(--surface);
}

.map-panel p {
  margin: 0;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill-list span {
  color: var(--navy);
  background: rgba(255, 241, 38, 0.28);
  border-color: rgba(6, 17, 74, 0.12);
}

.faq-list {
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 14px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(6, 17, 74, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
  color: var(--navy);
}

.faq-list p {
  padding: 0 24px 24px;
  color: var(--muted);
}

.cta-band {
  margin-top: 0;
  margin-bottom: 0;
  padding: 58px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  border-radius: 0;
}

section.cta-band {
  width: 100%;
  max-width: none;
}

.cta-band > div:first-child {
  width: min(720px, calc(100% - 40px));
  margin-left: auto;
}

.cta-band .hero-actions {
  width: min(380px, calc(100% - 40px));
  justify-content: flex-start;
  margin-right: auto;
  margin-top: 0;
}

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

.quote-section {
  background: #111827;
  color: var(--white);
}

.quote-section .section-header p,
.quote-section .contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

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

.quote-embed {
  height: auto;
  min-height: 960px;
  overflow: visible;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-embed iframe {
  display: block;
  width: 100% !important;
  height: 960px !important;
  min-height: 960px;
  border: 0;
}

.quote-embed.standalone {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-line {
  display: inline-block;
  color: var(--yellow);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 18px;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.subhero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 140px 0 72px;
}

.subhero.compact {
  min-height: 420px;
}

.subhero-content {
  max-width: 980px;
}

.subhero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.included-section {
  background: var(--navy);
  color: var(--white);
}

.included-section .section-header p {
  color: rgba(255, 255, 255, 0.76);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.check-grid li,
.check-list li {
  position: relative;
  padding: 16px 18px 16px 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.check-grid li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
}

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

.check-list li {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.compact-card {
  padding: 22px;
}

.contact-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

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

.contact-cards a {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.site-footer {
  background: #060a22;
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.85fr 0.95fr;
  gap: 34px;
}

.footer-title {
  color: var(--white);
  font-weight: 900;
  margin-bottom: 14px;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

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

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

  .nav-links.is-open {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 16px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a,
  .nav-links.is-open .nav-dropdown > button {
    padding: 12px;
  }

  .nav-dropdown {
    display: grid;
  }

  .dropdown-panel {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    width: 100%;
    margin-top: 6px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .dropdown-panel a {
    color: var(--white);
  }

  .split-section,
  .split-section.reverse,
  .quote-layout,
  .contact-intro,
  .area-band,
  .area-map-layout {
    grid-template-columns: 1fr;
  }

  .area-band {
    gap: 24px;
  }

  .area-copy {
    max-width: 760px;
    padding-top: 0;
  }

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

  .map-panel iframe {
    height: 360px;
  }

  .card-grid.three,
  .card-grid.four,
  .process-grid,
  .review-grid,
  .check-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    display: grid;
    padding-left: 0;
    padding-right: 0;
  }

  .cta-band > div:first-child,
  .cta-band .hero-actions {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .brand img {
    width: 150px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content,
  .subhero-content,
  .section > *,
  .footer-grid,
  .footer-bottom,
  .area-band {
    width: min(100% - 28px, 1180px);
  }

  .hero-content p,
  .section-header p,
  .split-section > div > p,
  .subhero-content p {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

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

  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .process-grid,
  .review-grid,
  .check-grid,
  .contact-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 36px;
  }

  .hero-stats div {
    padding: 14px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .hero-stats div:last-child {
    border-right: 0;
  }

  .hero-stats strong {
    font-size: 27px;
  }

  .hero-stats span {
    font-size: 11px;
  }

  .section {
    padding: 68px 0;
  }

  .image-stack {
    min-height: 370px;
  }

  .stack-main {
    height: 280px;
  }

  .stack-float {
    right: 0;
    width: 64%;
    height: 170px;
  }

  .media-card img {
    height: 300px;
  }

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

  .image-grid img {
    height: 220px;
  }

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

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

  .map-panel iframe {
    height: 280px;
  }

  .quote-embed {
    min-height: 1040px;
  }

  .quote-embed iframe {
    height: 1040px !important;
    min-height: 1040px;
  }

  .footer-bottom {
    display: grid;
  }
}
