:root {
  --bg: #f7f9fc;
  --ink: #14213d;
  --muted: #5d6b82;
  --line: #d9e1ee;
  --card: #ffffff;
  --nav: #0b172a;
  --accent: #1f6feb;
  --accent-dark: #1557bd;
  --gold: #c58b1d;
  --soft-blue: #eaf2ff;
  --soft-gold: #fff6e3;
  --shadow: 0 18px 45px rgba(13, 35, 68, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: rgba(11, 23, 42, 0.98);
  color: white;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.18);
}

.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent), #56a0ff);
  color: white;
  font-size: 18px;
  font-weight: 800;
}

.brand-subtitle {
  display: block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0;
  color: #b8c7e0;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #eaf1fb;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a.active,
.nav-links a:hover {
  color: white;
  text-decoration: none;
}

.hero {
  background:
    radial-gradient(circle at 15% 0%, rgba(31, 111, 235, 0.28), transparent 35%),
    radial-gradient(circle at 90% 15%, rgba(197, 139, 29, 0.18), transparent 28%),
    linear-gradient(135deg, #081426 0%, #11284b 55%, #172b4d 100%);
  color: white;
  padding: 94px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  color: #9fc3ff;
  letter-spacing: 0.12em;
  font-weight: 750;
  font-size: 13px;
  margin-bottom: 14px;
}

h1, h2, h3 {
  line-height: 1.12;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(28px, 3.7vw, 42px);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.hero p {
  color: #d8e6f8;
  font-size: 19px;
  max-width: 720px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 750;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
}

.hero-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

.hero-card h3 {
  color: white;
}

.hero-card p, .hero-card li {
  color: #dce9fb;
  font-size: 15px;
}

.hero-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.section {
  padding: 78px 0;
}

.section.tight {
  padding: 52px 0;
}

.section.white {
  background: white;
}

.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--accent-dark);
  font-weight: 750;
  font-size: 13px;
  padding: 7px 11px;
  margin-bottom: 16px;
}

.callout {
  border-left: 5px solid var(--accent);
  background: var(--soft-blue);
  border-radius: 18px;
  padding: 24px 26px;
  margin: 28px 0;
}

.callout.gold {
  border-left-color: var(--gold);
  background: var(--soft-gold);
}

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

.list-clean {
  padding-left: 0;
  list-style: none;
}

.list-clean li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.list-clean li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.page-hero {
  background: linear-gradient(135deg, #09172b 0%, #17345f 100%);
  color: white;
  padding: 72px 0 58px;
}

.page-hero p {
  color: #d8e6f8;
  font-size: 19px;
  max-width: 830px;
}

.kicker {
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
}

.process {
  counter-reset: steps;
}

.process .card {
  position: relative;
}

.process .card:before {
  counter-increment: steps;
  content: counter(steps);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-box {
  background: #0b172a;
  color: white;
  border-radius: 30px;
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.contact-box p {
  color: #cbd8eb;
}

.site-footer {
  background: #08111f;
  color: #b8c7e0;
  padding: 32px 0;
  font-size: 14px;
}

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

.footer-inner a {
  color: #d8e6f8;
}

.form-card label {
  display: block;
  font-weight: 700;
  margin: 16px 0 7px;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  background: white;
}

.form-card textarea {
  min-height: 150px;
}

.small-note {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

  .navbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    gap: 13px 18px;
  }

  .hero {
    padding: 66px 0 58px;
  }
}
