:root {
  --bg: #f4f7fb;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: #ffffff;
  --text: #102033;
  --muted: #597089;
  --line: rgba(16, 32, 51, 0.08);
  --accent: #3a7bff;
  --accent-dark: #2457c9;
  --accent-soft: #e8f0ff;
  --ink-soft: #d9e7ff;
  --shadow: 0 20px 50px rgba(17, 30, 54, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(58, 123, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(248, 251, 255, 0.78);
  border-bottom: 1px solid rgba(16, 32, 51, 0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
.brand { font-weight: 800; letter-spacing: -0.02em; }
nav { display: flex; gap: 20px; color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--text); }

.hero { padding: 80px 0 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: center;
}
.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
h1, h2, h3, p, ul { margin-top: 0; }
h1 {
  font-size: clamp(2.7rem, 5.1vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
  max-width: 12ch;
}
.hero-copy, .section-heading p, .cta-band p, .service-card p, .step p, .price-card p, .trust-strip span {
  color: var(--muted);
  line-height: 1.65;
}
.hero-copy { font-size: 1.08rem; max-width: 60ch; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}
.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(135deg, var(--accent) 0%, #5e93ff 100%);
  color: white;
  box-shadow: 0 12px 30px rgba(58, 123, 255, 0.24);
}
.button.secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
}
.microcopy { margin-top: 16px; font-size: 0.95rem; color: var(--muted); }

.hero-panel {
  display: grid;
  gap: 16px;
}
.trust-card {
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(17,31,54,0.98) 0%, rgba(24,52,88,0.98) 100%);
  color: white;
  box-shadow: 0 28px 60px rgba(10, 24, 44, 0.22);
}
.trust-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-card h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.trust-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}
.mini-proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.mini-proof {
  padding: 20px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.mini-proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}
.mini-proof span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.trust-strip {
  padding: 18px 0 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.trust-strip-inner > div {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section { padding: 88px 0; }
.alt { background: rgba(255,255,255,0.45); }
.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.card-grid, .pricing-grid, .steps {
  display: grid;
  gap: 18px;
}
.card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.service-card, .price-card, .step {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.featured-service {
  border-color: rgba(58,123,255,0.24);
  background: linear-gradient(180deg, rgba(232,240,255,0.86) 0%, rgba(255,255,255,0.96) 100%);
}
.service-card h3, .price-card h3, .step h3 { margin-bottom: 10px; letter-spacing: -0.03em; }
.service-price {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 14px;
}
.text-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
}
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step strong {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  margin-bottom: 18px;
}
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pricing-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.price-card.featured {
  border-color: rgba(58,123,255,0.24);
  background: linear-gradient(180deg, rgba(232,240,255,0.86) 0%, rgba(255,255,255,0.96) 100%);
}
.price {
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin: 8px 0 12px;
}
.price small { font-size: 0.95rem; color: var(--muted); }
.cta-band-inner {
  background: linear-gradient(135deg, #102033 0%, #153155 100%);
  color: white;
  border-radius: 32px;
  padding: 34px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.cta-band .eyebrow { color: #8ab0ff; }
.cta-band p { color: rgba(255,255,255,0.78); }

@media (max-width: 1180px) {
  .card-grid, .pricing-grid-five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .hero-grid,
  .trust-strip-inner,
  .pricing-grid,
  .pricing-grid-five,
  .steps,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }
  .hero-grid,
  .cta-band-inner {
    display: grid;
  }
}

@media (max-width: 860px) {
  nav { display: none; }
}

@media (max-width: 640px) {
  .hero { padding-top: 42px; }
  .section { padding: 64px 0; }
  .card-grid,
  .pricing-grid,
  .pricing-grid-five,
  .steps,
  .mini-proof-row,
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }
  .cta-band-inner { padding: 24px; border-radius: 24px; }
}
