:root {
  --navy: #071b52;
  --blue: #1246b0;
  --ice: #08aeea;
  --red: #e5342a;
  --orange: #ff8a21;
  --ink: #101828;
  --muted: #667085;
  --line: #e6edf7;
  --bg: #f7fbff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 27, 82, .14);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { top: 12px; }
.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: .92rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 9px 0;
}
.topbar a { font-weight: 800; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
}
.brand strong {
  display: block;
  color: var(--navy);
  line-height: 1.05;
}
.brand span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: .94rem;
  padding: 10px 11px;
  border-radius: 999px;
}
.nav a:hover, .nav a:focus-visible { background: #eef5ff; outline: none; }
.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 14px 30px rgba(229,52,42,.24);
}
.btn-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
}
.menu-btn { display: none; }
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(8,174,234,.22), transparent 30%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 58%, #eef6ff 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(7,27,82,.04) 1px, transparent 1px), linear-gradient(rgba(7,27,82,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
  padding: 76px 0 64px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eaf7ff;
  color: var(--blue);
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--navy); line-height: 1.05; }
h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6.2vw, 5.35rem);
  letter-spacing: -.065em;
}
h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  letter-spacing: -.045em;
}
h3 { font-size: 1.24rem; margin: 0 0 10px; }
.lead {
  color: #344054;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 720px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 20px; }
.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.micro-trust span, .pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 11px;
  font-weight: 850;
  font-size: .9rem;
}
.hero-card {
  position: relative;
  border-radius: 32px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 24px;
}
.floating-card {
  position: absolute;
  left: -18px;
  bottom: 34px;
  max-width: 255px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 18px 46px rgba(7,27,82,.16);
}
.floating-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}
.section { padding: 76px 0; }
.section-alt { background: var(--bg); }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}
.section-head p {
  max-width: 620px;
  color: var(--muted);
  margin: 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 16px 42px rgba(7, 27, 82, .06);
}
.service-card { overflow: hidden; padding: 0; }
.service-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}
.service-card .card-body { padding: 24px; }
.card p { color: var(--muted); margin: 0 0 14px; }
.card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #344054;
}
.card li { margin: 5px 0; }
.service-link {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 900;
  color: var(--blue);
  text-decoration: none;
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(-32px);
  margin-bottom: -32px;
}
.proof-item {
  padding: 22px;
  border-right: 1px solid var(--line);
}
.proof-item:last-child { border-right: 0; }
.proof-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
}
.proof-item span { color: var(--muted); font-weight: 750; }
.cta-band {
  background: linear-gradient(135deg, var(--navy), #123d99);
  color: #fff;
  border-radius: 32px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -120px;
  border-radius: 999px;
  background: rgba(8,174,234,.24);
}
.cta-band h2, .cta-band p { color: #fff; position: relative; z-index: 1; }
.cta-band p { opacity: .9; margin: 0; }
.cta-band .btn { position: relative; z-index: 1; background: #fff; color: var(--navy); }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.split img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.check-list li {
  padding-left: 30px;
  margin: 11px 0;
  position: relative;
  color: #344054;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-grid a, .area-grid span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}
.area-grid a:hover { background: #eef6ff; }
.review-assets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}
.review-assets img {
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(7,27,82,.09);
  background: #fff;
}
.faq {
  display: grid;
  gap: 12px;
}
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}
summary {
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}
details p { color: var(--muted); margin-bottom: 0; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label { display: grid; gap: 6px; color: var(--navy); font-weight: 850; font-size: .94rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfdae8;
  border-radius: 13px;
  padding: 12px 13px;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.full { grid-column: 1 / -1; }
.notice {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  background: #eef6ff;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  font-weight: 800;
}
.page-hero {
  background: linear-gradient(135deg, #f7fbff, #fff 58%, #edf6ff);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 46px;
}
.breadcrumbs {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 14px;
}
.breadcrumbs a { color: var(--blue); text-decoration: none; }
.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.3rem, 5vw, 4.25rem);
}
.page-hero p { max-width: 760px; }
.site-footer {
  background: #061642;
  color: #dbe7ff;
  padding: 58px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 28px;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer h3 { color: #fff; font-size: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 18px;
  color: #b8c8ea;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sticky-call {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 70;
  box-shadow: 0 18px 46px rgba(229,52,42,.35);
}
@media (max-width: 980px) {
  .hero-grid, .split, .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 90px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .menu-btn { display: inline-flex; }
}
@media (max-width: 720px) {
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 2px; }
  .header-inner { align-items: center; }
  .brand { min-width: 0; }
  .brand strong { font-size: .94rem; }
  .header-actions .btn-primary { display: none; }
  .hero-grid { padding: 48px 0; }
  .hero-card img { height: 330px; }
  .floating-card { position: static; margin-top: 12px; max-width: none; }
  .section { padding: 54px 0; }
  .section-head { display: block; }
  .grid-3, .proof-strip, .area-grid, .review-assets, .footer-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .cta-band { grid-template-columns: 1fr; padding: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .sticky-call { display: inline-flex; }
}
.media-stack {
  display: grid;
  gap: 16px;
}
.media-stack img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.city-card p {
  min-height: 96px;
}
.small-card {
  padding: 24px;
}
.small-card h3,
.review-card h3 {
  margin-top: 0;
}
.review-card {
  padding: 28px;
}
.stars {
  color: var(--orange);
  letter-spacing: 0.08em;
  font-weight: 900;
  margin-bottom: 12px;
}
.info-panel {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  margin: 18px 0;
}
.info-panel strong {
  color: var(--navy);
}
.info-panel span {
  color: var(--muted);
}
.narrow {
  max-width: 860px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(7, 27, 82, .08);
  padding: 26px;
  margin-bottom: 18px;
}
.faq-item h2 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  color: var(--navy);
}
.faq-item p {
  margin: 0;
  color: var(--muted);
}
.contact-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 42px rgba(7, 27, 82, .08);
  margin: 16px 0;
}
.contact-list p {
  margin: 0 0 14px;
}
.no-margin {
  margin: 0;
}
.mobile-actions {
  display: none;
}
@media (max-width: 760px) {
  body { padding-bottom: 74px; }
  .sticky-call { display: none !important; }
  .mobile-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    box-shadow: 0 18px 48px rgba(7,27,82,.22);
    backdrop-filter: blur(12px);
  }
  .mobile-actions a {
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    padding: 11px 8px;
    border-radius: 13px;
    font-size: .88rem;
  }
  .mobile-actions a:nth-child(2) {
    background: linear-gradient(135deg, var(--orange), var(--red));
  }
}
