:root {
  --navy: #072d5a;
  --blue: #0784e3;
  --blue-dark: #0057b8;
  --green: #19b84f;
  --text: #152033;
  --muted: #617084;
  --line: #dce7f3;
  --soft: #f5f9fd;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 48, 95, 0.12);
}

* { 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(7,132,227,.12), transparent 34%), var(--white);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,231,243,.8);
}
.nav {
  max-width: 1180px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand img { width: 235px; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 650; color: var(--navy); }
.nav-cta { padding: 11px 18px; color: var(--white); border-radius: 999px; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }

.hero {
  max-width: 1180px; margin: 0 auto; padding: 90px 24px 70px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: center;
}
.eyebrow { margin: 0 0 14px; color: var(--green); text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-weight: 800; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 76px); line-height: .96; letter-spacing: -0.055em; color: var(--navy); margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1.04; letter-spacing: -0.04em; color: var(--navy); margin-bottom: 18px; }
h3 { color: var(--navy); font-size: 22px; margin-bottom: 12px; }
.hero-text, .muted, .section-heading p, .accent p, .cta-box p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 800; }
.primary { color: var(--white); background: linear-gradient(135deg, var(--blue), var(--blue-dark)); box-shadow: 0 14px 34px rgba(7,132,227,.24); }
.secondary { color: var(--navy); border: 1px solid var(--line); background: rgba(255,255,255,.7); }

.hero-card { position: relative; min-height: 450px; border-radius: 34px; background: linear-gradient(145deg, #ffffff, #eef7ff); box-shadow: var(--shadow); display: grid; place-items: center; overflow: hidden; }
.hero-card:before { content: ""; position: absolute; inset: 11%; border-radius: 40px; border: 1px solid rgba(7,132,227,.14); }
.hero-card img { width: 72%; max-width: 410px; position: relative; filter: drop-shadow(0 28px 32px rgba(7,45,90,.16)); }
.metric-card { position: absolute; width: 190px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.86); border: 1px solid rgba(220,231,243,.9); box-shadow: 0 18px 40px rgba(7,45,90,.12); }
.metric-card span { display: block; color: var(--blue-dark); font-size: 25px; font-weight: 900; }
.metric-card small { color: var(--muted); line-height: 1.45; }
.metric-card.one { left: 24px; bottom: 36px; }
.metric-card.two { right: 24px; top: 36px; }

.trust-strip { max-width: 1180px; margin: 0 auto; padding: 18px 24px 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-strip span { text-align: center; padding: 18px 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.8); color: var(--navy); font-weight: 800; }
.section { max-width: 1180px; margin: 0 auto; padding: 72px 24px; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.centered { text-align: center; margin: 0 auto; }
.grid.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 18px 50px rgba(7,45,90,.07); }
.card p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.steps { display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 18px; align-items: center; padding: 24px; border-radius: 24px; border: 1px solid var(--line); background: var(--white); }
.step strong { color: var(--green); font-size: 22px; }
.step span { color: var(--text); font-weight: 700; line-height: 1.55; }
.accent { max-width: none; background: linear-gradient(135deg, rgba(7,132,227,.08), rgba(25,184,79,.08)); }
.accent .section-heading { max-width: 880px; }
.cta-box { display: flex; gap: 28px; justify-content: space-between; align-items: center; padding: 44px; border-radius: 32px; background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.cta-box h2 { color: var(--white); margin-bottom: 12px; }
.cta-box p { color: rgba(255,255,255,.75); margin-bottom: 0; }
.footer { padding: 36px 24px 50px; text-align: center; color: var(--muted); border-top: 1px solid var(--line); }
.footer img { width: 72px; display: block; margin: 0 auto 12px; }
.footer p { margin: 0; }

@media (max-width: 880px) {
  .nav { align-items: flex-start; }
  .nav-links { display: none; }
  .brand img { width: 210px; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-card { min-height: 350px; }
  .grid.three, .trust-strip { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}
