:root {
  --navy: #0f3557;
  --blue: #126b86;
  --teal: #10a6a0;
  --mint: #e9f7f4;
  --sky: #edf7fb;
  --ink: #1d2939;
  --muted: #667085;
  --line: #d9e6eb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 53, 87, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  font-size: 22px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  font-weight: 900;
}

.menu {
  display: flex;
  align-items: center;
  gap: 19px;
  color: #344054;
  font-size: 15px;
  font-weight: 700;
}

.menu a:hover,
.menu a.active {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(18, 107, 134, 0.18);
  cursor: pointer;
}

.button:hover {
  background: var(--navy);
}

.button.secondary {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button.light {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 74px 0 42px;
  background: linear-gradient(180deg, var(--sky), var(--white));
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 66px);
}

h2 {
  font-size: clamp(32px, 4vw, 46px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  color: #475467;
  font-size: 19px;
  max-width: 650px;
}

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

.hero-image {
  position: relative;
  min-height: 520px;
}

.hero-image img {
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  width: min(310px, calc(100% - 24px));
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 5px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--sky);
}

.section.mint {
  background: var(--mint);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 36px;
}

.section-header p {
  max-width: 570px;
  color: var(--muted);
  font-size: 17px;
}

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

.split img,
.page-hero img,
.feature-photo {
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split img {
  height: 440px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #344054;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

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

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 53, 87, 0.06);
}

.card p {
  margin-top: 12px;
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 900;
  margin-bottom: 18px;
}

.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card img {
  height: 210px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 24px;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
  padding-top: 70px;
}

.process .card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.cta-band {
  padding: 54px;
  border-radius: 30px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

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

.cta-band p {
  margin-top: 12px;
  color: #d6e8ee;
  max-width: 760px;
}

.page-hero {
  padding: 62px 0;
  background: var(--sky);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.page-hero img {
  height: 390px;
}

.breadcrumb {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  background: var(--white);
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--navy);
}

details p {
  margin-top: 13px;
  color: var(--muted);
}

.testimonial {
  min-height: 245px;
}

.quote {
  color: #344054;
  font-size: 17px;
}

.attribution {
  margin-top: 20px;
  color: var(--navy);
  font-weight: 900;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

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

.contact-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.contact-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-weight: 800;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map-embed {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.disclaimer {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
}

.footer {
  background: #0b243b;
  color: var(--white);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 36px;
}

.footer p,
.footer a,
.footer li {
  color: #c7d7df;
}

.footer h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 34px;
  padding-top: 22px;
  color: #c7d7df;
  font-size: 14px;
}

.mobile-call {
  display: none;
}

@media (max-width: 1040px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .menu {
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-grid,
  .split,
  .page-hero-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: auto;
  }

  .hero-image img,
  .page-hero img,
  .split img {
    height: 420px;
  }

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

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

  .cta-band {
    grid-template-columns: 1fr;
  }
}

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

  .topbar .container {
    flex-direction: column;
    gap: 4px;
  }

  .menu,
  .nav-actions {
    display: none;
  }

  .brand {
    font-size: 20px;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-image img,
  .page-hero img,
  .split img {
    height: 330px;
  }

  .hero-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .stats-strip,
  .grid.three,
  .grid.four,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .section-header {
    display: block;
  }

  .section-header p {
    margin-top: 14px;
  }

  .cta-band {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .mobile-call {
    position: fixed;
    z-index: 30;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    justify-content: center;
  }

  body {
    padding-bottom: 82px;
  }
}
