:root{
  --navy:#0b1f3a;
  --navy2:#102a4c;
  --off:#f7f6f1;
  --paper:#ffffff;
  --ink:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;
  --shadow: 0 14px 40px rgba(2,8,23,.10);
  --radius:16px;

  --blue:#2563eb;
  --green:#84cc16;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--ink);
  background: var(--off);
}
a{color:inherit}
.container{max-width:1120px; margin:0 auto; padding:0 20px}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(247,246,241,.85);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(229,231,235,.85);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.brand-mark{
  width:34px; height:34px; border-radius:12px;
  background: radial-gradient(circle at 30% 30%, #1d4ed8 0%, var(--navy) 70%, #061429 100%);
  box-shadow: var(--shadow);
}
.brand-text{display:flex; gap:6px; align-items:baseline}
.brand-title{font-weight:800; letter-spacing:.8px; font-size:12px; color:var(--navy)}
.brand-sub{font-weight:700; letter-spacing:.2px; font-size:12px; color:rgba(15,23,42,.65)}
.nav-links{
  display:flex; gap:18px; align-items:center;
}
.nav-links a{
  text-decoration:none;
  font-size:14px;
  color: rgba(15,23,42,.70);
  padding:8px 10px;
  border-radius:12px;
}
.nav-links a:hover{background:rgba(15,23,42,.06); color:var(--ink)}
.nav-cta{display:flex; align-items:center; gap:10px}

@media (max-width: 860px){
  .nav-links{display:none}
}

/* Typography */
.h1{
  font-size: clamp(34px, 3.6vw, 54px);
  line-height:1.05;
  letter-spacing:-.7px;
  margin: 10px 0 10px;
}
.h1-accent{color: var(--navy)}
.h2{
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing:-.4px;
  margin: 0 0 10px;
}
.h3{margin:10px 0 6px; font-size:16px}
.p{margin:0; line-height:1.6}
.lead{color:var(--muted); max-width:70ch; margin: 0 auto 18px}
.muted{color:var(--muted)}
.fine{font-size:12px; line-height:1.6; margin-top:14px}
.eyebrow{
  margin:0 auto 10px;
  display:inline-flex;
  font-size:12px;
  letter-spacing:1.2px;
  font-weight:800;
  color: rgba(15,23,42,.72);
}

/* Buttons (smaller, calmer) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:750;
  border:1px solid rgba(2,8,23,.12);
  box-shadow: 0 8px 18px rgba(2,8,23,.08);
  transition: transform .08s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px); box-shadow: 0 12px 26px rgba(2,8,23,.12)}
.btn-primary{
  background: linear-gradient(180deg, var(--navy2), var(--navy));
  color:#fff;
  border-color: rgba(255,255,255,.14);
}
.btn-ghost{
  background: rgba(255,255,255,.65);
}
.btn-small{
  padding:9px 12px;
  border-radius:12px;
  font-size:14px;
  box-shadow:none;
}
.btn-small:hover{transform:none; box-shadow: 0 10px 22px rgba(2,8,23,.10)}

/* Sections */
.section{padding: 44px 0}
.light-slab{background: #eef1f6}
.dark{
  background: linear-gradient(180deg, #061a33, #05152a);
  color:#fff;
}
.center-head{text-align:center; max-width: 820px; margin:0 auto 18px}
.light .p{color: rgba(255,255,255,.92)}
.light-muted{color: rgba(255,255,255,.78)}

/* Hero */
.hero{
  background: var(--paper);
  padding: 46px 0 40px;
  border-bottom:1px solid rgba(229,231,235,.9);
}
.hero-inner{text-align:center}
.hero-ctas{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 12px;
}
.hero-fine{
  margin-top:14px;
  font-size:12px;
  color: rgba(15,23,42,.55);
}

/* Layouts */
.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 920px){
  .two-col{grid-template-columns:1fr}
}

/* Cards */
.card{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(229,231,235,.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.dark .card{
  background: rgba(255,255,255,.96);
  color: var(--ink);
}
.card.soft{
  padding:16px;
}

/* Checklist */
.checklist{list-style:none; padding:0; margin: 14px 0 16px; display:grid; gap:10px}
.checklist li{display:flex; gap:10px; align-items:flex-start; color: rgba(255,255,255,.92)}
.check{width:22px; height:22px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.20); font-weight:900}

/* Stats */
.stats{display:flex; gap:12px; flex-wrap:wrap}
.stat{
  min-width: 190px;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}
.stat-label{font-size:12px; color: rgba(255,255,255,.72)}
.stat-value{font-size:18px; font-weight:850; margin-top:6px}
.good{color:#a7f3d0}

/* Chart */
.card-head{display:flex; align-items:flex-start; justify-content:space-between; gap:10px; margin-bottom:12px}
.card-title{font-weight:850}
.legend{display:flex; gap:10px; align-items:center; font-size:12px; color: rgba(15,23,42,.65); flex-wrap:wrap}
.dot{width:10px; height:10px; border-radius:50%}
.dot-blue{background: var(--blue)}
.dot-green{background: var(--green)}
.chart{display:grid; gap:10px; margin: 10px 0 6px}
.bar-row{display:grid; grid-template-columns: 70px 1fr; gap:12px; align-items:center}
.y{font-size:12px; color: rgba(15,23,42,.65)}
.bar{
  height:12px;
  border-radius:999px;
  overflow:hidden;
  background: rgba(15,23,42,.08);
  display:flex;
}
.seg{height:100%}
.seg.blue{background: var(--blue)}
.seg.green{background: var(--green)}
.card-foot{margin-top:10px}
.mini-note{font-size:12px; color: rgba(15,23,42,.55)}

/* Security grid */
.grid-4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top: 18px;
}
@media (max-width: 980px){
  .grid-4{grid-template-columns: 1fr 1fr}
}
@media (max-width: 560px){
  .grid-4{grid-template-columns: 1fr}
}
.iconbox{
  width:38px; height:38px; border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(15,23,42,.06);
  border:1px solid rgba(2,8,23,.08);
}

/* Process grid */
.grid-5{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:12px;
  margin-top: 16px;
}
@media (max-width: 980px){
  .grid-5{grid-template-columns: 1fr 1fr}
}
@media (max-width: 560px){
  .grid-5{grid-template-columns: 1fr}
}
.step-no{
  font-weight:900;
  color: rgba(15,23,42,.25);
  font-size: 20px;
}

/* About */
.about{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 920px){
  .about{grid-template-columns:1fr}
}
.img-placeholder{
  border-radius: var(--radius);
  height: 320px;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.15), transparent 50%),
    linear-gradient(135deg, rgba(15,23,42,.10), rgba(15,23,42,.04));
  border:1px solid rgba(229,231,235,.9);
  display:flex; align-items:center; justify-content:center;
  color: rgba(15,23,42,.55);
  font-weight:750;
}
.quote{
  margin-top: 12px;
  padding:12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  border:1px solid rgba(229,231,235,.9);
  color: rgba(15,23,42,.72);
  box-shadow: var(--shadow);
}
.about-points{display:grid; gap:10px; margin-top:14px}
.point{
  padding:12px 14px;
  border-radius: 14px;
  background: rgba(15,23,42,.04);
  border:1px solid rgba(2,8,23,.08);
  color: rgba(15,23,42,.80);
}
.about-cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

/* FAQ */
.faq{max-width: 980px}
.faq-list{margin-top:12px; border-top:1px solid rgba(255,255,255,.14)}
.faq-q{
  width:100%;
  text-align:left;
  border:none;
  background: transparent;
  color:#fff;
  padding:16px 4px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-weight:800;
  cursor:pointer;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.faq-a{
  padding: 0 4px 16px;
  color: rgba(255,255,255,.80);
  line-height:1.65;
}
.chev{opacity:.75}

/* Contact */
.contact{max-width: 980px}
.contact-card{max-width: 900px; margin:0 auto}
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px}
@media (max-width: 720px){ .contact-grid{grid-template-columns:1fr} }
.contact-item{
  display:flex; gap:12px; align-items:center;
  text-decoration:none;
  padding:14px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(229,231,235,.9);
  box-shadow: var(--shadow);
}
.contact-ic{
  width:36px; height:36px; border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(15,23,42,.06);
  border:1px solid rgba(2,8,23,.08);
  font-weight:900;
  color: var(--navy);
}
.contact-label{font-size:12px; color: rgba(15,23,42,.55)}
.contact-value{font-weight:850}
.contact-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

/* Footer */
.footer{
  padding: 26px 0;
  background: rgba(255,255,255,.6);
  border-top:1px solid rgba(229,231,235,.9);
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;
  color: rgba(15,23,42,.60);
  font-size:12px;
}
.footer-links{display:flex; gap:12px}
.footer-links a{text-decoration:none}
.footer-links a:hover{text-decoration:underline}