:root {
  --ink: #162033;
  --muted: #61708a;
  --line: #d9e0ea;
  --panel: #f6f8fb;
  --surface: #ffffff;
  --blue: #0a66d8;
  --blue-dark: #084fa8;
  --green: #168a52;
  --amber: #c77805;
  --shadow: 0 18px 48px rgba(22, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

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

.topbar {
  background: #102033;
  color: #eef5ff;
  font-size: 0.9rem;
}

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

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

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #0a66d8;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 10px 24px rgba(10, 102, 216, 0.24);
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.78rem;
}

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

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #31425c;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: #edf4ff;
  color: var(--blue-dark);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 3px 0;
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
  background: #142033;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 29, 0.88), rgba(12, 18, 29, 0.58) 48%, rgba(12, 18, 29, 0.18));
  z-index: -1;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-content {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #dbeafe;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.35rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #edf4ff;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.button.primary {
  background: var(--blue);
  color: #fff;
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.section {
  padding: 76px 0;
}

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

.section.compact {
  padding: 48px 0;
}

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

.section-heading h2,
.copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.copy p {
  color: var(--muted);
  max-width: 650px;
  margin: 12px 0 0;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(22, 32, 51, 0.06);
}

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

.card-body {
  padding: 22px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

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

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

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #30435d;
}

.check {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8f7ef;
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.media-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.stat {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--blue-dark);
}

.stat span {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 650;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  color: #fff;
  background: #102033;
  isolation: isolate;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 29, 0.86), rgba(12, 18, 29, 0.54));
  z-index: -1;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-hero .section-inner {
  padding: 82px 0 58px;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps li::before {
  content: counter(step);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #edf4ff;
  color: var(--blue-dark);
  font-weight: 900;
}

.steps h3 {
  margin: 0 0 4px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: stretch;
  background: #102033;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.contact-panel .copy {
  padding: 34px;
}

.contact-panel p {
  color: #d9e7fb;
}

.contact-panel img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.notice {
  padding: 16px 18px;
  border: 1px solid #f2d59d;
  background: #fff7e8;
  color: #6e4706;
  border-radius: 8px;
  font-weight: 650;
}

.footer {
  background: #0d1624;
  color: #e9f1fb;
  padding: 42px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer a {
  display: block;
  color: #c9d8e9;
  margin-top: 8px;
}

.footer p {
  color: #c9d8e9;
}

.fineprint {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 18px;
  color: #a9bad0;
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .grid.three,
  .grid.two,
  .split,
  .footer-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

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

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .topbar-inner,
  .nav-inner,
  .section-inner,
  .hero-content {
    width: min(100% - 22px, 1160px);
  }

  .hero {
    min-height: 620px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .section {
    padding: 56px 0;
  }

  .card img,
  .media-panel img {
    height: 290px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }
}
