.hero{
  text-align:center;
  max-width:920px;
  margin:0 auto 70px;
}

.eyebrow{
  color:var(--accent2);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.78rem;
  font-weight:900;
  margin-bottom:20px;
}

.hero h1{
  font-family:var(--heading);
  font-size:clamp(3rem,7vw,6.6rem);
  line-height:.9;
  letter-spacing:-.06em;
  margin:0 0 24px;
}

.hero h1 span{
  color:var(--accent2);
}

.hero p{
  color:var(--muted);
  font-size:1.12rem;
  line-height:1.8;
  margin:auto;
  max-width:720px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:58px;
}

.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
}

.card.featured{
  background:linear-gradient(180deg,rgba(139,109,255,.22),rgba(255,255,255,.06));
  border-color:rgba(216,204,255,.45);
  box-shadow:0 30px 80px rgba(0,0,0,.28);
}

.badge{
  display:inline-flex;
  margin-bottom:18px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(139,109,255,.18);
  color:var(--accent2);
  font-size:.7rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.card h2{
  font-family:var(--heading);
  font-size:1.6rem;
  margin:0 0 8px;
}

.price{
  font-size:2.4rem;
  font-weight:900;
  margin:10px 0;
}

.price small{
  color:var(--muted);
  font-size:.9rem;
}

.card p{
  color:var(--muted);
  line-height:1.6;
}

details{
  margin-top:20px;
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:18px;
}

summary{
  cursor:pointer;
  font-weight:900;
  color:var(--accent2);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}

details ul{
  padding:0;
  margin:18px 0 0;
  list-style:none;
}

details li{
  padding:9px 0;
  color:var(--text);
  font-size:.92rem;
}

details li::before{
  content:"✓ ";
  color:var(--accent2);
  font-weight:900;
}

.best-for{
  margin-top:18px;
  padding:16px;
  border-radius:16px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.10);
}

.best-for strong{
  display:block;
  margin-bottom:8px;
  color:var(--accent2);
  text-transform:uppercase;
  font-size:.72rem;
  letter-spacing:.1em;
}

.best-for span{
  display:block;
  color:var(--muted);
  line-height:1.55;
  font-size:.9rem;
}

.button{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:100%;
  margin-top:24px;
  padding:15px 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}

.primary{
  background:var(--accent);
  color:white;
}

.secondary{
  border:1px solid var(--line);
  color:var(--text);
}

.section{
  margin-top:42px;
  padding:34px;
  border-radius:30px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
}

.section h2{
  font-family:var(--heading);
  font-size:clamp(2rem,4vw,3.5rem);
  margin:0 0 14px;
}

.section-intro{
  color:var(--muted);
  line-height:1.7;
  max-width:780px;
  margin-bottom:28px;
}

.calculator{
  display:grid;
  grid-template-columns:1fr .8fr;
  gap:28px;
}

.option{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:14px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  margin-bottom:12px;
  background:rgba(255,255,255,.04);
}

.option small{
  color:var(--muted);
}

.option input[type="radio"],
.addon input[type="checkbox"]{
  width:18px;
  height:18px;
  accent-color:var(--accent);
}

.addons{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:18px;
}

.addon{
  display:grid;
  grid-template-columns:auto 1fr 72px;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.04);
}

.addon small{
  display:block;
  color:var(--muted);
  margin-top:3px;
}

.addon input[type="number"]{
  width:64px;
  padding:8px;
  border-radius:10px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
  color:var(--text);
}

.total-box{
  background:linear-gradient(180deg,rgba(139,109,255,.22),rgba(255,255,255,.06));
  border:1px solid rgba(216,204,255,.4);
  border-radius:26px;
  padding:28px;
  height:max-content;
  position:sticky;
  top:24px;
}

.total-box span{
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.75rem;
  font-weight:900;
}

.total{
  font-size:3.7rem;
  font-weight:900;
  margin:8px 0 12px;
}

.total-note{
  color:var(--muted);
  line-height:1.6;
}

.cta-band{
  margin-top:46px;
  padding:42px;
  border-radius:32px;
  background:rgba(255,255,255,.07);
  border:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}

.cta-band h2{
  font-family:var(--heading);
  font-size:clamp(2rem,4vw,4rem);
  line-height:.95;
  margin:0;
}

.cta-band p{
  color:var(--muted);
  max-width:560px;
  line-height:1.7;
}

@media(max-width:1100px){
  .pricing-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .calculator{
    grid-template-columns:1fr;
  }

  .addons{
    grid-template-columns:1fr;
  }
}

@media(max-width:760px){
  .pricing-grid{
    grid-template-columns:1fr;
  }

  .cta-band{
    flex-direction:column;
    align-items:flex-start;
  }

  .section{
    padding:24px;
  }
}