:root {
  --navy: #08233f;
  --navy-2: #123657;
  --green: #4b9cd3;
  --green-dark: #2f79ad;
  --gold: #f4b942;
  --ink: #182433;
  --muted: #5c6b7a;
  --line: #dce5ed;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 35, 63, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 4px;
}

.skip-link:focus {
  left: 12px;
}

.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(14px);
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

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

.logo {
  color: var(--navy);
  font-weight: 850;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 44px;
  min-width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
}

.nav-toggle::before {
  content: "";
  display: block;
  width: 18px;
  height: 12px;
  background: linear-gradient(var(--navy), var(--navy)) top / 100% 2px no-repeat,
    linear-gradient(var(--navy), var(--navy)) center / 100% 2px no-repeat,
    linear-gradient(var(--navy), var(--navy)) bottom / 100% 2px no-repeat;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid #d7e9f5;
  border-radius: 999px;
  color: var(--navy-2);
  background: #f2f8fc;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(8, 35, 63, 0.05);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: #b9d9ee;
  color: var(--green-dark);
  background: #e8f4fb;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(31, 166, 106, 0.22);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
}

.hero {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(8, 35, 63, 0.94), rgba(18, 54, 87, 0.83)),
    radial-gradient(circle at 84% 18%, rgba(31, 166, 106, 0.42), transparent 30%),
    var(--navy);
}

.hero-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 46px;
  padding: 76px 0;
}

.hero.compact .hero-inner {
  min-height: 420px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a9efca;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 900px;
}

.hero p {
  max-width: 690px;
  margin: 22px 0 0;
  color: #dbe8f2;
  font-size: 1.16rem;
}

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

.hero-panel {
  display: grid;
  gap: 16px;
}

.photo-placeholder {
  min-height: 340px;
  display: grid;
  align-content: end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 16px);
  box-shadow: var(--shadow);
}

.photo-placeholder strong {
  color: var(--white);
  font-size: 1.4rem;
}

.photo-placeholder span {
  color: #dbe8f2;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
}

.stat span {
  color: #dbe8f2;
  font-size: 0.88rem;
}

.section {
  padding: 84px 0;
}

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

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

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header p,
.content p,
.card p,
.footer p {
  color: var(--muted);
}

.section-navy p {
  color: #dbe8f2;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.26rem;
}

.trust-strip {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-weight: 750;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-chip {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-2);
  background: var(--soft);
  font-size: 0.86rem;
}

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

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

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

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

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 35, 63, 0.06);
}

.card-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: none;
}

.feature-list,
.check-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

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

.lead-box {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-placeholder {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.field {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--soft);
}

.textarea {
  min-height: 120px;
  align-items: flex-start;
  padding-top: 14px;
}

.testimonial {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 750;
}

.quote-name {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  padding: 56px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}

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

.cta-band p {
  color: #dbe8f2;
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.related a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  padding: 60px 0 26px;
  color: #dbe8f2;
  background: #061a30;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 30px;
}

.footer h2,
.footer h3,
.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer a {
  color: #dbe8f2;
  text-decoration: none;
}

.site-footer ul {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.site-footer li {
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #9fb2c5;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    margin: 4px 0;
    padding: 12px 14px;
    border-radius: var(--radius);
  }

  .site-nav .btn {
    margin-top: 8px;
  }

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

  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .hero-inner {
    min-height: auto;
    padding: 56px 0;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .section {
    padding: 58px 0;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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