.prem-hero {
  background: linear-gradient(160deg, #080808 0%, #1a1a1a 50%, #0d0d0d 100%);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.prem-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.prem-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #ffffff;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px; padding: 4px 14px; margin-bottom: 1.25rem;
}
.prem-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #fff 30%, #ffffff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prem-hero p {
  color: var(--text2); font-size: 1rem; max-width: 520px; margin: 0 auto 2rem;
  line-height: 1.7;
}
.prem-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff; color: #000; border: none;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  padding: 12px 28px; border-radius: 10px; cursor: pointer;
  text-decoration: none; transition: var(--transition);
}
.prem-cta:hover { opacity: 0.88; transform: translateY(-2px); }

.perks-section {
  max-width: 960px; margin: 0 auto; padding: 4rem 2rem 6rem;
}
.perks-section h2 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
  text-align: center; margin-bottom: 0.5rem;
}
.perks-sub {
  text-align: center; color: var(--text2); font-size: 0.9rem;
  margin-bottom: 3rem;
}
.perks-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.perk-card {
  background: var(--bg1); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: var(--transition);
}
.perk-card:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-3px); }
.perk-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.12); color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.perk-title { font-weight: 700; font-size: 0.95rem; }
.perk-desc  { font-size: 0.82rem; color: var(--text2); line-height: 1.55; }

.compare-section {
  max-width: 700px; margin: 0 auto; padding: 0 2rem 6rem;
}
.compare-section h2 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  text-align: center; margin-bottom: 2rem;
}
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 0.85rem;
}
.compare-table th {
  padding: 10px 14px; text-align: left; font-weight: 700;
  color: var(--text2); border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 10px 14px; border-bottom: 1px solid var(--border2);
}
.compare-table tr:last-child td { border-bottom: none; }
.check  { color: var(--mint); }
.cross  { color: var(--maroon-light); }
.col-booster { color: #ffffff; font-weight: 700; text-align: center; }
.col-user    { color: var(--text3); text-align: center; }

@media (max-width: 640px) {
  .prem-hero { padding: 3.5rem 1.25rem 3rem; }
  .perks-section { padding: 2.5rem 1.25rem 5rem; }
  .perks-grid { grid-template-columns: 1fr; }
}
