* {
  box-sizing: border-box;
}

:root {
  --navy: #06295f;
  --blue: #0876c9;
  --light-blue: #eaf5ff;
  --silver: #d8dee8;
  --text: #182230;
  --muted: #5d6875;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(3, 34, 75, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e8edf3;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 108px;
  height: 68px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8, 118, 201, 0.2);
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: .92rem;
}

.button-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: none;
}

.full-width {
  width: 100%;
}

.hero {
  padding: 88px 0;
  background:
    radial-gradient(circle at top right, rgba(8,118,201,.18), transparent 34%),
    linear-gradient(135deg, #f8fbff, #eaf5ff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3 {
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  letter-spacing: -.04em;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  margin: 12px 0 8px;
}

.hero-text {
  max-width: 720px;
  margin: 22px 0 28px;
  font-size: 1.18rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 700;
}

.trust-row span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--blue);
}

.hero-card {
  background: var(--white);
  padding: 30px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-card img {
  height: 210px;
  width: 100%;
  object-fit: contain;
}

.hero-card small,
.contact-form small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.promo-strip {
  background: var(--navy);
  color: var(--white);
  padding: 16px 0;
}

.promo-content {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.section {
  padding: 84px 0;
}

.alt {
  background: #f5f8fc;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading > p:last-child {
  color: var(--muted);
}

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

.service-card {
  padding: 28px;
  border: 1px solid #e1e7ef;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(3,34,75,.06);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--light-blue);
  color: var(--blue);
  font-size: 1.55rem;
  font-weight: 800;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 16px;
}

.check-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
  padding: 18px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(3,34,75,.06);
}

.check-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
}

.check-list p {
  margin: 0;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-section h2,
.contact-section a {
  color: var(--white);
}

.light {
  color: #7fc5ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  color: var(--text);
  border-radius: 16px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfd7e3;
  border-radius: 8px;
  font: inherit;
}

.site-footer {
  background: #031b40;
  color: var(--white);
  padding: 24px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-wrap p {
  margin: 3px 0;
  color: #cbd7e9;
}

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

  .nav-wrap .button-small {
    margin-left: auto;
  }

  .hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header .brand img {
    width: 82px;
  }

  .button-small {
    font-size: .78rem;
    padding: 0 12px;
  }

  .hero {
    padding: 58px 0;
  }

  .section {
    padding: 62px 0;
  }

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

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

.phone-only { align-items: center; }
.contact-call-card { color: var(--text); }
.contact-call-card h2 { color: var(--navy); }
