:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5f6b7a;
  --line: #dbe2ea;
  --paper: #ffffff;
  --soft: #f3f7fa;
  --blue: #0d4f8b;
  --green: #0f7b68;
  --gold: #c9962d;
  --shadow: 0 22px 70px rgba(23, 32, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(219, 226, 234, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.header-call:hover,
.contact-card a:hover {
  color: var(--blue);
}

.header-call {
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100vh - 76px));
  align-items: center;
  overflow: hidden;
  background: #122033;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 21, 34, 0.9) 0%, rgba(10, 21, 34, 0.72) 42%, rgba(10, 21, 34, 0.16) 78%),
    linear-gradient(0deg, rgba(10, 21, 34, 0.18), rgba(10, 21, 34, 0.18));
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  padding: clamp(54px, 10vw, 96px) 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 690px;
  font-size: clamp(2.65rem, 7vw, 5.8rem);
}

h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 19px;
  font-weight: 900;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: #fff;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 36px));
  margin: -44px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-strip a {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.contact-strip a:last-child {
  border-right: 0;
}

.contact-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-strip strong {
  display: block;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  overflow-wrap: anywhere;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 124px) 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

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

.coverage-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 900;
}

.coverage-card p,
.benefits p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 7vw, 88px);
  border-top: 1px solid var(--line);
}

.benefits {
  display: grid;
  gap: 22px;
}

.benefits div {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.benefits div:last-child {
  border-bottom: 0;
}

.benefits p {
  margin: 10px 0 0;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr minmax(290px, 430px);
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.final-cta p {
  max-width: 610px;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: 8px;
  background: var(--soft);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

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

  .coverage-grid,
  .contact-strip,
  .split-section,
  .final-cta {
    grid-template-columns: 1fr 1fr;
  }

  .contact-strip a:nth-child(2) {
    border-right: 0;
  }

  .contact-strip a:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .split-section,
  .final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .header-call {
    font-size: 0.88rem;
  }

  .hero {
    min-height: 720px;
  }

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

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 21, 34, 0.92), rgba(10, 21, 34, 0.72));
  }

  .hero-content {
    margin-left: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-strip,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .contact-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-strip a:last-child {
    border-bottom: 0;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 10px;
  }
}
