

/* PLANES */
.plans{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.plan{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md);
  padding:18px;
  box-shadow: var(--shadow);
  position:relative;
}
.plan--featured{
  border-color: rgba(255,60,172,.35);
  box-shadow: 0 20px 70px rgba(0,0,0,.55);
  transform: translateY(-6px);
}
.plan__head{display:flex; align-items:flex-start; justify-content:space-between; gap:10px}
.plan__head h3{margin:0}
.plan__head span{display:block; margin-top:6px; color:var(--muted); font-weight:700}
.plan__price{font-size:1.55rem; font-weight:900; margin:14px 0 10px}
.plan__price small{font-size:.9rem; color:var(--muted); font-weight:800}
.plan__list{margin:0; padding-left:18px; color: rgba(243,245,255,.86); line-height:1.7}
.plan__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

/* FAQ */
.faq{max-width:880px; margin:0 auto}
details{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 12px 0;
}
summary{cursor:pointer; font-weight:900; list-style:none}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); line-height:1.6}

/* Steps */
.steps{margin:10px 0 0; padding-left:18px; color:rgba(243,245,255,.86); line-height:1.75}
.steps b{color:#fff}

/* Footer */
.footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:26px 0;
  background: rgba(0,0,0,.18);
  color: rgba(243,245,255,.72);
  text-align:center;
  font-size:.92rem;
}


/* ===========================
   HERO (CENTER PREMIUM)
   =========================== */
.hero--center{
  padding: 92px 0 88px;
  text-align: center;
}

.hero__center{
  max-width: 980px;
}

.hero__badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(244,246,255,.88);
  margin: 0 auto 16px;
}

.kdot{
  width:10px;
  height:10px;
  border-radius:99px;
  background: var(--good);
  box-shadow: 0 0 18px rgba(68,255,184,.50);
}

.hero__headline{
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  letter-spacing: .8px;
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 14px;
}

.hero__headline span{
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub{
  margin: 0 auto 22px;
  max-width: 780px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero__cta{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto 14px;
}

.statCard{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 14px 12px;
  box-shadow: var(--shadow);
}

.statCard__top{
  font-family: Orbitron, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
}

.statCard__bottom{
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
}

.statCard--highlight{
  border-color: rgba(255,60,172,.28);
  background: linear-gradient(180deg, rgba(255,60,172,.14), rgba(255,255,255,.05));
}

.hero__note{
  margin: 8px 0 0;
  color: rgba(244,246,255,.65);
  font-size: .92rem;
}

















/* Responsive solo de este hero */
@media (max-width: 980px){
  .hero__stats{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .hero__stats{ grid-template-columns: 1fr; }
}
