:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --border: rgba(29, 29, 31, 0.08);
  --primary: #0071e3;
  --primary-hover: #0077ed;
  --soft: #fbfbfd;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% -10%, #ffffff 0%, var(--bg) 35%, #f1f1f3 100%);
  color: var(--text);
  scroll-behavior: smooth;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(245, 245, 247, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 8px 20px rgba(0, 113, 227, 0.28);
  transition: background-color 180ms ease, transform 180ms ease;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-small {
  font-size: 0.9rem;
  padding: 0.65rem 1.1rem;
}

.btn-secondary {
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: none;
}

.hero {
  padding: 5.5rem 0 4rem;
  position: relative;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: -40% -20% auto;
  height: 500px;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(0, 113, 227, 0.15), transparent 62%);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.hero h1 {
  margin: 0;
  max-width: 17ch;
  font-size: clamp(2.1rem, 5vw, 4.15rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.subcopy {
  margin-top: 1.3rem;
  max-width: 58ch;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
  color: var(--muted);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-metrics {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-metrics article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow);
}

.hero-metrics h3 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.hero-metrics p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.trust {
  padding: 1.2rem 0 0.6rem;
}

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

.logos {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.logos span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.84rem;
}

.section {
  padding: 4.6rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f9 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head h2 {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid article {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 1rem;
  padding: 1.2rem;
}

.process-grid span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

.process-grid h3 {
  margin: 0.4rem 0 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.process-grid p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.testimonials {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonials article {
  background: #1d1d1f;
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.testimonials p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.testimonials h4 {
  margin: 1rem 0 0;
  color: #d2d2d7;
  font-weight: 500;
  font-size: 0.9rem;
}

.cta-section {
  padding-top: 2rem;
}

.cta-panel {
  border-radius: 1.2rem;
  padding: clamp(1.3rem, 4vw, 2rem);
  background: linear-gradient(120deg, #0f2642 0%, #103a69 50%, #1860aa 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-panel .eyebrow {
  color: #7fd1ff;
}

.cta-panel h2 {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.cta-panel p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 60ch;
}

.cta-panel .btn {
  white-space: nowrap;
  background: #fff;
  color: #103a69;
  box-shadow: none;
}

.footer {
  padding: 2.3rem 0 2.8rem;
}

.footer-wrap {
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-metrics,
  .cards,
  .process-grid,
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1120px, calc(100% - 2rem));
  }

  .topbar {
    position: static;
  }

  .nav-wrap .btn-small {
    display: none;
  }

  .hero {
    padding-top: 3.6rem;
  }

  .hero-metrics,
  .cards,
  .process-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
