:root {
  --navy: #0b1f3a;
  --blue: #1565d8;
  --teal: #18b7a3;
  --ink: #16233a;
  --muted: #667085;
  --line: #dce6f2;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 31, 58, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

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

.topbar a {
  color: var(--white);
}

.nav {
  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 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.2px;
}

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

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu a {
  border-radius: 8px;
  color: #27364f;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 13px;
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-size: 24px;
  line-height: 1;
  padding: 9px 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  padding: 12px 20px;
  box-shadow: 0 12px 25px rgba(21, 101, 216, 0.22);
}

.btn.alt {
  background: var(--teal);
  box-shadow: 0 12px 25px rgba(24, 183, 163, 0.22);
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.hero::before,
.page-hero::before,
.image-band::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 25, 48, 0.9), rgba(8, 25, 48, 0.66), rgba(8, 25, 48, 0.2));
}

.hero .container,
.page-hero .container,
.image-band .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
  padding: 128px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
}

h2 {
  color: var(--navy);
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 18px;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero p,
.page-hero p,
.image-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

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

section {
  padding: 86px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

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

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

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-body {
  padding: 26px;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature strong,
.stat strong {
  display: block;
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 8px;
}

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

.split img {
  width: 100%;
  min-height: 430px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 30px;
}

.list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.process {
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.step::before {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e8f7f5;
  color: var(--teal);
  counter-increment: steps;
  content: counter(steps);
  font-weight: 900;
}

.page-hero {
  position: relative;
  min-height: 390px;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.page-hero .container {
  padding: 92px 0;
}

.page-hero h1 {
  margin-bottom: 14px;
}

.image-band {
  position: relative;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.image-band .container {
  padding: 20px 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.client-logo {
  display: grid;
  min-height: 120px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.contact-card {
  padding: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.contact-card h3,
.contact-card a {
  color: var(--white);
}

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

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.footer {
  background: #07172c;
  color: rgba(255, 255, 255, 0.82);
  padding: 58px 0 22px;
}

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

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

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  margin: 8px 0;
}

.copyright {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

@media (max-width: 900px) {
  .topbar .container,
  .nav .container,
  .split {
    align-items: flex-start;
  }

  .topbar .container,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topbar .container {
    display: grid;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 13px 14px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 92px 0;
  }

  section {
    padding: 64px 0;
  }
}

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

  .brand span {
    max-width: 210px;
  }

  h1 {
    font-size: 40px;
  }

  .hero p,
  .page-hero p,
  .image-band p {
    font-size: 17px;
  }
}
