:root {
  --b-ink: #0f2733;
  --b-body: #45565f;
  --b-muted: #6f8189;
  --b-line: #dde7ec;
  --b-tint: #f2f8fb;
  --b-blue: #1878b8;
  --b-blue-dim: #12608f;
  --b-ok: #17845a;
  --b-warn: #b06a10;
  --b-bad: #b3382f;
  --b-sec: 66px;
  --b-head: 28px;
  --b-card: 24px;
  --b-nav: 64px;
}

body {
  margin: 0;
  color: var(--b-body);
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  background: #fafcfd;
}

.brand, .hero-title, .head-title, .tile-title, .chk-t, .cta-title, .foot-brand {
  font-family: 'Sen', system-ui, sans-serif;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--b-nav);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--b-line);
}
.site-head .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--b-ink);
  text-decoration: none;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  display: block;
  padding: 8px 11px;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--b-body);
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--b-blue);
}
.site-nav a.active {
  color: var(--b-blue);
  background: rgba(24, 120, 184, 0.1);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 36px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--b-line);
  border-radius: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--b-ink);
  border-radius: 2px;
}

.kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8ecbf0;
}
.kicker--ink {
  color: var(--b-blue);
}

.hero {
  position: relative;
  padding-top: 66px;
  padding-bottom: 58px;
  overflow: hidden;
  background: var(--b-ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 39, 51, 0.95) 0%, rgba(15, 39, 51, 0.86) 46%, rgba(15, 39, 51, 0.44) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-title {
  margin: 13px 0 15px 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #fff;
}
.hero-lead {
  max-width: 62ch;
  font-size: 1.01rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding-top: var(--b-sec);
  padding-bottom: var(--b-sec);
  background: #fff;
}
.section-tint {
  background: var(--b-tint);
}

.head {
  margin-bottom: var(--b-head);
}
.head-title {
  font-size: clamp(1.3rem, 2.1vw, 1.72rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--b-ink);
}
.head .kicker + .head-title {
  margin-top: 8px;
}

.lede {
  font-size: 1.01rem;
  line-height: 1.74;
  color: var(--b-body);
  margin: 0;
}
.lede + .lede {
  margin-top: 16px;
}

.fig {
  width: 100%;
  height: 100%;
  min-height: 210px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.row.align-items-center:has(> [class*="col-"] > .fig) {
  align-items: stretch !important;
}
.row:has(> [class*="col-"] > .fig) > [class*="col-"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.row:has(> [class*="col-"] > .fig) > [class*="col-"] > .fig {
  flex: 1 1 auto;
}

.note {
  margin: var(--b-head) 0 0 0;
  padding: 15px 19px;
  background: var(--b-tint);
  border-left: 3px solid var(--b-blue);
  border-radius: 0 8px 8px 0;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--b-body);
}
.section-tint .note {
  background: #fff;
}

.tile {
  display: flex;
  flex-direction: column;
  padding: var(--b-card);
  background: #fff;
  border: 1px solid var(--b-line);
  border-radius: 10px;
}
.tile-title {
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.34;
  color: var(--b-ink);
}
.tile-text {
  font-size: 0.93rem;
  line-height: 1.68;
  color: var(--b-muted);
}

.chk-list {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--b-line);
  border-radius: 10px;
  overflow: hidden;
}
.chk {
  display: grid;
  grid-template-columns: 2.6rem 1fr auto;
  align-items: start;
  gap: 4px 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--b-line);
  border-left: 3px solid var(--b-line);
}
.chk:last-child {
  border-bottom: 0;
}
.chk-n {
  font-family: 'Sen', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--b-muted);
  padding-top: 2px;
}
.chk-body {
  min-width: 0;
}
.chk-t {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--b-ink);
}
.chk-d {
  margin-top: 4px;
  font-size: 0.92rem;
  line-height: 1.66;
  color: var(--b-muted);
}
.chk-s {
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: rgba(111, 129, 137, 0.12);
  color: var(--b-muted);
}
.chk--present {
  border-left-color: var(--b-ok);
}
.chk--present .chk-s {
  background: rgba(23, 132, 90, 0.12);
  color: var(--b-ok);
}
.chk--conflict {
  border-left-color: var(--b-warn);
}
.chk--conflict .chk-s {
  background: rgba(176, 106, 16, 0.13);
  color: var(--b-warn);
}
.chk--missing {
  border-left-color: var(--b-bad);
}
.chk--missing .chk-s {
  background: rgba(179, 56, 47, 0.12);
  color: var(--b-bad);
}
.chk--wrong-form {
  border-left-color: var(--b-warn);
}
.chk--wrong-form .chk-s {
  background: rgba(176, 106, 16, 0.13);
  color: var(--b-warn);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 16px var(--b-card);
  background: #fff;
  border: 1px solid var(--b-line);
  border-radius: 10px;
}
.step + .step {
  margin-top: 12px;
}
.step-n {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(24, 120, 184, 0.1);
  color: var(--b-blue);
  font-family: 'Sen', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}
.step-body {
  min-width: 0;
}

.kv-list {
  background: #fff;
  border: 1px solid var(--b-line);
  border-radius: 10px;
  overflow: hidden;
}
.kv {
  display: grid;
  grid-template-columns: minmax(120px, 11rem) 1fr;
  gap: 6px 18px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--b-line);
}
.kv:last-child {
  border-bottom: 0;
}
.kv-k {
  font-family: 'Sen', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--b-ink);
}
.kv-v {
  font-size: 0.93rem;
  line-height: 1.66;
  color: var(--b-muted);
}

.cta {
  padding-top: 52px;
  padding-bottom: 52px;
  background: var(--b-ink);
}
.cta-title {
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-text {
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
}
.cta-mail {
  display: block;
  font-family: 'Sen', system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #8ecbf0;
  border-bottom: 2px solid rgba(142, 203, 240, 0.45);
  text-decoration: none;
  padding-bottom: 4px;
}
.cta-mail:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.cta-place {
  display: block;
  margin-top: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}

.site-foot {
  padding-top: 42px;
  padding-bottom: 22px;
  background: #fff;
  border-top: 1px solid var(--b-line);
}
.foot-brand {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--b-ink);
}
.foot-tag {
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--b-muted);
}
.foot-k {
  display: block;
  margin-bottom: 10px;
  font-family: 'Sen', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--b-muted);
}
.foot-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.foot-links li + li {
  margin-top: 7px;
}
.foot-links a,
.foot-links span {
  font-size: 0.9rem;
  color: var(--b-body);
  text-decoration: none;
}
.foot-links a:hover {
  color: var(--b-blue);
}
.foot-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--b-line);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--b-muted);
}

@media (max-width: 1199.98px) {
  .site-nav a {
    padding: 8px 8px;
    font-size: 0.83rem;
  }
}

@media (max-width: 991.98px) {
  :root {
    --b-sec: 44px;
    --b-head: 22px;
    --b-card: 20px;
  }
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--b-nav);
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--b-line);
    box-shadow: 0 12px 24px rgba(15, 39, 51, 0.08);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 12px 12px 12px;
  }
  .site-nav a {
    padding: 11px 12px;
    font-size: 0.92rem;
  }
  .hero {
    padding-top: 46px;
    padding-bottom: 40px;
  }
  .hero-veil {
    background: rgba(15, 39, 51, 0.93);
  }
  .row:has(> [class*="col-"] > .fig) > [class*="col-"] {
    display: block;
  }
  .fig {
    height: auto;
    aspect-ratio: 3 / 2;
    min-height: 0;
  }
  .chk {
    grid-template-columns: 2.2rem 1fr;
  }
  .chk-s {
    grid-column: 2;
    justify-self: start;
    margin-top: 8px;
  }
  .kv {
    grid-template-columns: 1fr;
  }
}
