:root {
  --ink: #12324a;
  --navy: #1a5f9e;
  --navy-2: #2b7ec7;
  --accent: #1a7ad9;
  --accent-2: #3ea0f0;
  --paper: #f4f9fd;
  --paper-2: #e6f2fb;
  --white: #ffffff;
  --muted: #3d5d75;
  --line: rgba(26, 95, 158, 0.16);
  --shadow: 0 16px 40px rgba(26, 95, 158, 0.1);
  --radius: 22px;
  --max: 1180px;
  --font: "Manrope", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.05rem;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  left: 8px;
}

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #16456b;
}

.brand img {
  width: 42px;
  height: 42px;
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: #16456b;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  background: #e6f2fb;
  color: #0d3d66;
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  color: #16456b;
  border-radius: 10px;
  padding: 8px 12px;
}

.hero {
  background:
    radial-gradient(ellipse at 85% 0%, rgba(62, 160, 240, 0.22), transparent 46%),
    linear-gradient(180deg, #dff0fb 0%, #f4f9fd 100%);
  color: var(--ink);
  overflow: hidden;
  scroll-margin-top: 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
}

.hero h1,
.section-title {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #0f3658;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
  margin: 14px 0 18px;
}

.lead {
  font-size: 1.15rem;
  max-width: 56ch;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #1467b8;
}

.btn-ghost {
  border-color: #9ec8ea;
  color: #16456b;
  background: #fff;
}

.hero-art {
  position: relative;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--accent);
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 84px 0;
  scroll-margin-top: 88px;
}

.section-kicker {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  margin: 8px 0 16px;
}

.muted {
  color: var(--muted);
  max-width: 62ch;
}

.about-grid,
.approach-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.checklist li {
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.checklist li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 14px;
  background: conic-gradient(from 180deg, var(--accent-2), var(--navy));
}

.services {
  background: linear-gradient(180deg, #e8f4fc 0%, var(--paper) 100%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 14px 0 8px;
}

.icon-wrap {
  width: 64px;
  height: 64px;
}

.wide {
  grid-column: span 2;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.step {
  background: #eef7fd;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}

.step span {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
}

.step p {
  margin: 8px 0 0;
}

.contact-line {
  color: #1467b8;
}

.btn:focus-visible,
.nav a:focus-visible,
.contact-line:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}

.trust {
  background: #e7f3fc;
  color: var(--ink);
}

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

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.trust-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

.contact a.contact-line {
  display: block;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 8px 0;
}

.legal {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-footer {
  background: #eef7fd;
  color: var(--muted);
  padding: 28px 0 40px;
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .approach-grid,
  .contact-grid,
  .cards,
  .steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    inset: 76px 16px auto;
    width: calc(100% - 32px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    z-index: 80;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

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