:root {
  --navy: #071d33;
  --blue: #0d2c54;
  --steel: #5f6b60;
  --cream: #f6f3ec;
  --white: #ffffff;
  --text: #16202a;
  --muted: #64717d;
  --line: #d7ddd8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-logo {
  width: 180px;
  max-height: 82px;
  object-fit: contain;
  background: white;
  border-radius: 12px;
  padding: 5px;
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  color: white;
  font-weight: 700;
}

.nav-actions a {
  text-decoration: none;
}

.nav-button,
.primary-button {
  background: #ffffff;
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 22px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  color: var(--steel);
  font-size: .82rem;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .92;
  margin: 12px 0 22px;
  color: var(--navy);
  letter-spacing: -0.06em;
}

.hero-text {
  font-size: 1.25rem;
  color: #3b4650;
  max-width: 680px;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-buttons .primary-button,
.cta .primary-button {
  background: var(--navy);
  color: white;
}

.secondary-button {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}

.hero-card {
  background: white;
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 22px 60px rgba(7, 29, 51, .16);
  border: 1px solid var(--line);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.trust-strip {
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.trust-strip div {
  padding: 28px 24px;
  background: rgba(255,255,255,.045);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: #d4dbde;
  margin-top: 5px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 22px;
}

.section h2,
.about-band h2,
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  margin: 10px 0 26px;
  color: var(--navy);
  letter-spacing: -0.04em;
}

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

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(7, 29, 51, .08);
}

.card h3 {
  font-size: 1.45rem;
  color: var(--navy);
  margin-top: 0;
}

.card p {
  color: var(--muted);
}

.about-band {
  background: var(--blue);
  color: white;
  padding: 72px 22px;
}

.about-band > div {
  max-width: 980px;
  margin: 0 auto;
}

.about-band h2 {
  color: white;
}

.about-band p {
  font-size: 1.18rem;
  color: #e3e9ec;
}

.two-column {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  background: white;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  padding: 18px 20px;
  border-radius: 16px;
  font-weight: 700;
}

.checklist li::before {
  content: "✓";
  color: var(--steel);
  font-weight: 900;
  margin-right: 10px;
}

.cta {
  max-width: 980px;
  margin: 0 auto 72px;
  padding: 50px 22px;
  text-align: center;
  background: white;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(7, 29, 51, .10);
}

.phone-link {
  display: block;
  margin-top: 18px;
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--navy);
}

footer {
  background: #050f1a;
  color: #d7dde3;
  text-align: center;
  padding: 30px 20px;
}

footer p {
  margin: 5px 0;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
  }

  .nav-logo {
    width: 132px;
  }

  .nav-actions {
    font-size: .9rem;
    gap: 9px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .hero-card {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .trust-strip,
  .cards,
  .two-column {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 22px;
  }

  h1 {
    font-size: 3.7rem;
  }
}
