:root {
  --navy-950: #04112c;
  --navy-900: #071a3d;
  --navy-800: #0a285c;
  --navy-700: #123c7a;
  --red-600: #c8102e;
  --red-700: #a60d25;
  --sky-100: #eef7ff;
  --sky-200: #d8ebfb;
  --line: #d9e4ef;
  --text: #071a3d;
  --muted: #52647b;
  --surface: #ffffff;
  --soft: #f5f9fd;
  --shadow: 0 22px 58px rgba(7, 26, 61, 0.15);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 88px;
}

.section-inner,
.header-inner,
.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 30;
  background: rgba(4, 17, 44, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand {
  font-size: clamp(18px, 1.6vw, 24px);
  white-space: nowrap;
}

.brand img,
.footer-brand img {
  border-radius: 8px;
}

.nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav {
  margin-left: auto;
  font-size: 14px;
  font-weight: 750;
}

.nav a,
.footer-links a {
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 160ms ease, color 160ms ease;
}

.nav a:hover,
.footer-links a:hover {
  opacity: 1;
  color: #fff;
}

.header-call {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  color: #fff;
  background: var(--red-600);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.28);
  transition: background-color 160ms ease, transform 160ms ease;
}

.header-call:hover,
.button:hover,
.mobile-call:hover {
  background: var(--red-700);
  transform: translateY(-1px);
}

.phone-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  flex: 0 0 auto;
}

.header-call small {
  display: block;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.1;
  opacity: 0.86;
}

.header-call strong {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  line-height: 1.05;
}

.hero {
  position: relative;
  min-height: min(650px, calc(100svh - 74px));
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--navy-950);
}

.hero-picture,
.hero-picture img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 17, 44, 0.94) 0%, rgba(4, 17, 44, 0.84) 35%, rgba(4, 17, 44, 0.36) 63%, rgba(4, 17, 44, 0.06) 100%),
    linear-gradient(180deg, rgba(4, 17, 44, 0.15) 0%, rgba(4, 17, 44, 0.26) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--max));
  min-height: min(650px, calc(100svh - 74px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 72px 0 88px;
}

.hero-copy {
  max-width: 675px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lede {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.36;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 34px;
}

.button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 26px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--red-600);
  box-shadow: 0 18px 32px rgba(200, 16, 46, 0.32);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.15;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 0 22px 38px rgba(166, 13, 37, 0.36);
}

.button:focus-visible,
.mobile-call:focus-visible,
.header-call:focus-visible,
.brand:focus-visible,
.nav a:focus-visible,
.footer-links a:focus-visible,
details summary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.62);
  outline-offset: 4px;
}

.hero-note {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 750;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 750;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-trust li::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
}

.service-strip {
  position: relative;
  padding: 54px 0 50px;
  background: #fff;
}

.service-strip::before {
  content: "";
  position: absolute;
  inset: -45px 0 auto;
  height: 80px;
  background: #fff;
  clip-path: polygon(0 45%, 50% 100%, 100% 45%, 100% 100%, 0 100%);
}

.service-strip h2,
.section-heading h2,
.confidence-copy h2,
.final-cta h2,
.page-hero h1 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.service-strip h2 {
  position: relative;
  text-align: center;
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 36px;
}

.service-item {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 46px 4px;
  text-align: center;
}

.service-item + .service-item {
  border-left: 1px solid var(--line);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--navy-900);
  margin-bottom: 14px;
}

.service-item h3,
.step h3,
.support-list h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.service-item p,
.step p,
.support-list p,
.section-heading p,
.final-cta p,
.page-hero p,
.content-card p,
.content-card li {
  margin: 10px 0 0;
  color: var(--muted);
}

.steps-band {
  padding: 74px 0 76px;
  background:
    linear-gradient(180deg, #f7fbff 0%, #eef7ff 100%);
}

.centered {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.section-heading p {
  font-size: 20px;
  line-height: 1.5;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.steps::before {
  content: "";
  position: absolute;
  inset: 47px 11% auto;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(7, 26, 61, 0.25) 0 8px, transparent 8px 18px);
}

.step {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.step-icon {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid rgba(216, 235, 251, 0.95);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(7, 26, 61, 0.09);
}

.step-number {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.step p {
  font-size: 16px;
  line-height: 1.45;
}

.confidence {
  padding: 78px 0;
  background: #fff;
}

.confidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 70px;
}

.confidence-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.confidence-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.support-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.support-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.support-list article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  background: var(--sky-100);
  border-radius: 8px;
}

.support-list p {
  font-size: 16px;
  line-height: 1.45;
}

.faq-band {
  padding: 74px 0 82px;
  background: var(--soft);
}

.narrow {
  max-width: 950px;
}

.faq-list {
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

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

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
  cursor: pointer;
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

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

summary::after {
  content: "";
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 160ms ease;
  flex: 0 0 auto;
}

details[open] summary::after {
  transform: rotate(225deg) translateY(-1px);
}

details p {
  max-width: 780px;
  margin: -4px 0 24px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  color: #fff;
  background:
    radial-gradient(circle at 88% 28%, rgba(35, 102, 175, 0.55), transparent 34%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 66%, var(--navy-800) 100%);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 16%;
  width: 260px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52));
  transform: rotate(-23deg);
}

.final-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.site-footer {
  padding: 34px 0 38px;
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy-950);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 28px 44px;
  align-items: center;
}

.footer-brand {
  color: #fff;
  font-size: 16px;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
  font-size: 14px;
  font-weight: 700;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.mobile-call {
  display: flex;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--red-600);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(7, 26, 61, 0.3);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: background-color 160ms ease, transform 180ms ease, opacity 180ms ease;
}

.mobile-call.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-hero {
  padding: 94px 0 54px;
  background: linear-gradient(180deg, var(--sky-100), #fff);
}

.page-hero p {
  max-width: 720px;
  font-size: 20px;
}

.content-section {
  padding: 36px 0 80px;
}

.content-card {
  max-width: 880px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 26, 61, 0.08);
}

.content-card h2 {
  margin: 32px 0 0;
  color: var(--navy-900);
  font-size: 28px;
  line-height: 1.18;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card ul {
  padding-left: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-box h2 {
  margin-top: 0;
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .confidence-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 840px) {
  body {
    font-size: 17px;
    padding-bottom: 86px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    font-size: 17px;
    white-space: normal;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-picture img {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 17, 44, 0.82) 0%, rgba(4, 17, 44, 0.78) 45%, rgba(4, 17, 44, 0.9) 100%),
      linear-gradient(90deg, rgba(4, 17, 44, 0.64), rgba(4, 17, 44, 0.1));
  }

  .hero-inner {
    min-height: 620px;
    padding: 70px 0 76px;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 66px);
  }

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

  .button {
    width: 100%;
    min-height: 60px;
    padding-inline: 20px;
  }

  .hero-note {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .service-grid,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: auto;
    padding: 26px 8px;
  }

  .service-item + .service-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .steps::before {
    display: none;
  }

  .step {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 0 18px;
    align-items: start;
  }

  .step-icon {
    grid-row: 1 / span 3;
    width: 70px;
    height: 70px;
    margin: 0;
  }

  .step-number {
    margin-top: 2px;
  }

  .steps-band,
  .confidence,
  .faq-band {
    padding: 58px 0;
  }

  .final-inner {
    display: grid;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  body:not(.show-sticky-call) .mobile-call {
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
  }

  body.show-sticky-call .mobile-call {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (min-width: 841px) {
  .mobile-call {
    display: none;
  }
}

@media (max-width: 520px) {
  .section-inner,
  .header-inner,
  .footer-inner,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero-inner {
    min-height: 590px;
    padding-top: 58px;
  }

  .hero-lede,
  .section-heading p,
  .final-cta p,
  .page-hero p {
    font-size: 18px;
  }

  .service-strip h2,
  .section-heading h2,
  .confidence-copy h2,
  .final-cta h2,
  .page-hero h1 {
    font-size: 34px;
  }

  .support-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .support-list article > span {
    width: 42px;
    height: 42px;
  }

  summary {
    min-height: 64px;
    font-size: 16px;
  }

  .content-card {
    padding: 24px;
  }
}

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