:root{
  --bg:#0B0B0B;
  --bg2:#000000;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.04);
  --line:rgba(255,255,255,.10);

  --text:#F7F7F7;
  --muted:rgba(247,247,247,.74);
  --muted2:rgba(247,247,247,.58);

  --yellow:#FFD400;
  --yellow2:#FFEA75;
  --wa:#25D366;
  --tg:#229ED9;

  --radius:18px;
  --shadow:0 16px 40px rgba(0,0,0,.55);
  --max:1120px;
  --font:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 12%, rgba(255,212,0,.16), transparent 60%),
    radial-gradient(900px 520px at 88% 15%, rgba(255,234,117,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit;text-decoration:none}
.container{width:min(var(--max), calc(100% - 32px)); margin:0 auto}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,.72);
  border-bottom:1px solid var(--line);
  padding:10px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.topbar__left{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.brand{font-weight:900; letter-spacing:.2px}
.pill{
  font-size:12px; font-weight:800;
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--muted);
}
.mark{
  width:12px;height:12px;border-radius:4px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow2));
  box-shadow: 0 0 0 4px rgba(255,212,0,.12);
}
.topbar__right{display:flex; gap:10px; flex-wrap:wrap}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:900;
  border:1px solid transparent;
  transition: transform .08s ease, filter .2s ease, background .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn:hover{filter:brightness(1.06)}
.btn--primary{
  color:#0B0B0B;
  background: linear-gradient(135deg, var(--yellow2), var(--yellow));
  box-shadow: 0 14px 26px rgba(255,212,0,.18);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.btn--wa{background: rgba(37,211,102,.16); border-color: rgba(37,211,102,.40)}
.btn--tg{background: rgba(34,158,217,.16); border-color: rgba(34,158,217,.40)}
.btn--test{
  background: rgba(255,212,0,.16);
  border-color: rgba(255,212,0,.44);
}

/* Floating CTAs */
.float{
  position:fixed; right:14px; bottom:14px;
  z-index:60;
  display:grid; gap:10px;
}
.fab{
  border-radius:999px;
  padding:12px 14px;
  font-size:13px;
  font-weight:950;
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.06);
}
.fab--test{border-color: rgba(255,212,0,.55); background: rgba(255,212,0,.18); color: var(--text)}
.fab--wa{border-color: rgba(37,211,102,.45); background: rgba(37,211,102,.18)}
.fab--tg{border-color: rgba(34,158,217,.45); background: rgba(34,158,217,.18)}

/* Hero */
.hero{padding: 26px 0 18px}
.hero__grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:start}
.kicker{font-size:13px; font-weight:900; color: var(--muted); letter-spacing:.2px}
h1{margin:12px 0 10px; font-size: clamp(28px, 5vw, 44px); line-height:1.08; letter-spacing:-0.6px}
.accent{color: var(--yellow)}
.lead{margin:0 0 14px; color: var(--muted); font-size:16px; line-height:1.55}
.hero__ctas{display:flex; flex-wrap:wrap; gap:10px; margin: 10px 0 12px}
.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top: 8px}
.chip{
  font-size:12px; font-weight:900;
  padding: 8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--muted);
}
.strip{
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(520px 220px at 15% 50%, rgba(255,212,0,.16), transparent 60%),
    rgba(255,255,255,.04);
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.strip__txt strong{display:block}
.strip__txt span{color: var(--muted); font-weight:800}
.strip__btns{display:flex; gap:10px; flex-wrap:wrap}

/* Panel */
.hero__panel{display:grid; gap:12px}
.panel{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.panel__head{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.panel__title{font-weight:950}
.panel__sub{color: var(--muted); font-weight:800; font-size:13px; margin-top:4px}
.badge{
  font-size:12px; font-weight:950;
  padding: 6px 10px;
  border-radius:999px;
  background: rgba(255,212,0,.16);
  border: 1px solid rgba(255,212,0,.40);
  color: var(--yellow);
}
.panel__actions{display:grid; gap:10px; margin-top: 12px}
.fine{margin-top: 10px; color: var(--muted2); font-size:12px; font-weight:800}
.panel--mini{padding: 12px}
.miniGrid{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.mini{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.mini__h{font-weight:950; margin-bottom: 4px}
.mini__p{color: var(--muted); font-weight:800; font-size:13px}
.mini__a{display:inline-block; margin-top: 8px; font-weight:950; color: var(--yellow)}

/* Sections */
.section{padding: 26px 0}
.section--alt{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 40%);
}
.sectionHead{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom: 14px; flex-wrap:wrap}
.sectionHead h2{margin:0; font-size:22px; letter-spacing:-0.2px}
.sectionHead p{margin:0; color: var(--muted); max-width: 620px; font-weight:800}

.cards{display:grid; grid-template-columns: repeat(4,1fr); gap:12px}
.card{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 14px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0 0 12px; color: var(--muted); font-weight:800; line-height:1.55}
.card__btns{display:flex; gap:10px; flex-wrap:wrap}

/* Bars */
.bar{
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.bar strong{display:block}
.bar span{color: var(--muted); font-weight:800}
.barBtns{display:flex; gap:10px; flex-wrap:wrap}
.bar--tight{margin-top: 10px}

/* Pricing cards */
.pricing{display:grid; grid-template-columns: repeat(3,1fr); gap:12px}
.priceCard{
  position:relative;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.priceCard--mid{
  border-color: rgba(255,212,0,.24);
  background: radial-gradient(540px 260px at 40% 0%, rgba(255,212,0,.14), rgba(255,255,255,.04));
}
.priceCard--best{
  border-color: rgba(255,212,0,.30);
  background: radial-gradient(540px 260px at 40% 0%, rgba(255,212,0,.18), rgba(255,255,255,.04));
}
.tag{
  position:absolute; top:12px; right:12px;
  font-size:12px; font-weight:950;
  padding:6px 10px; border-radius:999px;
  background: rgba(255,212,0,.14);
  border: 1px solid rgba(255,212,0,.34);
  color: var(--yellow);
}
.tag--best{background: rgba(255,212,0,.18); border-color: rgba(255,212,0,.46)}
.priceTop{display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom: 10px}
.priceTop h3{margin:0; font-size:16px}
.sub{color: var(--muted2); font-weight:900; font-size:12px; margin-top: 4px}
.price{font-weight:950; font-size:22px; letter-spacing:-0.2px; color: var(--yellow)}
.list{
  margin:0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  font-weight:800;
  line-height:1.7;
  font-size:13px;
}
.actions{display:grid; gap:10px}
.note{margin-top: 12px; color: var(--muted2); font-weight:800; font-size:12px}
.centerCta{margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap}

/* Slider */
.slider{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 12px;
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
}
.slider__track{
  display:flex;
  gap:12px;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.slider__track::-webkit-scrollbar{height:8px}
.slider__track::-webkit-scrollbar-thumb{background: rgba(255,255,255,.12); border-radius:999px}

.slide{
  min-width: 82%;
  scroll-snap-align: start;
}
@media (min-width: 980px){
  .slide{min-width: calc(33.333% - 8px)}
}

.slider__controls{
  margin-top: 10px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.iconBtn{
  width:44px; height:44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 22px;
  font-weight: 950;
}
.dots{display:flex; gap:8px; align-items:center; justify-content:center; flex:1}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(255,255,255,.20);
  border: 1px solid rgba(255,255,255,.18);
}
.dot.is-active{
  background: rgba(255,212,0,.75);
  border-color: rgba(255,212,0,.70);
}

/* FAQ */
.faq details{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq summary{cursor:pointer; font-weight:950}
.faq p{color: var(--muted); font-weight:800; line-height:1.6}
.faqBtns{display:flex; gap:10px; flex-wrap:wrap}

/* Final CTA + footer */
.finalCTA{
  margin-top: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.finalCTA h3{margin:0; font-size:16px}
.finalBtns{display:flex; gap:10px; flex-wrap:wrap}

.footer{border-top:1px solid var(--line); padding: 18px 0}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 12px;
  align-items:center;
}
.footBrand{font-weight:950}
.footMuted{color: var(--muted); font-weight:800; font-size:13px}
.footLinks{display:flex; gap:12px; flex-wrap:wrap; color: var(--muted); font-weight:900}
.footRight{display:flex; justify-content:flex-end}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .cards{grid-template-columns: repeat(2,1fr)}
  .pricing{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr}
  .footRight{justify-content:flex-start}
}
@media (max-width: 480px){
  .btn{padding: 10px 12px; font-size:13px}
  .fab{padding: 10px 12px; font-size:13px}
  .cards{grid-template-columns: 1fr}
  .miniGrid{grid-template-columns: 1fr}
  .topbar__right{gap:8px}
  .slide{min-width: 92%}
}