*{box-sizing:border-box}
body{
 margin:0;
 font-family:'Segoe UI',sans-serif;
 background:linear-gradient(135deg,#0b0f1a,#111827);
 color:#e5e7eb;
 padding-top:50px;
}




/* containers */
.container{max-width:1150px;margin:auto;padding:16px}

/* sticky bar */
.sticky{
 position:fixed;top:0;left:0;right:0;
 background:linear-gradient(90deg,#7d2ae8,#00c4cc);
 color:#fff;padding:10px;text-align:center;
 font-weight:600;z-index:1000;
}



/* hero */
.hero{text-align:center;padding:20px 10px}
.hero h1{font-size:36px}
.motive{color:#22c55e;font-weight:600}

/* timeline */
.timeline{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
 gap:15px;margin:30px 0;
}
.step{
 background:#111827;
 padding:14px;border-radius:16px;
 text-align:center;
}
body.light .step{background:#fff}

/* icons */
.icons{
 display:flex;flex-wrap:wrap;
 justify-content:center;gap:18px;
 margin:25px 0;font-size:16px;
}

/* PRICING PLANS */
.plans{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
  margin:60px 0;
}

.plan-card{
  position:relative;
  background:linear-gradient(180deg,#0f172a,#020617);
  border-radius:24px;
  padding:28px 24px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,.45);
  transition:transform .3s ease, box-shadow .3s ease;
}

.plan-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 60px rgba(0,0,0,.6);
}

.plan-card.best{
  outline:2px solid #22c55e;
  box-shadow:0 0 0 6px rgba(34,197,94,.15);
}

.popular-badge{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:linear-gradient(135deg,#22c55e,#4ade80);
  color:#022c22;
  font-size:12px;
  padding:6px 14px;
  border-radius:999px;
  font-weight:600;
}

/* header */
.plan-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.plan-header h3{
  margin:0;
  font-size:20px;
}

.plan-tag{
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  background:#111827;
  color:#9ca3af;
}

.plan-tag.highlight{
  background:#14532d;
  color:#22c55e;
}

/* price */
.price{
  font-size:44px;
  font-weight:700;
  color:#a78bfa;
  margin:18px 0 6px;
}

.currency{
  font-size:22px;
  vertical-align:top;
}

.duration{
  display:block;
  font-size:13px;
  color:#9ca3af;
  margin-top:4px;
}

/* features */
.plan-features{
  list-style:none;
  padding:0;
  margin:20px 0 26px;
  font-size:14px;
}

.plan-features li{
  margin:10px 0;
  color:#d1d5db;
}

/* buttons */
.plan-card button{
  width:100%;
  border:none;
  padding:14px;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  background:linear-gradient(135deg,#7d2ae8,#00c4cc);
  color:#fff;
}

.plan-card button.primary{
  background:linear-gradient(135deg,#22c55e,#4ade80);
  color:#022c22;
}

/* mobile */
@media(max-width:600px){
  .price{
    font-size:38px;
  }
}


/* reviews */
.reviews{
 margin:50px 0;
 opacity:0;
 transform:translateY(20px);
 animation:fadeIn .8s ease forwards;
}
@keyframes fadeIn{
 to{opacity:1;transform:none}
}
.review-grid{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
 gap:16px;
}
.review{
 background:#111827;padding:18px;border-radius:16px;
}
body.light .review{background:#fff}


body.light .q{background:#fff}
.a{display:none;margin-top:8px;color:#9ca3af}
body.light .a{color:#555}

/* popup */
.popup{
 position:fixed;inset:0;background:rgba(0,0,0,.7);
 display:none;justify-content:center;align-items:center;z-index:999;
}
.popup-box{
 background:#0f172a;padding:22px;border-radius:22px;
 width:92%;max-width:420px;position:relative;
}
body.light .popup-box{background:#fff}
.popup-box input{
 width:100%;padding:12px;margin:10px 0;border-radius:8px;
}
.popup-box button{
 width:100%;background:#25D366;color:#fff;
 padding:14px;border-radius:25px;border:none;
}
.close{position:absolute;right:14px;top:10px;cursor:pointer}

/* whatsapp */
.whatsapp{
 position:fixed;right:18px;bottom:18px;
 background:#25D366;color:#fff;font-size:24px;
 padding:14px;border-radius:50%;
}

/* mobile tweaks */
@media(max-width:600px){
 .hero h1{font-size:30px}
 .price{font-size:32px}
}
.stars{
  color:#facc15;
  margin-bottom:6px;
  font-size:15px;
}

/* REVIEWS */
.reviews{
 margin:50px 0;
 opacity:0;
 transform:translateY(20px);
 animation:fadeIn .8s ease forwards;
}

.review-grid{
 display:grid;
 grid-template-columns:repeat(4,1fr); /* desktop */
 gap:20px;
}

.review.slide{
 display:none;
 background:#111827;
 padding:18px;
 border-radius:16px;
}

.review.slide.active{
 display:block;
 animation:fade .4s ease;
}

@keyframes fade{
 from{opacity:0}
 to{opacity:1}
}

/* TABLET */
@media(max-width:1024px){
 .review-grid{
   grid-template-columns:repeat(2,1fr);
 }
}

/* MOBILE */
@media(max-width:768px){
 .review-grid{
   grid-template-columns:1fr;
 }
}

.meta{
  display:block;
  margin-top:6px;
  font-size:12px;
  color:#9ca3af;
}
.verified{
  display:inline-block;
  margin-top:4px;
  font-size:12px;
  color:#22c55e;
  opacity:0.85;
}

.count{
  font-size:14px;
  color:#9ca3af;
  font-weight:400;
}
.subtext{
  font-size:13px;
  color:#9ca3af;
  margin-top:-8px;
}
/* FAQ */
.faq{
  max-width:900px;
  margin:60px auto;
}

.faq-title{
  margin-bottom:20px;
  font-size:24px;
}

.faq-item{
  background:#111827;
  border-radius:14px;
  margin-bottom:12px;
  overflow:hidden;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  color:#e5e7eb;
  padding:16px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:16px;
  cursor:pointer;
}

.faq-question:hover{
  background:#0f172a;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 18px;
  color:#9ca3af;
  transition:max-height .3s ease, padding .3s ease;
  font-size:14px;
}

.faq-item.active .faq-answer{
  max-height:200px;
  padding:0 18px 16px;
}

.arrow{
  transition:transform .3s ease;
}

.faq-item.active .arrow{
  transform:rotate(180deg);
}

/* TOPBAR MODERN */
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 20px;
  border-radius:16px;
  background:rgba(17,24,39,0.85);
  backdrop-filter:blur(8px);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  margin-bottom:30px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  font-weight:600;
}

.logo{
  background:linear-gradient(135deg,#7d2ae8,#00c4cc);
  padding:6px 8px;
  border-radius:10px;
  font-size:16px;
}

.title{
  letter-spacing:.3px;
}

.top-cta{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#22c55e;
}

.status-dot{
  width:8px;
  height:8px;
  background:#22c55e;
  border-radius:50%;
  box-shadow:0 0 0 4px rgba(34,197,94,.15);
  animation:pulseDot 1.5s infinite;
}

@keyframes pulseDot{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.4)}
  100%{box-shadow:0 0 0 8px rgba(34,197,94,0)}
}

/* MOBILE */
@media(max-width:600px){
  .topbar{
    padding:12px 14px;
  }
  .title{
    font-size:16px;
  }
  .top-cta{
    font-size:12px;
  }
}
/* WhatsApp Floating Button */
.whatsapp-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  align-items:center;
  gap:10px;
  background:#25D366;
  color:#fff;
  padding:14px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(37,211,102,.35);
  z-index:999;
  transition:transform .25s ease, box-shadow .25s ease;
}

.whatsapp-fab:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 40px rgba(37,211,102,.5);
}

/* Icon */
.wa-icon{
  font-size:20px;
  line-height:1;
}

/* Pulse animation */
.whatsapp-fab::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:999px;
  animation:waPulse 2s infinite;
}

@keyframes waPulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)}
  100%{box-shadow:0 0 0 14px rgba(37,211,102,0)}
}

/* Mobile: icon only */
@media(max-width:600px){
  .wa-text{display:none}
  .whatsapp-fab{
    padding:14px;
    border-radius:50%;
  }
}
.plan-card.reseller{
  background:linear-gradient(180deg,#020617,#020617);
  outline:2px dashed #22c55e;
}

.plan-card.reseller .price{
  color:#22c55e;
}
.reseller-earnings{
  margin:14px 0 6px;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(34,197,94,.1);
  color:#22c55e;
  font-size:14px;
  font-weight:600;
}
.reseller-earnings .earn-note{
  display:block;
  color:#9ca3af;
  font-size:12px;
  font-weight:400;
  margin-top:4px;
}
.reseller-calculator{
  max-width:700px;
  margin:70px auto;
  background:#0f172a;
  padding:28px;
  border-radius:22px;
  box-shadow:0 20px 40px rgba(0,0,0,.45);
}

.reseller-calculator h2{
  margin:0 0 8px;
}

.calc-sub{
  font-size:14px;
  color:#9ca3af;
  margin-bottom:22px;
}

.calc-box label{
  display:block;
  font-size:14px;
  margin-top:14px;
}

.calc-box input[type="range"],
.calc-box input[type="number"]{
  width:100%;
  margin-top:6px;
}

.calc-value{
  font-size:13px;
  color:#9ca3af;
  margin-top:4px;
}

.calc-result{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:24px;
  background:#020617;
  padding:18px;
  border-radius:16px;
}

.calc-result span{
  font-size:13px;
  color:#9ca3af;
}

.calc-result strong{
  display:block;
  font-size:22px;
  margin-top:4px;
}

.calc-result .profit{
  color:#22c55e;
}

.calc-note{
  font-size:13px;
  color:#9ca3af;
  margin-top:18px;
  text-align:center;
}
.reseller-btn{
  position: relative;
  margin-top: 18px;
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  color: #022c22;

  background: linear-gradient(135deg,#22c55e,#4ade80);
  box-shadow:
    0 12px 30px rgba(34,197,94,.35),
    inset 0 -2px 0 rgba(0,0,0,.15);

  transition: all .25s ease;
}

.reseller-btn:hover{
  transform: translateY(-2px);
  box-shadow:
    0 18px 45px rgba(34,197,94,.45),
    inset 0 -2px 0 rgba(0,0,0,.2);
}

.reseller-btn:active{
  transform: translateY(0);
}

/* earnings hint */
.reseller-btn .earn-hint{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #064e3b;
  opacity: .9;
}

/* subtle pulse (attention grabber) */
.reseller-btn::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:14px;
  box-shadow:0 0 0 0 rgba(34,197,94,.6);
  animation:pulseGlow 1.8s infinite;
}

@keyframes pulseGlow{
  0%{box-shadow:0 0 0 0 rgba(34,197,94,.5)}
  100%{box-shadow:0 0 0 14px rgba(34,197,94,0)}
}