:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --ink: #0f172a;
  --muted: #536079;
  --line: #dde5f2;
  --blue: #0079c8;
  --blue-dark: #075a96;
  --red: #ed1f2b;
  --navy: #11172c;
  --slate: #525775;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* { 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(--ink);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 28px;
}
.brand img { width: 235px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 700; font-size: 0.95rem; color: #25304a; }
.nav-links a:not(.nav-cta):hover { color: var(--blue); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(0,121,200,0.22);
}
.nav-cta:hover { background: var(--blue-dark); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 90px;
  background:
    radial-gradient(circle at 12% 20%, rgba(0,121,200,0.12), transparent 32%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #eef4fb 100%);
}
.hero:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: 45px;
  border-radius: 999px;
  background: rgba(237,31,43,0.07);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--blue); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(2.7rem, 6vw, 5.2rem); letter-spacing: -0.06em; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -0.045em; margin-bottom: 18px; }
h3 { font-size: 1.23rem; margin-bottom: 12px; }
p { color: var(--muted); margin-top: 0; }
.hero-lead { font-size: 1.22rem; max-width: 720px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 22px; border-radius: 12px; font-weight: 900; transition: 0.2s ease; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 14px 30px rgba(237,31,43,0.22); }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(0.94); }
.btn-secondary { color: var(--ink); border: 1px solid var(--line); background: #fff; }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.cred-row { display: flex; flex-wrap: wrap; gap: 10px; }
.cred-row span { padding: 9px 12px; border: 1px solid var(--line); background: rgba(255,255,255,0.75); border-radius: 999px; font-size: 0.86rem; font-weight: 800; color: #34405e; }

.hero-panel { background: var(--navy); color: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.panel-header { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.status-dot { width: 11px; height: 11px; border-radius: 999px; background: #2ee59d; box-shadow: 0 0 0 6px rgba(46,229,157,0.12); }
.hero-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.hero-panel li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 18px; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; background: rgba(255,255,255,0.045); }
.hero-panel li > span { color: #78cfff; font-weight: 900; }
.hero-panel strong { color: #fff; }
.hero-panel p { color: #c8d2e5; margin: 5px 0 0; }

.logo-strip { padding: 24px 0; background: var(--navy); color: #dce7f8; }
.strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; text-align: center; font-weight: 850; font-size: 0.9rem; }

.section-heading { max-width: 780px; margin-bottom: 38px; }
.section-heading p { font-size: 1.08rem; }
.cards { display: grid; gap: 22px; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 45px rgba(15,23,42,0.055); }
.card h3 { color: #18233f; }
.card p { margin-bottom: 0; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); transition: 0.2s ease; }

.dark-section { background: var(--navy); color: #fff; }
.dark-section h2 { color: #fff; }
.dark-section p { color: #c7d1e4; }
.trust-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 54px; align-items: start; }
.trust-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.trust-list > div { padding: 24px; border-radius: 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.trust-list strong { color: #fff; display: block; margin-bottom: 8px; }
.trust-list p { margin-bottom: 0; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 26px; border-radius: var(--radius); background: var(--bg-soft); border: 1px solid var(--line); }
.step span { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: var(--blue); color: #fff; font-weight: 900; margin-bottom: 20px; }
.step p { margin-bottom: 0; }

.muted { background: var(--bg-soft); }
.fit-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; }
.fit-card { border-radius: var(--radius); padding: 34px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 45px rgba(15,23,42,0.05); }
.primary-fit { background: linear-gradient(135deg, #fff, #edf6ff); }
.checklist ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.checklist li { position: relative; padding-left: 30px; color: #354158; font-weight: 700; }
.checklist li:before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 900; }

.cta-section { background: #fff; }
.cta-box { text-align: center; padding: 60px 42px; border-radius: 28px; background: linear-gradient(135deg, var(--navy), #1c2848); box-shadow: var(--shadow); }
.cta-box h2 { color: #fff; max-width: 820px; margin-left: auto; margin-right: auto; }
.cta-box p:not(.eyebrow) { color: #d7e1f2; max-width: 760px; margin: 0 auto 28px; }

.site-footer { padding: 56px 0 24px; background: #070b17; color: #dfe8f8; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 0.75fr 0.75fr; gap: 36px; padding-bottom: 38px; }
.footer-logo { width: 240px; margin-bottom: 18px; background: rgba(255,255,255,0.96); border-radius: 10px; padding: 10px; }
.site-footer p { color: #aebbd0; max-width: 460px; }
.site-footer strong { display: block; color: #fff; margin-bottom: 14px; }
.site-footer a { display: block; color: #aebbd0; margin: 8px 0; }
.site-footer a:hover { color: #fff; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; color: #8d9ab3; font-size: 0.9rem; }

@media (max-width: 980px) {
  .hero-grid, .trust-grid, .fit-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 68px 0; }
  .nav { min-height: 76px; }
  .brand img { width: 190px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .hero { padding: 74px 0; }
  h1 { font-size: 2.65rem; }
  .hero-panel { padding: 20px; }
  .three-col, .timeline, .trust-list, .footer-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; text-align: left; }
  .cta-box { padding: 42px 22px; }
}
