:root {
  --black: #111111;
  --black-deep: #000000;
  --blue: #5b9bd5;
  --blue-light: #7ab3e0;
  --blue-dark: #3a7bbf;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --gray-light: #f0f0f0;
  --gray-mid: #777777;
  --body-text: #3a3a3a;
  --line: #dddddd;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--black);
  background: var(--off-white);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
p { color: var(--body-text); line-height: 1.75; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(3rem, 7vw, 5.8rem); font-weight: 800; }
h2 { font-size: clamp(2.25rem, 4vw, 3.6rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 700; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 100px 0; }
.section--white { background: var(--white); }
.section--soft { background: var(--off-white); }
.section--dark { background: var(--black); color: var(--white); }
.section--dark p { color: rgba(255, 255, 255, 0.72); }
.section-label {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section--dark .section-label { color: var(--blue-light); }
.lede { max-width: 720px; margin: 18px 0 0; font-size: 1.08rem; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 3px; }
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-light); box-shadow: 0 8px 24px rgba(91, 155, 213, 0.4); }
.btn--outline { border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--black); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo img { width: auto; height: 72px; }
.nav__links { display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; list-style: none; }
.nav__links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--blue-light); }
.nav__actions { display: flex; align-items: center; gap: 15px; }
.nav__phone { color: var(--blue-light); font-size: 0.92rem; font-weight: 800; text-decoration: none; }
.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.page-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 170px 0 100px;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background: var(--hero-image) center / cover no-repeat;
}
.page-hero__video {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.76) 48%, rgba(0,0,0,.38) 100%);
}
.page-hero__content { max-width: 780px; }
.page-hero h1 em { color: var(--blue-light); font-style: normal; }
.page-hero p { max-width: 680px; margin: 24px 0 0; color: rgba(255,255,255,.86); font-size: 1.12rem; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--blue-light);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 42px; height: 2px; background: currentColor; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; color: rgba(255,255,255,.7); font-size: .86rem; }
.hero-trust span::before { content: "✓"; margin-right: 7px; color: var(--blue-light); font-weight: 800; }

.breadcrumbs { background: var(--white); border-bottom: 1px solid var(--line); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 16px 0; list-style: none; font-size: .82rem; color: #666; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #aaa; }
.breadcrumbs a { color: var(--blue-dark); text-decoration: none; }

.trust-strip { background: var(--black-deep); border-top: 2px solid var(--blue); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip__item { padding: 21px 16px; color: rgba(255,255,255,.82); font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-align: center; text-transform: uppercase; }
.trust-strip__item + .trust-strip__item { border-left: 1px solid rgba(255,255,255,.12); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; }
.split--reverse > :first-child { order: 2; }
.media-frame { overflow: hidden; border-radius: 8px; box-shadow: var(--shadow); background: #ddd; }
.media-frame img { width: 100%; min-height: 420px; object-fit: cover; }
.media-frame--proof img { min-height: auto; }
.accent-note { margin-top: 28px; padding: 18px 20px; border-left: 3px solid var(--blue); background: rgba(91,155,213,.1); }
.accent-note strong { display: block; margin-bottom: 5px; color: var(--black); }
.section--dark .accent-note strong { color: var(--white); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.card {
  padding: 30px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}
.card h3 { margin-bottom: 12px; }
.card p { margin: 0; font-size: .95rem; }
.card__number { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 20px; border: 2px solid var(--blue); border-radius: 50%; color: var(--blue-dark); font-family: "Barlow Condensed", sans-serif; font-size: 1.45rem; font-weight: 800; }
.card__link { display: inline-block; margin-top: 18px; color: var(--blue-dark); font-weight: 800; text-decoration: none; }
.section--dark .card { border-color: rgba(255,255,255,.13); background: #181818; }
.section--dark .card h3 { color: var(--white); }
.section--dark .card .card__number { color: var(--blue-light); }

.check-list { display: grid; gap: 0; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 34px; border-bottom: 1px solid var(--line); color: var(--body-text); line-height: 1.55; }
.check-list li::before { content: "✓"; position: absolute; top: 15px; left: 3px; color: var(--blue-dark); font-weight: 900; }
.section--dark .check-list li { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.78); }
.section--dark .check-list li::before { color: var(--blue-light); }

.link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.link-tile { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; border: 1px solid #dedede; border-radius: 6px; background: var(--white); color: var(--black); font-weight: 750; text-decoration: none; }
.link-tile::after { content: "→"; color: var(--blue-dark); font-size: 1.25rem; }
.link-tile:hover { border-color: var(--blue); box-shadow: 0 8px 20px rgba(0,0,0,.06); }

.faq { max-width: 820px; margin: 48px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 22px 44px 22px 0; font-weight: 800; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 17px; right: 0; color: var(--blue-dark); font-family: "Barlow Condensed", sans-serif; font-size: 1.8rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0; padding: 0 44px 24px 0; }

.cta-band { position: relative; overflow: hidden; padding: 84px 0; background: var(--black); color: var(--white); text-align: center; }
.cta-band::before { content: "A"; position: absolute; top: -170px; right: 4%; color: rgba(91,155,213,.07); font-family: "Barlow Condensed", sans-serif; font-size: 32rem; font-weight: 800; line-height: 1; }
.cta-band .container { position: relative; }
.cta-band p { max-width: 650px; margin: 18px auto 0; color: rgba(255,255,255,.72); }
.cta-band .button-row { justify-content: center; }

.site-footer { padding: 70px 0 22px; border-top: 3px solid var(--blue); background: #080808; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand img { width: auto; height: 72px; margin-bottom: 18px; }
.footer-brand p { max-width: 360px; margin: 0; color: rgba(255,255,255,.58); font-size: .88rem; }
.footer-column h2 { margin-bottom: 18px; font-size: 1.1rem; color: var(--white); }
.footer-column ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.footer-column a { color: rgba(255,255,255,.66); font-size: .84rem; text-decoration: none; }
.footer-column a:hover { color: var(--blue-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.45); font-size: .76rem; }

.mobile-call { display: none; }

@media (max-width: 1024px) {
  .nav__links { gap: 17px; }
  .nav__phone { display: none; }
  .split { gap: 48px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 76px 0; }
  .nav { min-height: 82px; }
  .nav__logo img { height: 62px; }
  .nav__toggle { display: inline-grid; place-items: center; }
  .nav__links {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    padding: 26px 24px 30px;
    background: rgba(0,0,0,.98);
    flex-direction: column;
    align-items: flex-start;
  }
  .nav__links[data-open="true"] { display: flex; }
  .nav__actions .btn { display: none; }
  .page-hero { min-height: 620px; padding-top: 145px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: initial; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .trust-strip__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .link-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-call { position: fixed; z-index: 900; right: 18px; bottom: 88px; display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; background: var(--blue); color: var(--white); box-shadow: 0 10px 28px rgba(0,0,0,.3); font-size: 1.25rem; text-decoration: none; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 36px, 1180px); }
  .page-hero { min-height: 640px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .card-grid, .link-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__item + .trust-strip__item { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .media-frame img { min-height: 300px; }
  .footer-bottom { flex-direction: column; }
}

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