:root{
  --bg:#f7f8fc;
  --surface:#ffffff;
  --surface-2:#eef3ff;
  --text:#172033;
  --muted:#64708a;
  --line:#dbe3f3;
  --brand:#253b80;
  --brand-2:#3f6ee8;
  --accent:#f59e0b;
  --accent-2:#dc7d07;
  --success:#0f8f53;
  --shadow:0 18px 40px rgba(26,42,84,.10);
  --radius:20px;
  --max:1180px;
}

*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

img{max-width:100%;display:block}

a{
  color:inherit;
  text-decoration:none;
}

body,body *{
  -webkit-user-select:text;
  user-select:text;
}

.container{
  width:min(calc(100% - 32px),var(--max));
  margin:0 auto;
}

.topbar{
  background:#111b35;
  color:#dce4ff;
  font-size:13px;
  padding:10px 0;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.topbar strong{color:#fff}

.nav{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(14px);
  background:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(37,59,128,.08);
}

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

.logo{
  font-size:28px;
  font-weight:800;
  color:var(--brand);
  letter-spacing:-.04em;
}

.logo span{color:var(--accent)}

.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  color:var(--muted);
  font-size:15px;
  font-weight:700;
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:none;
  border-radius:999px;
  padding:14px 24px;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;
  box-shadow:0 12px 26px rgba(245,158,11,.30);
}

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

.hero{
  background:
    radial-gradient(circle at top left, rgba(72,114,255,.30), transparent 36%),
    radial-gradient(circle at bottom right, rgba(245,158,11,.18), transparent 28%),
    linear-gradient(160deg,#12204e 0%,#243b80 56%,#416ee8 100%);
  color:#fff;
  padding:88px 0 74px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  background:rgba(255,255,255,.14);
  color:#fff;
  border:1px solid rgba(255,255,255,.24);
  border-radius:999px;
  padding:8px 14px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.hero h1{
  margin:0 0 16px;
  font-size:clamp(34px,5vw,62px);
  line-height:1.02;
  letter-spacing:-.05em;
}

.hero p{
  margin:0 0 24px;
  font-size:18px;
  color:rgba(255,255,255,.84);
  max-width:650px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:20px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.hero-point{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.15);
  border-radius:18px;
  padding:16px;
}

.hero-point strong{
  display:block;
  font-size:18px;
  margin-bottom:4px;
}

.hero-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.hero-card h3{
  margin:0 0 14px;
  font-size:24px;
}

.hero-card ul{
  margin:0 0 20px;
  padding-left:18px;
  color:rgba(255,255,255,.85);
}

.hero-card li{margin-bottom:8px}

.hero-highlight{
  background:#fff;
  color:var(--text);
  border-radius:20px;
  padding:18px;
}

.hero-highlight small{
  display:block;
  color:var(--success);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:6px;
}

.hero-highlight h4{
  margin:0 0 8px;
  font-size:22px;
  color:var(--brand);
}

.section{
  padding:76px 0;
}

.section-heading{
  max-width:720px;
  margin:0 auto 32px;
  text-align:center;
}

.section-heading h2{
  margin:0 0 12px;
  font-size:clamp(28px,4vw,42px);
  line-height:1.05;
  letter-spacing:-.04em;
  color:var(--brand);
}

.section-heading p{
  margin:0;
  color:var(--muted);
  font-size:17px;
}

.pill-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:34px;
}

.pill{
  padding:10px 16px;
  border-radius:999px;
  background:var(--surface);
  border:1px solid var(--line);
  color:var(--brand);
  font-size:14px;
  font-weight:700;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.product-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
}

.product-card.featured{
  background:linear-gradient(180deg,#fff 0%,#f7f9ff 100%);
  border:2px solid rgba(245,158,11,.45);
  position:relative;
  overflow:hidden;
}

.badge{
  display:inline-block;
  background:#eaf0ff;
  color:var(--brand);
  border-radius:999px;
  padding:7px 12px;
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
}

.featured .badge{
  background:#fff4db;
  color:#a15d02;
}

.product-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:28px;
  background:linear-gradient(135deg,#e8efff,#f4f7ff);
  margin-bottom:16px;
}

.product-card h3{
  margin:0 0 10px;
  font-size:24px;
  color:var(--brand);
}

.product-card p{
  margin:0 0 18px;
  color:var(--muted);
  min-height:88px;
}

.product-card ul{
  margin:0 0 20px;
  padding-left:18px;
  color:var(--text);
}

.product-card li{margin-bottom:6px}

.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.info-box{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow);
}

.info-box h3{
  margin:0 0 12px;
  font-size:24px;
  color:var(--brand);
}

.info-box p,
.info-box li{
  color:var(--muted);
}

.info-box ul{
  margin:0;
  padding-left:18px;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.step{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.step-number{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  color:#fff;
  font-weight:800;
  margin-bottom:14px;
}

.step h3{
  margin:0 0 8px;
  color:var(--brand);
}

.cta{
  background:linear-gradient(140deg,#121f4d 0%,#253b80 55%,#355cdf 100%);
  color:#fff;
  border-radius:32px;
  padding:34px;
}

.cta p{
  color:rgba(255,255,255,.84);
}

.footer{
  background:#111b35;
  color:#dce4ff;
  padding:32px 0;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  font-size:14px;
}

.footer-links a{opacity:.9}

.footer-links a:hover{opacity:1}

.muted{color:var(--muted)}

.center{text-align:center}

@media (max-width: 1080px){
  .products-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width: 860px){
  .hero-grid,
  .split,
  .steps{grid-template-columns:1fr}
  .hero-points{grid-template-columns:1fr}
  .nav-links{display:none}
}

@media (max-width: 640px){
  .section{padding:58px 0}
  .products-grid{grid-template-columns:1fr}
  .nav-inner{min-height:66px}
  .logo{font-size:24px}
  .hero{padding:64px 0 56px}
  .hero h1{font-size:36px}
  .hero p{font-size:16px}
  .product-card p{min-height:auto}
}
