:root {
  --ink: #07111f;
  --ink-soft: #112033;
  --navy: #0a1a2d;
  --navy-2: #102843;
  --orange: #ff6a1a;
  --orange-dark: #db4f00;
  --amber: #ffb429;
  --paper: #f7f7f3;
  --paper-warm: #f0ede7;
  --white: #fff;
  --text: #273243;
  --muted: #687385;
  --line: #dce1e7;
  --radius: 22px;
  --shadow: 0 28px 80px rgba(7, 17, 31, .14);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.topbar {
  position: relative;
  z-index: 80;
  color: #dbe5ef;
  background: #030a12;
  font-size: 13px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62e592;
  box-shadow: 0 0 0 5px rgba(98, 229, 146, .12);
}

.topbar a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: .02em;
}

.topbar a svg {
  width: 15px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: absolute;
  z-index: 70;
  top: 38px;
  left: 0;
  right: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(7, 17, 31, .96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: min-height .28s ease;
}

.site-header.is-scrolled .header__inner {
  min-height: 82px;
}

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

.brand img {
  width: 300px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, .28));
  transition: width .28s ease, transform .3s ease, filter .3s ease;
}

.site-header.is-scrolled .brand img {
  width: 220px;
}

.brand:hover img,
.brand:focus-visible img {
  transform: scale(1.045);
  filter: drop-shadow(0 9px 24px rgba(255, 106, 26, .3));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding-block: 14px;
  color: #e8edf3;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  background: var(--orange);
  transition: right .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.header-call {
  display: grid;
  padding: 10px 17px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 12px;
  line-height: 1.15;
  transition: transform .2s ease, background .2s ease;
}

.header-call:hover {
  background: #ffc34f;
  transform: translateY(-2px);
}

.header-call span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-call strong {
  margin-top: 3px;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 11px 9px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
  border-radius: 11px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(3, 10, 18, .97) 0%, rgba(3, 10, 18, .86) 33%, rgba(3, 10, 18, .25) 65%, rgba(3, 10, 18, .08) 100%),
    linear-gradient(0deg, rgba(3, 10, 18, .55), transparent 42%);
}

.hero__beacon {
  --beacon-sweep-size: 180px;
  position: absolute;
  z-index: 1;
  top: var(--beacon-y, -999px);
  left: var(--beacon-x, -999px);
  width: 16px;
  height: 11px;
  pointer-events: none;
  background: #fff3c4;
  border-radius: 50%;
  box-shadow:
    0 0 8px 3px rgba(255, 241, 190, .95),
    0 0 24px 10px rgba(255, 166, 0, .82),
    0 0 68px 28px rgba(255, 123, 0, .35);
  transform: translate(-50%, -50%);
  animation: beacon-pulse 1.1s ease-in-out infinite;
}

.hero__beacon--right {
  animation-delay: -.55s;
}

.hero__beacon::before,
.hero__beacon::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero__beacon::before {
  width: var(--beacon-sweep-size);
  height: var(--beacon-sweep-size);
  background: conic-gradient(
    from 0deg,
    transparent 0 7%,
    rgba(255, 181, 48, 0) 8%,
    rgba(255, 181, 48, .3) 12%,
    rgba(255, 181, 48, 0) 18%,
    transparent 19% 57%,
    rgba(255, 128, 0, 0) 58%,
    rgba(255, 128, 0, .18) 63%,
    rgba(255, 128, 0, 0) 69%,
    transparent 70% 100%
  );
  border-radius: 50%;
  filter: blur(6px);
  mix-blend-mode: screen;
  animation: beacon-sweep 2.15s linear infinite;
}

.hero__beacon--right::before {
  animation-delay: -1.075s;
}

.hero__beacon::after {
  width: 92px;
  height: 92px;
  background: radial-gradient(circle, rgba(255, 204, 94, .42) 0%, rgba(255, 139, 0, .17) 38%, transparent 72%);
  border-radius: 50%;
  mix-blend-mode: screen;
}

.hero__hazard {
  position: absolute;
  z-index: 1;
  top: var(--beacon-y, -999px);
  left: var(--beacon-x, -999px);
  width: 11px;
  height: 7px;
  pointer-events: none;
  background: #fff0a8;
  border-radius: 50%;
  box-shadow:
    0 0 7px 3px rgba(255, 231, 153, .98),
    0 0 22px 10px rgba(255, 155, 25, .72),
    0 0 50px 22px rgba(255, 106, 0, .28);
  transform: translate(-50%, -50%) rotate(-3deg);
  animation: hazard-double-flash 1.5s steps(1, end) infinite;
}

.hero__hazard::before,
.hero__hazard::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
}

.hero__hazard::before {
  width: 72px;
  height: 58px;
  background: radial-gradient(ellipse, rgba(255, 199, 77, .62), rgba(255, 126, 0, .2) 44%, transparent 74%);
  filter: blur(2px);
}

.hero__hazard::after {
  width: 118px;
  height: 38px;
  margin-left: -48px;
  background: linear-gradient(270deg, rgba(255, 184, 55, .26), rgba(255, 126, 0, .08) 48%, transparent 100%);
  clip-path: polygon(100% 38%, 0 9%, 0 91%, 100% 62%);
  filter: blur(5px);
}

@keyframes hazard-double-flash {
  0%,
  20%,
  48%,
  68%,
  100% {
    opacity: .16;
    transform: translate(-50%, -50%) rotate(-3deg) scale(.78);
  }

  21%,
  47%,
  69%,
  92% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-3deg) scale(1);
  }
}

@keyframes beacon-sweep {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes beacon-pulse {
  0%,
  100% {
    opacity: .58;
  }

  45% {
    opacity: 1;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 90px;
}

.hero__copy {
  max-width: 720px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow {
  color: #dbe5ef;
}

.eyebrow span {
  display: inline-grid;
  place-items: center;
  min-width: 50px;
  min-height: 30px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 999px;
  font-size: 12px;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.hero h1 {
  max-width: 720px;
  color: var(--white);
}

.hero__copy > p {
  max-width: 660px;
  margin: 25px 0 0;
  color: #d6dee8;
  font-size: 19px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  line-height: 1.15;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn--primary {
  min-width: 245px;
  justify-content: flex-start;
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 16px 42px rgba(255, 180, 41, .22);
}

.btn--primary:hover {
  background: #ffc34f;
}

.btn--primary svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--primary span {
  display: grid;
  font-size: 19px;
}

.btn--primary small {
  margin-bottom: 3px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .34);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .15);
}

.btn--dark {
  color: var(--white);
  background: var(--ink);
}

.btn--dark:hover {
  background: var(--navy-2);
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 31px 0 0;
  padding: 0;
  color: #d6dee8;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__checks li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.quick-facts {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-facts article {
  min-height: 126px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 25px 32px;
  border-right: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

.quick-facts article:last-child {
  border-right: 0;
}

.quick-facts strong {
  color: var(--amber);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.04em;
}

.quick-facts span {
  margin-top: 9px;
  color: #b9c4d1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: 116px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading h2,
.reassurance h2,
.coverage h2,
.faq h2 {
  font-size: clamp(36px, 4.2vw, 58px);
}

.section-heading > p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 106, 26, .45);
  box-shadow: 0 22px 60px rgba(7, 17, 31, .09);
}

.service-card--featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.service-card__number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #c5ccd5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-card--featured .service-card__number {
  color: #8290a1;
}

.service-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 35px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.service-card--featured h3 {
  color: var(--white);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-card--featured p {
  color: #b8c4d2;
}

.reassurance {
  color: var(--white);
  background: var(--ink);
}

.reassurance__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 78px;
}

.reassurance__media {
  position: relative;
}

.reassurance__media::before {
  position: absolute;
  content: "";
  inset: -16px auto auto -16px;
  width: 120px;
  height: 120px;
  border-top: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
  border-radius: 22px 0 0;
}

.reassurance__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 4.35;
  object-fit: cover;
  border-radius: var(--radius);
}

.media-badge {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: 32px;
  display: grid;
  justify-items: center;
  min-width: 250px;
  padding: 20px 24px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
  text-align: center;
}

.media-badge strong {
  font-size: 17px;
}

.media-badge span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
}

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

.reassurance .lead {
  margin: 25px 0 0;
  color: #bdc8d5;
  font-size: 17px;
}

.steps {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-top: 3px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.steps h3 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
}

.steps p {
  margin: 5px 0 0;
  color: #9fabb9;
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 25px;
  color: var(--amber);
  font-weight: 900;
}

.text-link span {
  font-size: 23px;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.coverage {
  background: var(--paper-warm);
}

.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: center;
  gap: 90px;
}

.coverage__grid > div > p:not(.kicker) {
  max-width: 680px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.coverage__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 35px;
}

.coverage__chips span {
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d4d8dd;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.coverage__chips span:first-child {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.safety-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.safety-card::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  right: -65px;
  bottom: -80px;
  background: var(--orange);
  border-radius: 50%;
  opacity: .08;
}

.safety-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 16px;
}

.safety-card__icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.safety-card .kicker {
  justify-content: center;
  color: var(--orange);
  margin-bottom: 10px;
}

.safety-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 30px;
  letter-spacing: -.035em;
}

.safety-card > p:not(.kicker) {
  margin: 16px 0 0;
  color: #b5c1cf;
}

.safety-card a {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  margin-top: 28px;
  color: var(--amber);
  font-size: 13px;
}

.safety-card a strong {
  font-size: 20px;
}

.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 90px;
}

.faq__intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq__intro > p:not(.kicker) {
  margin: 22px 0 28px;
  color: var(--muted);
}

.faq__items {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 4px;
  color: var(--ink);
  cursor: pointer;
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -.02em;
  list-style: none;
}

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

.faq summary span {
  position: relative;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  content: "";
  top: 15px;
  left: 9px;
  width: 12px;
  height: 2px;
  background: var(--ink);
}

.faq summary span::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.faq details[open] summary span {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.faq details[open] summary span::after {
  transform: rotate(0);
}

.faq details[open] summary span::before,
.faq details[open] summary span::after {
  background: var(--white);
}

.faq details p {
  max-width: 760px;
  margin: -5px 50px 28px 4px;
  color: var(--muted);
}

.contact {
  padding: 95px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 106, 26, .16), transparent 32%),
    var(--navy);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.kicker--light {
  color: var(--orange);
}

.contact h2 {
  color: var(--white);
  font-size: clamp(38px, 4.5vw, 60px);
}

.contact__copy > p:not(.kicker) {
  max-width: 530px;
  margin: 22px 0 0;
  color: #b8c3d0;
  font-size: 17px;
}

.contact__phones {
  display: grid;
  gap: 12px;
}

.contact__primary {
  display: grid;
  justify-items: center;
  padding: 25px 30px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 18px;
  text-align: center;
  transition: transform .2s ease, background .2s ease;
}

.contact__primary:hover {
  background: #ffc34f;
  transform: translateY(-3px);
}

.contact__primary span,
.contact__secondary > span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact__primary strong {
  margin-top: 2px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.035em;
}

.contact__primary small {
  margin-top: 8px;
  font-weight: 700;
}

.contact__secondary {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 14px;
  text-align: center;
}

.contact__secondary > span {
  color: #99a8b9;
}

.contact__secondary a {
  color: var(--white);
  font-weight: 850;
}

.site-footer {
  padding: 72px 0 32px;
  color: #97a4b4;
  background: #030a12;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr .7fr 1fr;
  gap: 80px;
}

.brand--footer {
  margin-bottom: 18px;
}

.site-footer .brand img {
  width: 280px;
  height: auto;
}

.footer__grid > div:first-child > p {
  max-width: 410px;
}

.footer__grid h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer__grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer__grid a:hover {
  color: var(--amber);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
}

.footer__bottom p {
  margin: 0;
}

.mobile-call {
  display: none;
}

:focus-visible {
  outline: 3px solid #64b5f6;
  outline-offset: 3px;
}

/* Motion layer: progressive enhancement, with a no-motion fallback below. */
.hero__copy > * {
  animation: hero-rise .72s cubic-bezier(.2, .72, .25, 1) both;
}

.hero__copy > :nth-child(2) {
  animation-delay: .08s;
}

.hero__copy > :nth-child(3) {
  animation-delay: .16s;
}

.hero__copy > :nth-child(4) {
  animation-delay: .24s;
}

.hero__copy > :nth-child(5) {
  animation-delay: .32s;
}

html.has-motion-effects .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .72s cubic-bezier(.2, .72, .25, 1),
    transform .72s cubic-bezier(.2, .72, .25, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

html.has-motion-effects .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.header-call,
.btn--primary,
.contact__primary,
.mobile-call {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.header-call > *,
.btn--primary > *,
.contact__primary > *,
.mobile-call > * {
  position: relative;
  z-index: 1;
}

.header-call::after,
.btn--primary::after,
.contact__primary::after,
.mobile-call::after {
  position: absolute;
  z-index: 0;
  content: "";
  inset: -45% auto -45% -55%;
  width: 28%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .68), transparent);
  transform: translateX(-220%) skewX(-18deg);
  animation: cta-sheen 4.8s ease-in-out infinite;
}

.quick-facts article,
.quick-facts strong,
.service-card svg,
.service-card__number,
.steps li,
.coverage__chips span,
.faq summary,
.reassurance__media img {
  transition:
    transform .32s ease,
    color .32s ease,
    background-color .32s ease,
    border-color .32s ease,
    filter .32s ease,
    box-shadow .32s ease;
}

.quick-facts article:hover {
  background: rgba(255, 255, 255, .055);
}

.quick-facts article:hover strong {
  color: #ffd27b;
  transform: translateY(-3px);
  text-shadow: 0 0 20px rgba(255, 180, 41, .36);
}

.service-card:hover svg {
  transform: translateY(-5px) rotate(-4deg) scale(1.06);
  filter: drop-shadow(0 9px 14px rgba(255, 106, 26, .24));
}

.service-card:hover .service-card__number {
  color: var(--orange);
  transform: translateY(-3px);
}

.reassurance__media:hover img {
  transform: scale(1.025);
}

.steps li:hover {
  transform: translateX(7px);
}

.steps li:hover > span {
  box-shadow: 0 0 0 7px rgba(255, 106, 26, .12);
}

.coverage__chips span:hover {
  color: var(--orange-dark);
  border-color: rgba(255, 106, 26, .48);
  box-shadow: 0 9px 22px rgba(7, 17, 31, .08);
  transform: translateY(-3px);
}

.coverage__chips span:first-child:hover {
  color: var(--white);
  background: var(--navy-2);
}

.faq details:hover summary {
  color: var(--orange-dark);
}

.safety-card::after {
  animation: safety-orbit 8s ease-in-out infinite alternate;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cta-sheen {
  0%,
  58% {
    transform: translateX(-220%) skewX(-18deg);
  }

  78%,
  100% {
    transform: translateX(720%) skewX(-18deg);
  }
}

@keyframes safety-orbit {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-24px, -18px, 0) scale(1.12);
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

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

  .coverage__grid {
    grid-template-columns: 1fr 380px;
    gap: 50px;
  }

  .faq__grid {
    grid-template-columns: 320px 1fr;
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .topbar p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .topbar a {
    flex: 0 0 auto;
  }

  .header__inner {
    min-height: 86px;
  }

  .site-header.is-scrolled .header__inner {
    min-height: 70px;
  }

  .brand img {
    width: min(220px, calc(100vw - 120px));
    height: auto;
  }

  .site-header.is-scrolled .brand img {
    width: min(180px, calc(100vw - 120px));
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 22px 25px;
    color: var(--white);
    background: rgba(7, 17, 31, .98);
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .site-header:not(.is-scrolled) .main-nav {
    top: 124px;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .hero {
    min-height: 780px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(3, 10, 18, .95), rgba(3, 10, 18, .62)),
      linear-gradient(0deg, rgba(3, 10, 18, .75), transparent 55%);
  }

  .hero__content {
    padding-top: 145px;
  }

  .hero h1 {
    max-width: 620px;
  }

  .hero__scroll {
    display: none;
  }

  .quick-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts article:nth-child(2) {
    border-right: 0;
  }

  .quick-facts article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .section {
    padding: 85px 0;
  }

  .section-heading,
  .reassurance__grid,
  .coverage__grid,
  .faq__grid,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .reassurance__media {
    max-width: 610px;
  }

  .reassurance__media img {
    aspect-ratio: 16 / 11;
  }

  .media-badge {
    right: 20px;
  }

  .safety-card {
    max-width: 600px;
  }

  .faq__intro {
    position: static;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 580px) {
  body {
    padding-bottom: 76px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .topbar {
    display: none;
  }

  .site-header {
    position: absolute;
    top: 0;
  }

  .site-header.is-scrolled {
    position: fixed;
  }

  .site-header:not(.is-scrolled) .main-nav {
    top: 86px;
  }

  .site-header.is-scrolled .main-nav {
    top: 70px;
  }

  .hero {
    min-height: 740px;
  }

  .hero__image {
    object-position: 72% center;
  }

  .hero__beacon {
    --beacon-sweep-size: 150px;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(3, 10, 18, .91), rgba(3, 10, 18, .5)),
      linear-gradient(0deg, rgba(3, 10, 18, .9) 0%, rgba(3, 10, 18, .15) 65%);
  }

  .hero__content {
    padding-top: 125px;
    padding-bottom: 65px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .hero__copy > p {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
    margin-top: 28px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .btn--primary {
    justify-content: center;
  }

  .hero__checks {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .quick-facts {
    margin-top: -24px;
  }

  .quick-facts article {
    min-height: 108px;
    padding: 20px;
  }

  .quick-facts strong {
    font-size: 26px;
  }

  .quick-facts span {
    font-size: 10px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .reassurance h2,
  .coverage h2,
  .faq h2 {
    font-size: 37px;
  }

  .section-heading {
    gap: 22px;
  }

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

  .service-card {
    min-height: 0;
    padding: 28px;
  }

  .service-card svg {
    margin-bottom: 26px;
  }

  .reassurance__grid {
    gap: 50px;
  }

  .reassurance__media::before {
    inset: -10px auto auto -8px;
  }

  .reassurance__media img {
    aspect-ratio: 4 / 3.4;
  }

  .media-badge {
    right: 12px;
    bottom: 12px;
    min-width: 0;
    padding: 14px 17px;
  }

  .steps li {
    grid-template-columns: 38px 1fr;
  }

  .safety-card {
    padding: 30px;
  }

  .faq summary {
    min-height: 82px;
    padding: 20px 0;
    font-size: 17px;
  }

  .faq details p {
    margin-left: 0;
    margin-right: 34px;
  }

  .contact {
    padding: 70px 0;
  }

  .contact__inner {
    gap: 35px;
  }

  .contact__primary {
    padding: 23px;
  }

  .contact__primary strong {
    font-size: 34px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer__bottom {
    display: grid;
    gap: 6px;
    margin-top: 38px;
  }

  .mobile-call {
    position: fixed;
    z-index: 100;
    left: 10px;
    right: 10px;
    bottom: 8px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--ink);
    background: var(--amber);
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
  }

  .mobile-call svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-call span {
    display: grid;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
  }

  .mobile-call small {
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
