:root {
  --ink: #142033;
  --muted: #5b6678;
  --line: #d9e0ea;
  --brand: #1a3a6b;
  --brand-2: #0f5e9d;
  --steel: #7d8794;
  --soft: #f4f7fb;
  --panel: #ffffff;
  --accent: #d7e6f5;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--brand);
  color: #fff;
}

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

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

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #243047;
  font-weight: 650;
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--brand-2);
}

.language {
  display: flex;
  gap: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
}

.language a {
  color: var(--muted);
  font-size: 0.82rem;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--brand);
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

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

.button:hover,
button:hover {
  background: #0f2c56;
  border-color: #0f2c56;
}

.button.secondary:hover {
  color: #fff;
}

.hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(26, 58, 107, 0.08), rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, #fff, #f8fbff);
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 52px;
  align-items: center;
  padding: 64px 0 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.35rem, 4.2vw, 4.45rem);
}

h2 {
  font-size: clamp(1.8rem, 2.7vw, 3rem);
}

h3 {
  font-size: 1.18rem;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #36445a;
  font-size: 1.14rem;
}

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

.hero-panel {
  background: var(--brand);
  color: #fff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 22px 80px rgba(26, 58, 107, 0.24);
}

.hero-panel img {
  display: block;
  width: 220px;
  max-width: 100%;
  margin: 0 auto 22px;
  background: #fff;
  border-radius: 4px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.metric {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

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

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.65fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

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

.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 {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
}

.card p,
.card li {
  color: var(--muted);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.process-step {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--brand);
  font-weight: 850;
  margin-bottom: 18px;
}

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

.list-clean {
  padding-left: 20px;
}

.list-clean li {
  margin: 8px 0;
}

.cta-band {
  background: var(--brand);
  color: #fff;
}

.cta-band .section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-band p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-band .button {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

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

label {
  display: grid;
  gap: 7px;
  color: #28354b;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bdc8d7;
  border-radius: 4px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
}

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

.notice {
  border-left: 4px solid var(--brand);
  background: #edf4fb;
  padding: 14px 16px;
  color: #33435a;
}

.footer {
  background: #101928;
  color: #dce4ef;
  padding: 42px 0;
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.footer a {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-title {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-title .section {
  padding: 54px 0;
}

.breadcrumb {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  color: #3b485c;
  font-weight: 650;
}

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

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

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

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

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

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

  .process-step:last-child {
    border-bottom: 0;
  }

  .cta-band .section {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  button {
    width: 100%;
  }
}
