:root{
  --bg: #0b0b16;
  --text: #111827;
  --muted:#6b7280;
  --card:#ffffff;
  --soft:#f5f3ff;
  --border: rgba(17,24,39,.08);
  --shadow: 0 18px 45px rgba(2,6,23,.08);
  --r: 18px;
  --max: 1100px;
  --grad: linear-gradient(135deg, #7c3aed, #06b6d4);
}

*{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, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: #fbfbff;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:70px 0}
.section--soft{background: var(--soft)}
.section__head{margin-bottom:26px}
.section__head h2{margin:0 0 8px; font-size:clamp(24px, 3vw, 34px)}
.section__head p{margin:0; color:var(--muted)}

.topbar{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid var(--border);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  height:72px;padding: 0 0;
}
.brand{display:flex; align-items:center; gap:12px; flex-shrink: 0;}
.brand__logo{height:56px; width:auto; display: block;}
.brand__name{letter-spacing:.2px}

.nav{display:flex; gap:16px; align-items:center}
.nav a{color:#111827; opacity:.85}
.nav a:hover{opacity:1}

.burger{
  display:none;
  border:0; background:transparent; padding:10px; cursor:pointer;
}
.burger span{display:block; width:22px; height:2px; background:#111827; margin:4px 0; border-radius:99px}

.mobile-nav{
  display:none;
  padding:14px 20px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a{display:block; padding:10px 0; color:#111827}

.mobile-cta{
  display:block;
  width:100%;
  text-align:center;
  padding:12px 14px;
  margin:12px 0 6px;

  border-radius: 14px;
  font-weight:800;
  font-size:15px;

  background: rgba(124,58,237,.10);
  color:#4c1d95;
  border: 1px solid rgba(124,58,237,.22);

  box-shadow: none;
}



.hero{
  padding:64px 0 34px;
  background: radial-gradient(1200px 500px at 20% 0%, rgba(124,58,237,.18), transparent 60%),
              radial-gradient(900px 450px at 90% 10%, rgba(6,182,212,.20), transparent 55%),
              linear-gradient(#ffffff, #fbfbff);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:center;
}

.badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(124,58,237,.12);
  color:#4c1d95;
  font-weight:600;
  font-size:13px;
  margin:0 0 14px;
}

h1{margin:0 0 14px; font-size:clamp(34px, 4.3vw, 54px); line-height:1.05}
.gradient{background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent}
.lead{margin:0 0 18px; color:#374151; font-size:18px; line-height:1.5}

.hero__actions{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.microtrust{margin:14px 0 0; color:var(--muted); font-size:13px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--grad);
  color:white;
  font-weight:700;
  box-shadow: 0 12px 30px rgba(124,58,237,.18);
}
.btn:hover{transform: translateY(-1px)}
.btn--ghost{
  background:transparent;
  color:#111827;
  border-color: rgba(17,24,39,.12);
  box-shadow:none;
}
.btn--invert{
  background:#ffffff;
  color:#0b0b16;
  border-color: rgba(255,255,255,.2);
}
.btn--small{padding:9px 12px; font-size:14px}
.btn--full{width:100%}

.hero__visual{display:flex; justify-content:flex-end}
.mock{
  width: min(460px, 100%);
  border-radius: 22px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mock__top{
  display:flex; gap:7px;
  padding:12px 14px;
  border-bottom:1px solid rgba(17,24,39,.08);
  background: rgba(255,255,255,.7);
}
.mock__top span{width:10px; height:10px; border-radius:50%; background: rgba(17,24,39,.18)}
.mock__body{padding:16px}
.mock__card{
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(17,24,39,.08);
  padding:14px;
  margin-bottom:12px;
}
.mock__title{font-weight:800; margin-bottom:10px}
.mock__row{color:#374151; padding:6px 0; border-top:1px dashed rgba(17,24,39,.10)}
.mock__row:first-of-type{border-top:0}

.mock__kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-bottom:12px;
}
.kpi{
  background: rgba(124,58,237,.10);
  border:1px solid rgba(124,58,237,.18);
  border-radius: 14px;
  padding:12px;
}
.kpi__t{font-size:12px; color:#4c1d95; font-weight:700}
.kpi__v{font-size:18px; font-weight:900; margin-top:4px}

.mock__note{
  background: rgba(6,182,212,.10);
  border:1px solid rgba(6,182,212,.18);
  border-radius: 14px;
  padding:12px;
  color:#0f172a;
  font-weight:650;
}

.grid4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius: var(--r);
  padding:18px;
  box-shadow: 0 10px 30px rgba(2,6,23,.04);
}
.card__icon{font-size:22px}
.card h3{margin:10px 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.55}

.why{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.lead2{color:#374151; font-size:18px; line-height:1.55}
.list{margin:14px 0 18px; padding-left:18px; color:#374151}
.list li{margin:8px 0}
.inline-cta{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.hint{color:var(--muted); font-size:13px}

.quote{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--r);
  padding:18px;
  box-shadow: 0 10px 30px rgba(2,6,23,.04);
}
.quote__text{margin:0 0 10px; font-size:18px; line-height:1.5}
.quote__by{margin:0; color:var(--muted); font-size:13px}

.band{
  background: var(--bg);
  color:white;
  padding:40px 0;
}
.band__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}
.band h2{margin:0 0 6px; font-size:clamp(22px, 3vw, 34px)}
.band p{margin:0; color: rgba(255,255,255,.78)}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.pricecard{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--r);
  padding:20px;
  box-shadow: 0 10px 30px rgba(2,6,23,.04);
  position:relative;
}
.pricecard--featured{
  border-color: rgba(124,58,237,.35);
  box-shadow: 0 18px 45px rgba(124,58,237,.10);
}
.ribbon{
  position:absolute; top:14px; right:14px;
  background: rgba(124,58,237,.12);
  border:1px solid rgba(124,58,237,.22);
  color:#4c1d95;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
}
.pricecard h3{margin:0 0 8px}
.price{margin:0 0 12px; font-size:28px; font-weight:900}
.price span{font-weight:600; font-size:14px; color:var(--muted)}
.pricecard ul{margin:0 0 14px; padding-left:18px; color:#374151}
.pricecard li{margin:8px 0}
.fineprint{margin:10px 0 0; color:var(--muted); font-size:12px}

.faq{margin-top:24px}
.faq h3{margin:0 0 10px}
details{
  background:#fff;
  border:1px solid var(--border);
  border-radius: 14px;
  padding:12px 14px;
  margin:10px 0;
}
summary{cursor:pointer; font-weight:800}
details p{color:var(--muted); margin:10px 0 0; line-height:1.55}

.final{text-align:center}
.final p{color:var(--muted); margin:8px 0 16px}

.final .hero__actions{
  justify-content: center;
  gap: 16px;
}


.footer{
  padding:26px 0;
  border-top: 1px solid var(--border);
  background:#ffffff;
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:flex-start; gap:18px;
}
.footer__small{margin:8px 0 0; color:var(--muted); font-size:13px}
.footer__links{display:flex; gap:14px}
.footer__links a{color:var(--muted)}
.footer__links a:hover{color:#111827}

/* Responsive */
@media (max-width: 980px){
  .brand__logo{ height: 44px; }
  .hero__grid{grid-template-columns: 1fr; }
  .hero__visual{justify-content:flex-start}
  .grid4{grid-template-columns: repeat(2, 1fr)}
  .why{grid-template-columns: 1fr}
  .pricing{grid-template-columns: 1fr}
  .nav{display:none}
  .burger{display:block}
}
