/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  padding: 140px 24px 72px;
  text-align: center;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(108,100,235,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-header h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 18px;
  position: relative;
}
.page-header p {
  color: var(--text-2);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ── Pricing Table ───────────────────────────────────────── */
.s-pricing { background: var(--bg); }

.ptable-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ptable {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}
.ptable th, .ptable td {
  padding: 13px 18px;
  font-size: 13.5px;
  text-align: center;
  border-bottom: 1px solid var(--border-mid);
  color: var(--text);
}
.ptable th:first-child, .ptable td:first-child {
  text-align: left;
  color: var(--text-2);
  font-weight: 400;
  min-width: 200px;
}
.ptable thead tr:first-child th {
  padding: 28px 18px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: bottom;
}
.ptable thead tr:first-child th:first-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  font-weight: 500;
  vertical-align: bottom;
}
.pname { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.pprice {
  font-size: 30px;
  font-weight: 700;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.pperiod { font-size: 11px; color: var(--text-3); margin-top: 4px; line-height: 1.4; }

.ptable thead tr:nth-child(2) th {
  padding: 16px 18px;
  border-bottom: 2px solid var(--border);
}
.ptable tbody tr:nth-child(even) td,
.ptable tbody tr:nth-child(even) th { background: rgba(255,255,255,0.012); }

.pop-col { background: rgba(217,76,165,0.055) !important; }
.pop-head {
  border-left: 1px solid rgba(217,76,165,0.2) !important;
  border-right: 1px solid rgba(217,76,165,0.2) !important;
}
.pop-body {
  border-left: 1px solid rgba(217,76,165,0.12) !important;
  border-right: 1px solid rgba(217,76,165,0.12) !important;
}
.pbadge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 6px;
}
.ck  { color: #22C55E; font-weight: 600; }
.no  { color: var(--text-3); }

/* ── Mobile Pricing Cards ────────────────────────────────── */
.pcards { display: none; gap: 14px; flex-direction: column; }
.pcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px 22px;
}
.pcard.pop { border-color: rgba(217,76,165,0.35); background: rgba(217,76,165,0.04); }
.pcard-name { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.pcard-price {
  font-size: 36px;
  font-weight: 700;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 2px;
}
.pcard-period { font-size: 12px; color: var(--text-3); margin-bottom: 20px; }
.pcard-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.pcard-feats li { font-size: 13.5px; display: flex; gap: 9px; align-items: flex-start; color: var(--text-2); }
.pcard-feats .ck { flex-shrink: 0; margin-top: 1px; }

/* ── Enterprise ──────────────────────────────────────────── */
.enterprise {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 52px 48px;
  text-align: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.enterprise::before {
  content: '';
  position: absolute;
  top: -60%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(108,100,235,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.enterprise h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; position: relative; }
.enterprise p {
  color: var(--text-2);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 28px;
  position: relative;
}
.pricing-note { font-size: 12px; color: var(--text-3); text-align: center; margin-top: 28px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .ptable-wrap { display: none; }
  .pcards { display: flex; }
  .enterprise { padding: 32px 24px; }
}
