:root {
  --blue: #123b82;
  --blue-dark: #0a285c;
  --ink: #121820;
  --muted: #606975;
  --soft: #f3f5f8;
  --line: #dfe4ea;
  --white: #fff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 99;
  padding: 12px 16px;
  color: var(--white);
  background: var(--blue-dark);
  font-size: 16px;
  font-weight: 700;
}

.skip-link:focus { top: 16px; }

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  background: var(--white);
}

.header-row {
  width: min(1180px, calc(100% - 48px));
  min-height: 140px;
  display: flex;
  align-items: center;
}

.logo { width: 300px; }

.hero {
  overflow: hidden;
  background: var(--soft);
}

.hero-layout {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: start;
  gap: 78px;
  padding-block: 40px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 20px;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.06;
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  line-height: 1.25;
}

.intro {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--muted);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}

.button.primary { color: var(--white); background: var(--blue); }
.button.secondary { color: var(--blue); background: transparent; }
.button:hover,
.button:focus-visible { box-shadow: inset 0 0 0 2px rgba(255,255,255,.35); }
.button.secondary:hover,
.button.secondary:focus-visible { background: var(--white); }

.email-copy-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.email-address {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.email-address:hover,
.email-address:focus-visible { text-decoration: underline; }

.copy-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 4px;
  color: var(--blue);
  background: transparent;
  cursor: pointer;
}

.copy-button:hover,
.copy-button:focus-visible { background: #e8eef8; }

.copy-icon {
  position: relative;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.copy-icon::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: -6px;
  top: -6px;
  border: 2px solid currentColor;
  border-radius: 2px;
  background: var(--white);
}

.copy-status {
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

.hero-image { position: relative; margin: 0; }

.hero-image::before {
  content: "";
  position: absolute;
  inset: 28px -28px -28px 28px;
  background: var(--blue);
}

.hero-image img {
  position: relative;
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
}

.hero-image figcaption {
  position: absolute;
  left: -24px;
  bottom: 24px;
  padding: 13px 18px;
  color: var(--blue-dark);
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(10, 40, 92, .16);
}

.facts { color: var(--white); background: var(--blue); }

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

.facts-row > div {
  padding: 22px 34px;
  border-right: 1px solid rgba(255,255,255,.2);
}

.facts-row > div:first-child { border-left: 1px solid rgba(255,255,255,.2); }
.facts-row strong,
.facts-row span { display: block; }
.facts-row strong { font-size: 16px; font-weight: 700; }
.facts-row span { color: rgba(255,255,255,.76); font-size: 16px; font-weight: 400; }

.section { padding-block: 120px; }

.service { padding-top: 180px; }

.service-layout {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 70px;
}

.section-title h2 { margin-bottom: 0; }
.service-text { color: var(--muted); }

.text-link {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 5px;
}

.text-link span { margin-left: 8px; }

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.process article {
  position: relative;
  min-height: 210px;
  padding: 34px;
  border-top: 4px solid var(--blue);
  background: var(--soft);
}

.process article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -36px;
  width: 28px;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

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

.site-footer { padding-block: 34px; border-top: 1px solid var(--line); }

.footer-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-row img { width: 190px; }
.footer-row p { margin: 0 auto 0 0; color: var(--muted); }
.footer-row nav { display: flex; gap: 20px; }
.footer-row nav a { color: var(--muted); text-decoration: none; }

.legal-page {
  padding-block: 80px 110px;
}

.legal-wrap {
  width: min(840px, calc(100% - 48px));
  margin-inline: auto;
}

.legal-page h1 { margin-bottom: 48px; }

.back-link {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
}

.legal-page h2 {
  margin: 48px 0 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.legal-page h3 { margin: 28px 0 10px; }
.legal-page p,
.legal-page li { color: var(--muted); }
.legal-page ul { padding-left: 22px; }
.legal-page address { color: var(--muted); font-style: normal; }
.legal-page a { color: var(--blue); }
@media (max-width: 900px) {
  .hero-layout,
  .service-layout { grid-template-columns: 1fr; gap: 52px; }
  .hero-layout { padding-bottom: 90px; }
  .hero-image { width: min(100%, 620px); }
  .service-layout { align-items: start; }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 30px, 1180px); }
  .header-row { width: min(100% - 30px, 1180px); min-height: 145px; }
  .logo { width: 260px; max-width: 100%; }
  .hero-layout { min-height: 0; padding-block: 60px 80px; }
  h1,
  h2 { font-size: 56px; }
  .hero-image::before { inset: 16px -10px -16px 16px; }
  .hero-image figcaption { left: 12px; bottom: 16px; }
  .facts-row,
  .process { grid-template-columns: 1fr; }
  .facts-row > div,
  .facts-row > div:first-child {
    padding: 22px 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .facts-row > div:last-child { border-bottom: 0; }
  .section { padding-block: 80px; }
  .service-layout { margin-bottom: 48px; }
  .process article,
  .process article + article {
    min-height: 0;
    padding: 30px;
  }
  .process { gap: 52px; }
  .process article:not(:last-child)::after {
    content: "↓";
    top: auto;
    right: 50%;
    bottom: -40px;
    transform: translateX(50%);
  }
  .footer-row { flex-wrap: wrap; }
  .footer-row p { flex: 1 1 100%; order: 3; }
  .legal-wrap { width: min(100% - 30px, 840px); }
  .legal-page { padding-block: 60px 80px; }
}

@media (max-width: 430px) {
  h1,
  h2 { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
