:root{
  --bg:#0b1220;
  --card:#0f1a2e;
  --card2:#0e1730;
  --text:#e7eefc;
  --muted:#a7b3cc;
  --line:rgba(255,255,255,.10);

  --blue:#18435a;
  --blue2:#142f3d;
  --gold:#ca8d3b;
  --gold2:#b17a2b;
  --green:#059669;
  --red:#dc2626;

  --r:18px;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --shadow2: 0 10px 30px rgba(0,0,0,.25);
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:var(--font);color:var(--text);background:radial-gradient(1200px 700px at 10% 0%, rgba(24,67,90,.35), transparent 60%), radial-gradient(900px 500px at 90% -10%, rgba(202,141,59,.22), transparent 60%), #070b14;}
a{color:inherit}
.container{max-width:1120px;margin:0 auto;padding:0 18px}
.maxw{max-width:760px}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(7,11,20,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand-mark{
  width:38px;height:38px;border-radius:12px;
  display:grid;place-items:center;
  font-weight:900;
  background:linear-gradient(135deg, var(--gold), var(--gold2));
  color:#0b1220;
}
.brand-name{font-weight:800; letter-spacing:.2px}
.brand.small .brand-mark{width:34px;height:34px;border-radius:12px}

.nav{display:flex; align-items:center; gap:18px}
.nav a{color:rgba(231,238,252,.86); text-decoration:none; font-weight:600; font-size:14px}
.nav a:hover{color:#fff}
.nav .btn{margin-left:6px}
.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:#fff;
  border-radius:12px;
  padding:10px 12px;
}

.hero{padding:58px 0 34px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:rgba(231,238,252,.86);
  background:rgba(255,255,255,.04);
  font-weight:700;
  font-size:13px;
}

h1{font-size:44px; line-height:1.06; margin:14px 0 10px; letter-spacing:-.6px}
.grad{
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.65));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.lead{color:rgba(231,238,252,.86); font-size:16px; line-height:1.65; margin:0 0 18px}

.cta-row{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 12px}

.disclaimer{
  margin-top:10px;
  color:rgba(231,238,252,.78);
  font-size:13px;
  line-height:1.5;
  border-left:3px solid rgba(202,141,59,.7);
  padding-left:10px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow2);
}

.checker{padding:18px}
.checker h2{margin:0 0 6px; font-size:18px}
.muted{color:var(--muted)}
.form{margin-top:10px}
.label{display:block; font-weight:700; font-size:13px; margin-bottom:8px; color:rgba(231,238,252,.9)}
.input-row{display:flex; gap:10px}
input[type="url"]{
  flex:1;
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(10,16,30,.55);
  color:#fff;
  padding:12px 12px;
  outline:none;
}
input[type="url"]::placeholder{color:rgba(231,238,252,.45)}
input[type="url"]:focus{border-color:rgba(202,141,59,.65); box-shadow:0 0 0 4px rgba(202,141,59,.12)}
.hint{margin:10px 0 0; font-size:12px; color:rgba(231,238,252,.62)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid transparent;
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#0b1220;
}
.btn-primary:hover{filter:brightness(1.05)}
.btn-secondary{
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color:#fff;
}
.btn-ghost{
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  color:#fff;
}
.btn-ghost:hover{background:rgba(255,255,255,.07)}
button.btn{appearance:none}

.result{margin-top:14px; padding:14px; border-radius:16px; border:1px solid rgba(255,255,255,.12); background:rgba(0,0,0,.20)}
.hidden{display:none}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  letter-spacing:.25px;
  font-size:12px;
}
.badge .dot{width:10px;height:10px;border-radius:50%}

.badge.green{background:rgba(5,150,105,.16); border:1px solid rgba(5,150,105,.38)}
.badge.green .dot{background:var(--green)}
.badge.amber{background:rgba(202,141,59,.16); border:1px solid rgba(202,141,59,.42)}
.badge.amber .dot{background:var(--gold)}
.badge.red{background:rgba(220,38,38,.14); border:1px solid rgba(220,38,38,.35)}
.badge.red .dot{background:var(--red)}
.badge.gray{background:rgba(167,179,204,.12); border:1px solid rgba(167,179,204,.28)}
.badge.gray .dot{background:var(--muted)}

.evidence{
  margin-top:10px;
  font-size:13px;
  color:rgba(231,238,252,.82);
  line-height:1.55;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}

.kv{
  margin-top:10px;
  display:grid;
  grid-template-columns: 1fr;
  gap:8px;
}
.kv-row{
  display:flex; justify-content:space-between; gap:12px;
  font-size:13px;
  color:rgba(231,238,252,.78);
  border-bottom:1px dashed rgba(255,255,255,.10);
  padding-bottom:8px;
}
.kv-row strong{color:#fff}

.mini-cta{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.mini-cta-text{color:rgba(231,238,252,.82); font-weight:700; font-size:13px}

.section{padding:44px 0}
.section.alt{background:rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section h2{margin:0 0 10px; font-size:26px}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:14px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:14px}
.feature{padding:16px}
.feature h3{margin:10px 0 6px}
.feature p{margin:0;color:rgba(231,238,252,.82);line-height:1.6}
.icon{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  font-weight:900;
  color:#0b1220;
}
.i-blue{background:linear-gradient(135deg,#5eead4,#60a5fa)}
.i-gold{background:linear-gradient(135deg,var(--gold),var(--gold2))}
.i-green{background:linear-gradient(135deg,#34d399,var(--green))}

.list{margin:0; padding-left:18px; color:rgba(231,238,252,.82); line-height:1.7}
.soft{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(202,141,59,.10);
  border:1px solid rgba(202,141,59,.22);
  color:rgba(231,238,252,.88);
}
.legend{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.legend-item{display:flex; gap:10px; align-items:flex-start; padding:12px; border-radius:16px; border:1px solid var(--line); background:rgba(255,255,255,.03)}
.dot{width:12px;height:12px;border-radius:50%; margin-top:4px}
.dot.green{background:var(--green)}
.dot.amber{background:var(--gold)}
.dot.red{background:var(--red)}
.dot.gray{background:var(--muted)}

.cta-band{
  padding:34px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:radial-gradient(1000px 400px at 20% -10%, rgba(202,141,59,.20), transparent 60%), rgba(255,255,255,.02);
}
.cta-band-inner{display:flex; justify-content:space-between; align-items:center; gap:14px}
.cta-band h2{margin:0 0 6px}

.faq details{
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:12px 14px;
  background:rgba(255,255,255,.03);
  margin-bottom:10px;
}
.faq summary{cursor:pointer; font-weight:800}
.faq p{margin:10px 0 0; color:rgba(231,238,252,.82); line-height:1.65}

.footer{
  padding:22px 0;
  color:rgba(231,238,252,.72);
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.18);
}
.footer-inner{display:flex; justify-content:space-between; gap:14px; align-items:center}
.footer-right a{color:rgba(231,238,252,.80); text-decoration:none; font-weight:700}
.footer-right a:hover{color:#fff}
.sep{opacity:.55; padding:0 6px}

/* Responsive */
@media (max-width: 980px){
  h1{font-size:36px}
  .hero-grid{grid-template-columns:1fr; }
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .legend{grid-template-columns:1fr}
  .cta-band-inner{flex-direction:column; align-items:flex-start}
  .mini-cta{flex-direction:column; align-items:flex-start}
  .input-row{flex-direction:column}
  .nav{display:none}
  .nav-toggle{display:inline-flex}
}
/* ===== Pricing (VerificaVV) ============================================ */
.center{text-align:center}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:18px;
}

.pricing-card{
  position:relative;
  padding:18px 18px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow2);
  overflow:hidden;
  min-height:520px;
  display:flex;
  flex-direction:column;
}

.pricing-title{
  margin:2px 0 10px;
  font-size:18px;
  font-weight:800;
  color:rgba(231,238,252,.95);
}

.pricing-price{
  display:flex;
  align-items:flex-end;
  gap:6px;
  margin:6px 0 10px;
}

.pricing-price .amount{
  font-size:42px;
  font-weight:900;
  letter-spacing:-.6px;
  color:#fff;
  line-height:1;
}

.pricing-price .per{
  color:rgba(231,238,252,.72);
  font-weight:800;
  margin-bottom:4px;
}

.pricing-sep{
  width:100%;
  border:none;
  border-top:1px solid rgba(255,255,255,.12);
  margin:12px 0 14px;
}

.pricing-list{
  margin:0;
  padding-left:0;
  list-style:none;
  color:rgba(231,238,252,.82);
  line-height:1.85;
  font-size:14px;
}

.pricing-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.pricing-btn{
  margin-top:auto;
  width:100%;
  justify-content:center;
  padding:12px 14px;
  border-radius:14px;
}

/* Popular card */
.pricing-card.popular{
  border:2px solid rgba(99,102,241,.70);
  box-shadow: 0 18px 60px rgba(99,102,241,.20);
  background:
    radial-gradient(800px 400px at 50% -10%, rgba(99,102,241,.20), transparent 60%),
    rgba(255,255,255,.06);
  transform:translateY(-6px);
}

.popular-badge{
  position:absolute;
  top:14px;
  left:50%;
  transform:translateX(-50%);
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.5px;
  color:#fff;
  background:rgba(99,102,241,.90);
  border:1px solid rgba(255,255,255,.16);
}

/* Responsive */
@media (max-width: 1100px){
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-card{min-height:520px}
  .pricing-card.popular{transform:none}
}
@media (max-width: 620px){
  .pricing-grid{grid-template-columns:1fr}
  .pricing-card{min-height:auto}
}
