
:root {
  --primary: #6fa8e8;
  --primary-2: #8dc5f4;
  --primary-dark: #174b86;
  --primary-deep: #0a376c;
  --accent: #f1b84b;
  --ink: #142033;
  --muted: #5e6f84;
  --line: #d8e7f7;
  --surface: #ffffff;
  --soft: #eef8ff;
  --soft-2: #f7fbff;
  --footer: #10233a;
  --shadow: 0 18px 42px rgba(19, 54, 92, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
p { margin: 0; color: var(--muted); }
h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
}
h1 { font-size: 36px; }
h2 { font-size: 29px; }
h3 { font-size: 19px; }
@media (min-width: 760px) {
  h1 { font-size: 50px; }
  h2 { font-size: 36px; }
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(820px, calc(100% - 40px)); }
.section { padding: 84px 0; }
.bg-soft { background: var(--soft); }
.bg-surface { background: var(--soft-2); }
@keyframes fadeUp {
  from { opacity: 0; translate: 0 16px; }
  to { opacity: 1; translate: 0 0; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(111, 168, 232, 0.14);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.eyebrow.light {
  color: #fff;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 2000;
  padding: 10px 14px;
  background: #fff;
  color: var(--primary-dark);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .2s ease, box-shadow .2s ease, color .2s ease;
  color: #fff;
}
.site-header.scrolled,
.site-header.open {
  background: rgba(255,255,255,.97);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(16, 35, 58, .12);
}
.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}
.brand img {
  width: 74px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.brand span {
  max-width: 190px;
  line-height: 1.05;
  font-size: 16px;
}
.desktop-nav,
.nav-actions {
  display: none;
}
.desktop-nav {
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
}
.desktop-nav > a,
.nav-dropdown > button {
  color: currentColor;
  border: 0;
  background: transparent;
  padding: 11px 12px;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-dropdown { position: relative; }
.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 275px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease;
}
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
}
.nav-menu a:hover {
  color: var(--primary-dark);
  background: var(--soft);
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  font-size: 14px;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: currentColor;
  display: inline-grid;
  place-items: center;
}
.site-header.scrolled .menu-toggle,
.site-header.open .menu-toggle {
  border-color: var(--line);
  background: var(--soft);
}
.mobile-panel {
  display: none;
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
  max-height: calc(100vh - 82px);
  overflow: auto;
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
@media (min-width: 1040px) {
  .desktop-nav, .nav-actions { display: flex; }
  .menu-toggle { display: none; }
  .brand img { width: 92px; }
  .brand span { font-size: 18px; max-width: 230px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 800;
  line-height: 1.15;
  transition: transform .18s ease, background .18s ease, color .18s ease, border .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 40px; padding: 9px 14px; font-size: 14px; }
.btn-primary { background: var(--primary-dark); color: #fff; }
.btn-primary:hover { background: var(--primary-deep); }
.btn-light { background: #fff; color: var(--primary-dark); }
.btn-outline { border-color: var(--primary-dark); color: var(--primary-dark); background: transparent; }
.btn-outline:hover { background: var(--primary-dark); color: #fff; }
.btn-outline-light { border-color: #fff; color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--primary-dark); }
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button-row.center { justify-content: center; }

.home-hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.home-hero video,
.sub-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 28, 55, .82), rgba(14, 66, 115, .62));
}
.home-hero-content {
  position: relative;
  z-index: 2;
  padding: 132px 0 70px;
}
.hero-logo {
  width: 260px;
  margin: 0 auto 20px;
  max-height: 150px;
  object-fit: contain;
}
.home-hero h1,
.home-hero p,
.sub-hero h1,
.sub-hero p,
.cta-band h2,
.cta-band p {
  color: #fff;
}
.home-hero h1,
.sub-hero h1 {
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #cfeeff 48%, #76c7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, .28));
}
.home-hero h1 {
  max-width: 850px;
  margin: 0 auto;
}
.home-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 20px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(620px, 100%);
  margin: 54px auto 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.hero-stats div {
  padding: 18px 12px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
.hero-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-strip {
  background: var(--primary-dark);
  color: #fff;
}
.info-strip-grid {
  min-height: 54px;
  display: grid;
  gap: 12px;
  padding: 14px 0;
}
.info-strip a,
.info-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
@media (min-width: 820px) {
  .info-strip-grid { grid-template-columns: repeat(3, 1fr); }
}

.split {
  display: grid;
  gap: 44px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.02fr .98fr; }
  .split.reverse > :first-child { order: 2; }
}
.split p + p { margin-top: 16px; }
.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--soft);
}
.image-panel img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.image-panel.tall img { aspect-ratio: 4 / 5; }
.check-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.check-list p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 700;
}
.check-list svg {
  color: var(--primary-dark);
  flex: 0 0 auto;
  margin-top: 3px;
}
.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading p {
  max-width: 660px;
  margin: 14px auto 0;
  font-size: 18px;
}
.services-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
.service-card,
.review-card,
.service-depth-grid article,
.feature-grid article,
.process-grid article,
.detail-card,
.contact-card,
.faq-list,
.related-links a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.service-card {
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(19, 54, 92, .09);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: fadeUp .56s ease both;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(19, 54, 92, .16);
}
.service-card > div { padding: 20px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 15px; }
.card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--primary-dark);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 820px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid.two { grid-template-columns: repeat(2, 1fr); }
}
.feature-grid article {
  padding: 28px;
  box-shadow: 0 12px 28px rgba(19, 54, 92, .07);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: fadeUp .56s ease both;
}
.feature-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(19, 54, 92, .12);
}
.feature-grid h3 { margin: 12px 0 10px; }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: var(--soft);
}
.feature-icon svg { width: 24px; height: 24px; }
.process-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 820px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
.process-grid article {
  padding: 26px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease;
  animation: fadeUp .56s ease both;
}
.process-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(19, 54, 92, .12);
}
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--primary-dark);
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}
.process-grid h3 { margin-bottom: 10px; }

.reviews-section {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}
.reviews-grid,
.service-depth-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 760px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1020px) {
  .reviews-grid { grid-template-columns: repeat(4, 1fr); }
  .service-depth-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card,
.service-depth-grid article {
  padding: 26px;
  box-shadow: 0 14px 32px rgba(19, 54, 92, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  animation: fadeUp .56s ease both;
}
.review-card:hover,
.service-depth-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 168, 232, .55);
  box-shadow: 0 22px 46px rgba(19, 54, 92, .14);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--accent);
}
.review-stars svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: currentColor;
}
.review-card h3,
.service-depth-grid h3 {
  margin-bottom: 10px;
}
.review-card p,
.service-depth-grid p {
  font-size: 15px;
}
.review-card span {
  display: block;
  margin-top: 16px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-area {
  background: linear-gradient(180deg, #fff 0%, var(--soft-2) 100%);
}
.area-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 940px) {
  .area-grid { grid-template-columns: .9fr 1.1fr; }
}
.area-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.area-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
  cursor: pointer;
}
.area-button.active,
.area-button:hover {
  background: var(--primary-dark);
  color: #fff;
}
.map-shell {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-shell iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.faq-list {
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: #fff;
  padding: 22px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.faq-question span {
  color: var(--primary-dark);
  transition: transform .18s ease;
}
.faq-item.open .faq-question span { transform: rotate(180deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s ease;
}
.faq-answer > p {
  overflow: hidden;
  padding: 0 22px;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-answer > p {
  padding-bottom: 22px;
}

.cta-band {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  text-align: center;
}
.cta-inner {
  max-width: 780px;
}
.cta-inner p {
  margin: 16px auto 0;
  font-size: 18px;
}

.quote-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 960px) {
  .quote-grid { grid-template-columns: .82fr 1.18fr; }
}
.quote-copy {
  position: sticky;
  top: 104px;
}
.contact-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  margin-top: 24px;
  box-shadow: 0 14px 32px rgba(19, 54, 92, .08);
}
.contact-card a,
.contact-card span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}
.contact-card svg { color: var(--primary-dark); margin-top: 3px; flex: 0 0 auto; }
.form-frame {
  min-height: 1160px;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: visible;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-frame iframe {
  width: 100%;
  min-height: 1160px;
  height: 1160px;
  display: block;
}
.form-fallback {
  margin-top: 10px;
  font-size: 14px;
}
.form-fallback a { color: var(--primary-dark); font-weight: 800; }

.sub-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 82px;
}
.sub-hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}
.sub-hero h1 {
  max-width: 820px;
}
.sub-hero p {
  max-width: 660px;
  margin-top: 18px;
  font-size: 19px;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.72);
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 700;
}
.breadcrumbs strong,
.breadcrumbs a:hover { color: #fff; }
.detail-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 900px) {
  .detail-grid { grid-template-columns: 1.1fr .9fr; }
}
.detail-card {
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: fadeUp .56s ease both;
}
.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(19, 54, 92, .14);
}
.detail-card.shaded {
  background: linear-gradient(180deg, #fff, var(--soft));
}
.detail-card h3 { margin-bottom: 16px; }
.included-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.included-list li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}
.included-list svg {
  color: var(--primary-dark);
  flex: 0 0 auto;
  margin-top: 4px;
}
.related-links {
  display: grid;
  gap: 12px;
}
@media (min-width: 720px) {
  .related-links { grid-template-columns: repeat(3, 1fr); }
}
.related-links a {
  padding: 16px;
  color: var(--primary-dark);
  font-weight: 800;
  text-align: center;
}
.related-links a:hover { background: var(--soft); }
.stats-band {
  background: var(--primary-dark);
}
.stats-grid {
  display: grid;
  gap: 22px;
  text-align: center;
}
@media (min-width: 760px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stats-grid strong {
  display: block;
  color: #fff;
  font-size: 42px;
  line-height: 1;
}
.stats-grid span {
  color: rgba(255,255,255,.78);
  font-weight: 800;
  display: block;
  margin-top: 10px;
}

.site-footer {
  background: var(--footer);
  color: #fff;
}
.footer-grid {
  display: grid;
  gap: 34px;
  padding: 60px 0;
}
@media (min-width: 860px) {
  .footer-grid { grid-template-columns: 1.15fr 1fr 1fr 1.1fr; }
}
.footer-brand img {
  width: 170px;
  height: auto;
  margin-bottom: 14px;
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,.76);
}
.footer-title {
  color: #fff !important;
  font-weight: 900;
  margin-bottom: 14px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.site-footer a:hover { color: #fff; }
.footer-contact li,
.footer-contact a {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.footer-contact svg {
  flex: 0 0 auto;
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px;
  text-align: center;
}
.footer-bottom p { font-size: 14px; }

@media (max-width: 680px) {
  .wrap, .narrow { width: min(100% - 28px, 1180px); }
  .section { padding: 62px 0; }
  h1 { font-size: 33px; }
  h2 { font-size: 27px; }
  .home-hero-content { padding-top: 120px; }
  .home-hero p, .sub-hero p { font-size: 17px; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero-stats div:last-child { border-bottom: 0; }
  .button-row,
  .button-row.center { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .quote-copy { position: static; }
  .form-frame,
  .form-frame iframe {
    min-height: 1240px;
    height: 1240px;
  }
}

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