:root{
  --bg:#ffffff;
  --alt:#f6f8fb;
  --ink:#0A2540;
  --muted:#5b6676;
  --accent:#ffb000;
  --accent2:#ff7a00;
  --danger:#b42318;
  --dangerSoft:#ffe6e6;
  --line:#e6ebf2;
  --shadow: 0 10px 30px rgba(10,37,64,.12);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
.container{width:min(1100px, 92vw); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:10;
  background:rgba(255,255,255,.88);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0}
.brand{font-weight:800; letter-spacing:-.02em}

.hero{padding:28px 0 18px}
.hero__grid{display:grid; gap:20px; grid-template-columns:1fr}
.hero__copy h1{
  margin:10px 0 10px;
  font-weight:800;
  letter-spacing:-.04em;
  font-size: clamp(32px, 7vw, 56px);
  line-height:1.02;
}
.underline{background:linear-gradient(120deg, rgba(255,176,0,.25), rgba(255,122,0,.25)); padding:0 .18em; border-radius:10px}
.subhead{color:var(--muted); font-size:16px; line-height:1.5; margin:0 0 14px}
.bullets{margin:0 0 18px; padding:0; list-style:none; display:grid; gap:10px}
.bullets li{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px 14px;
  background:#fff;
  box-shadow:0 1px 0 rgba(10,37,64,.04);
  font-weight:600;
}

.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px; font-weight:700;
  border:1px solid var(--line); background:#fff;
}
.chip--alert{border-color: rgba(180,35,24,.20); background:rgba(255,230,230,.55); color:var(--danger)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  letter-spacing:-.01em;
  transition:transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer;
}
.btn:active{transform:translateY(1px)}
.btn--lg{padding:14px 18px; font-size:16px}
.btn--xl{padding:16px 22px; font-size:18px}
.btn--block{width:100%}
.btn--primary{background:var(--accent2); color:#111; box-shadow:0 10px 20px rgba(255,122,0,.25)}
.btn--accent{background:var(--accent); color:#111; box-shadow:0 10px 20px rgba(255,176,0,.25)}
.btn--ghost{background:transparent; border-color:var(--line); color:var(--ink); font-weight:800}
.btn:hover{filter:brightness(.92)}

.ctaRow{display:grid; gap:12px}
.trust{display:flex; gap:10px; flex-wrap:wrap}
.trust__item{font-size:12px; color:var(--muted); border:1px solid var(--line); padding:8px 10px; border-radius:999px; background:#fff}

.hero__visual{display:flex; align-items:stretch}
.cardVisual{
  width:100%;
  background:linear-gradient(180deg, #ffffff, #f7f9fc);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.cardVisual__top{display:flex; gap:8px; padding:12px 14px; border-bottom:1px solid var(--line); background:#fff}
.dot{width:10px;height:10px;border-radius:50%}
.dot--red{background:#ff5f57}
.dot--yellow{background:#ffbd2e}
.dot--green{background:#28c840}
.cardVisual__body{padding:14px}
.metric{display:flex; align-items:baseline; justify-content:space-between; gap:10px}
.metric__label{color:var(--muted); font-size:13px}
.metric__value{font-weight:800}
.metric__value.danger{color:var(--danger)}
.metric__value.strong{color:var(--ink)}
.divider{height:1px; background:var(--line); margin:12px 0}
.fineprint{margin-top:10px; color:var(--muted); font-size:12px}

.section{padding:44px 0}
.section--alt{background:var(--alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
h2{margin:0 0 12px; font-size: clamp(24px, 5vw, 36px); letter-spacing:-.03em}
.lead{margin:0 0 18px; color:var(--muted); line-height:1.6}

.grid4{display:grid; grid-template-columns:1fr; gap:12px}
.grid3{display:grid; grid-template-columns:1fr; gap:12px}
.panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  box-shadow:0 2px 0 rgba(10,37,64,.04);
}
.panel--danger{border-color: rgba(180,35,24,.16); background:linear-gradient(180deg, #fff, rgba(255,230,230,.25))}
.panel__title{font-weight:800; margin-bottom:6px}
.panel__text{color:var(--muted); line-height:1.5}

.quote{
  margin:18px 0 0;
  padding:14px 16px;
  border-left:4px solid var(--accent2);
  background:#fff;
  border-radius:12px;
  border:1px solid var(--line);
  color:var(--ink);
  font-weight:700;
}
.center{display:flex; justify-content:center; margin-top:18px}

.steps{display:grid; gap:12px; margin-top:10px}
.step{
  display:flex; gap:12px; align-items:flex-start;
  background:#fff; border:1px solid var(--line);
  border-radius:16px; padding:14px;
}
.step__icon{
  flex:0 0 auto;
  width:34px; height:34px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  color:#111;
}
.step__title{font-weight:900; margin-bottom:4px}
.step__text{color:var(--muted); line-height:1.45}

.testimonials{display:grid; gap:12px; margin-top:12px}
.tcard{background:#fff; border:1px solid var(--line); border-radius:16px; padding:14px; box-shadow:0 2px 0 rgba(10,37,64,.04)}
.tcard__text{color:var(--ink); line-height:1.55; font-weight:600}
.tcard__who{margin-top:10px; color:var(--muted); font-size:13px}
.lockline{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.lockline__item{font-size:12px; color:var(--muted); border:1px solid var(--line); padding:8px 10px; border-radius:999px; background:#fff}

.finalCta{
  padding:54px 0;
  background: radial-gradient(900px 300px at 20% 10%, rgba(255,176,0,.25), transparent 60%),
              radial-gradient(900px 320px at 80% 10%, rgba(255,122,0,.22), transparent 60%),
              #0b2138;
  color:#fff;
}
.finalCta__inner{display:grid; gap:14px; text-align:left}
.finalCta h2{color:#fff; margin:0; font-weight:900}
.finalCta .fineprint{color:rgba(255,255,255,.74)}

.footer{border-top:1px solid var(--line); background:#fff; padding:16px 0}
.footer__inner{display:flex; justify-content:space-between; gap:10px; align-items:center; color:var(--muted); font-size:13px}
.footer__links{display:flex; gap:12px}
.footer__links a{color:var(--muted)}
.footer__links a:hover{color:var(--ink)}

.fade{opacity:0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease}
.fade.is-in{opacity:1; transform:none}

.waFloat{
  position:fixed;
  right:14px;
  bottom:14px;
  z-index:50;
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(10,37,64,.14);
  background:#ffffff;
  color:var(--ink);
  font-weight:900;
  box-shadow:0 14px 30px rgba(10,37,64,.16);
}
.waFloat:hover{filter:brightness(.96)}
.waFloat__dot{
  width:10px; height:10px; border-radius:50%;
  background: #25D366;
  box-shadow: 0 0 0 6px rgba(37,211,102,.16);
}

@media (min-width: 920px){
  .hero{padding:52px 0 26px}
  .hero__grid{grid-template-columns: 1.08fr .92fr; align-items:center; gap:28px}
  .ctaRow{grid-template-columns: auto 1fr; align-items:center}
  .grid4{grid-template-columns: repeat(4, 1fr)}
  .grid3{grid-template-columns: repeat(3, 1fr)}
  .testimonials{grid-template-columns: repeat(3, 1fr)}
  .finalCta__inner{grid-template-columns: 1.2fr .8fr; align-items:center}
  .finalCta__inner .btn{justify-self:start}
}

