:root {
  --bg: #eef6fb;
  --bg-soft: #f7fbfe;
  --surface: #ffffff;
  --text: #17232c;
  --muted: #61707f;
  --line: #d8e8f2;
  --blue-1: #1f7fc7;
  --blue-2: #34ace6;
  --blue-3: #dff4fb;
  --dark: #1d2329;
  --shadow: 0 18px 50px rgba(19, 51, 74, 0.10);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(52, 172, 230, 0.12), transparent 28%),
    linear-gradient(180deg, #eaf5fb 0%, #f7fbfe 320px, #edf5fa 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.section {
  padding: 88px 0;
}

.compact-hero {
  padding-top: 72px;
  padding-bottom: 36px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 251, 254, 0.72);
  border-bottom: 1px solid rgba(216, 232, 242, 0.8);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: auto;
}

.brand-copy {
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 2.7em;
  letter-spacing: -0.04em;
  color: var(--dark);
  vertical-align:middle;
}

.brand-copy span {
  color: var(--muted);
  font-size: 1.5em;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  vertical-align:middle;
  margin-left:0.25em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.site-nav a.active {
  color: var(--blue-1);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--dark);
  border-radius: 12px;
  min-width: 46px;
  height: 46px;
  font-size: 22px;
}

.hero {
  padding-top: 44px;
}

.hero-grid,
.grid,
.split,
.footer-wrap {
  display: grid;
  gap: 20px;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two,
.split {
  grid-template-columns: repeat(2, 1fr);
}

.footer-wrap {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 127, 199, 0.10);
  color: var(--blue-1);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow-invert {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--dark);
}

h1 {
  margin: 18px 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 11ch;
}

.page-hero h1 {
  max-width: 13ch;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.lead {
  font-size: 18px;
}

.muted {
  color: var(--muted);
}

.section-head {
  margin-bottom: 30px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.actions.center,
.center-text {
  text-align: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 32px rgba(31, 127, 199, 0.24);
}

.btn-sm {
  min-height: 46px;
  padding: 0 18px;
}

.btn-secondary {
  background: rgba(255,255,255,0.84);
  color: var(--dark);
  border-color: var(--line);
  box-shadow: none;
}

.btn-light {
  background: #fff;
  color: var(--blue-1);
  box-shadow: none;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  box-shadow: none;
}

.card {
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.glass {
  backdrop-filter: blur(16px);
}

.hero-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.hero-logo {
  width: 92px;
  height: auto;
}

.status-list {
  display: grid;
  gap: 12px;
}

.status-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f6fbfe);
  border: 1px solid var(--line);
  font-weight: 700;
}

.status-item strong {
  color: var(--blue-1);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.icon-box,
.step-pill {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(31,127,199,0.16), rgba(52,172,230,0.18));
  color: var(--blue-1);
  font-weight: 900;
  margin-bottom: 18px;
}

.step-pill {
  border-radius: 999px;
  width: 60px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(52, 172, 230, 0.14);
  color: var(--blue-1);
  font-weight: 900;
}

.check-list.compact {
  gap: 12px;
}

.light-band {
  background: linear-gradient(180deg, rgba(223, 244, 251, 0.45), rgba(255,255,255,0));
}

.cta-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, #1f7fc7, #34ace6);
  color: #fff;
  box-shadow: 0 26px 60px rgba(31, 127, 199, 0.24);
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
  max-width: none;
}

.service-card,
.process-card {
  min-height: 220px;
}

.site-footer {
  padding: 28px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid.three,
  .grid.two,
  .split,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  h1,
  .page-hero h1,
  h2 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 88px;
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .site-nav .btn,
  .site-nav .btn-sm {
    width: 100%;
  }

  .nav-wrap {
    position: relative;
    min-height: 80px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 54px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .hero-logo {
    width: 76px;
  }

  .card,
  .cta-panel {
    padding: 22px;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn,
  .actions .btn-secondary,
  .actions .btn-light,
  .actions .btn-outline-light {
    width: 100%;
  }
}