:root {
  --navy: #19386f;
  --blue: #1f76b9;
  --sky: #eaf4fb;
  --green: #148a74;
  --dark: #10233f;
  --text: #24324a;
  --muted: #68758a;
  --white: #ffffff;
  --border: #d9e3ef;
  --shadow: 0 24px 70px rgba(16, 35, 63, 0.16);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: #fff; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy); }
.brand-mark { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy), var(--blue)); color: white; font-weight: 800; }
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand small { text-transform: uppercase; letter-spacing: 2px; font-size: 11px; color: var(--muted); }
nav { display: flex; align-items: center; gap: 22px; font-weight: 700; font-size: 14px; }
.nav-cta { color: white; background: var(--navy); padding: 11px 16px; border-radius: 999px; }
.hero { padding: 78px 0 60px; background: linear-gradient(135deg, #f5fbff 0%, #fff 48%, #eef6ff 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 46px; align-items: center; }
.eyebrow { color: var(--blue); text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 800; margin: 0 0 12px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(40px, 6vw, 72px); line-height: .98; letter-spacing: -2.5px; color: var(--dark); margin-bottom: 22px; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -1.4px; color: var(--dark); margin-bottom: 16px; }
h3 { font-size: 21px; color: var(--dark); margin-bottom: 8px; }
.hero-text { font-size: 20px; color: var(--muted); max-width: 620px; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; }
.btn.primary { background: var(--blue); color: white; box-shadow: 0 16px 32px rgba(31, 118, 185, .26); }
.btn.secondary { background: white; color: var(--navy); border-color: var(--border); }
.hero-card { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); border: 8px solid white; transform: rotate(-1deg); }
.stats { background: var(--navy); color: white; padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats-grid div { padding: 18px; border-left: 1px solid rgba(255,255,255,.22); }
.stats-grid strong { display: block; font-size: 30px; line-height: 1; }
.stats-grid span { display: block; opacity: .82; font-size: 14px; margin-top: 8px; }
.section { padding: 82px 0; }
.two-col, .dark-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col p:last-child { font-size: 19px; color: var(--muted); }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-grid article { border: 1px solid var(--border); border-radius: 24px; padding: 28px; background: white; transition: transform .2s ease, box-shadow .2s ease; }
.service-grid article:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(16, 35, 63, .10); }
.service-grid span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 14px; background: var(--sky); color: var(--blue); font-weight: 900; margin-bottom: 18px; }
.service-grid p { color: var(--muted); margin-bottom: 0; }
.dark { background: linear-gradient(135deg, var(--dark), var(--navy)); color: white; }
.dark h2 { color: white; }
.dark p { color: rgba(255,255,255,.78); font-size: 18px; }
.eyebrow.light { color: #95d3ff; }
.feature-list { display: grid; gap: 14px; }
.feature-list div { padding: 22px; border-radius: 20px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); font-weight: 700; }
.partners { background: #f7fbff; }
.partner-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.partner-row div { display: grid; place-items: center; min-height: 110px; padding: 20px; border: 1px solid var(--border); border-radius: 22px; background: white; color: var(--navy); font-size: 22px; font-weight: 900; text-align: center; }
.cta { padding: 74px 0; background: white; }
.cta-box { text-align: center; padding: 58px 32px; border-radius: 32px; background: linear-gradient(135deg, #eef8ff, #fff); border: 1px solid var(--border); box-shadow: var(--shadow); }
.cta-box p { color: var(--muted); font-size: 18px; }
.cta-actions { justify-content: center; }
footer { background: #08172c; color: rgba(255,255,255,.78); padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 14px; }
@media (max-width: 900px) {
  nav { display: none; }
  .hero-grid, .two-col, .dark-grid { grid-template-columns: 1fr; }
  .stats-grid, .service-grid, .partner-row { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 52px; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .stats-grid, .service-grid, .partner-row { grid-template-columns: 1fr; }
  h1 { font-size: 42px; }
  .section { padding: 58px 0; }
  .hero-card { border-radius: 22px; border-width: 5px; transform: none; }
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}
