:root {
  --navy: #071d38;
  --blue: #00a8e8;
  --blue-dark: #0873b9;
  --ink: #142033;
  --muted: #627083;
  --light: #f4f8fb;
  --white: #ffffff;
  --border: #dbe6ef;
  --shadow: 0 18px 45px rgba(7,29,56,0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; gap: 24px; }
.brand img { height: 58px; width: auto; display: block; }
nav { display: flex; gap: 22px; align-items: center; }
nav a { color: var(--navy); text-decoration: none; font-weight: 700; font-size: 0.95rem; }
.nav-cta { color: var(--blue-dark); }
.hero { background: radial-gradient(circle at 80% 10%, rgba(0,168,232,0.25), transparent 32%), linear-gradient(135deg, #061a31 0%, #0a2d52 62%, #07365f 100%); color: white; padding: 88px 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.eyebrow { text-transform: uppercase; color: var(--blue); letter-spacing: 0.12em; font-weight: 800; font-size: 0.82rem; margin: 0 0 12px; }
.hero .eyebrow { color: #77dfff; }
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1.02; margin: 0 0 22px; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1.12; margin: 0 0 18px; letter-spacing: -0.03em; color: var(--navy); }
.hero h2 { color: white; font-size: 1.7rem; }
h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.18rem; }
.hero-text { font-size: 1.18rem; max-width: 720px; color: #d9ecf8; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button { display: inline-block; padding: 13px 20px; border-radius: 999px; text-decoration: none; font-weight: 800; }
.primary { background: var(--blue); color: white; box-shadow: 0 12px 25px rgba(0,168,232,0.3); }
.secondary { border: 1px solid rgba(255,255,255,0.45); color: white; }
.hero-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); border-radius: 26px; padding: 30px; box-shadow: var(--shadow); }
.hero-card p, .hero-card li { color: #e8f5fb; }
.hero-card ul { padding-left: 20px; margin-bottom: 0; }
.trust-strip { background: white; border-bottom: 1px solid var(--border); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.strip-grid div { padding: 24px 18px; border-right: 1px solid var(--border); }
.strip-grid div:last-child { border-right: none; }
.strip-grid strong { display: block; color: var(--navy); }
.strip-grid span { color: var(--muted); font-size: 0.92rem; }
.section { padding: 82px 0; }
.alt { background: var(--light); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.card { background: white; border: 1px solid var(--border); border-radius: 22px; padding: 26px; box-shadow: 0 10px 28px rgba(7,29,56,0.06); }
.card p { color: var(--muted); margin-bottom: 0; }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 36px; }
.timeline div { background: white; border-radius: 20px; border: 1px solid var(--border); padding: 22px; }
.timeline span { display: inline-flex; width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; background: var(--navy); color: white; font-weight: 800; margin-bottom: 18px; }
.timeline p { color: var(--muted); font-size: 0.95rem; }
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.split p { color: var(--muted); font-size: 1.04rem; }
.metrics { display: grid; gap: 16px; }
.metrics div { padding: 24px; border-radius: 22px; background: linear-gradient(135deg, var(--navy), #0d3e6d); color: white; }
.metrics strong { display: block; font-size: 1.3rem; }
.metrics span { color: #cdeefe; }
.cta-section { background: var(--navy); color: white; }
.cta { text-align: center; max-width: 820px; }
.cta h2 { color: white; }
.cta p { color: #d4e8f5; font-size: 1.12rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 0.8fr; gap: 44px; }
.contact-card { background: var(--light); border: 1px solid var(--border); border-radius: 24px; padding: 30px; }
.contact-card a { color: var(--blue-dark); font-weight: 800; text-decoration: none; }
footer { background: #041326; color: #c8d8e5; padding: 26px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer a { color: #c8d8e5; }
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr 1fr; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  nav { display: none; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero { padding: 58px 0; }
  .cards, .timeline, .strip-grid { grid-template-columns: 1fr; }
  .brand img { height: 48px; }
}