/* ===== NAV XP ===== */
.nav-xp {
  background: linear-gradient(135deg, #5b5ef4, #7209b7);
  color: white; font-weight: 800; font-size: 0.8rem;
  padding: 0.3rem 0.8rem; border-radius: 50px;
}

/* ===== HERO ===== */
.pr-hero {
  padding: 4rem 4rem 3rem; text-align: center;
  background: linear-gradient(145deg, #eef0ff 0%, #fce7ff 50%, #fff0e8 100%);
}
.pr-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: white; font-weight: 800; font-size: 0.8rem;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.pr-hero h1 { font-size: 2.8rem; font-weight: 900; margin-bottom: 0.75rem; }
.pr-hero p { color: var(--muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

/* ===== CURRENT PLAN BANNER ===== */
.pr-current {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: linear-gradient(90deg, #ede9fe, #fce7ff);
  padding: 0.75rem 2rem; font-weight: 800; font-size: 0.92rem;
  border-bottom: 2px solid rgba(91,94,244,0.12);
}

/* ===== CONTAINER ===== */
.pr-container { max-width: 960px; margin: 0 auto; padding: 3rem 1.5rem; }

/* ===== PRICING CARDS ===== */
.pr-cards-section { background: var(--bg); }
.pr-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: start;
}
.pr-card {
  background: white; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 2px solid rgba(91,94,244,0.08);
  transition: all 0.3s;
  position: relative;
}
.pr-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pr-card.featured {
  border-color: var(--primary);
  box-shadow: 0 12px 48px rgba(91,94,244,0.22);
  transform: scale(1.03);
}
.pr-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.pr-popular-tag {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white; text-align: center; font-weight: 900; font-size: 0.75rem;
  padding: 0.4rem; letter-spacing: 1px;
}

/* Card Header */
.pr-card-header {
  padding: 2rem 1.5rem 1.5rem; text-align: center;
}
.pr-card-header.explorer {
  background: linear-gradient(135deg, rgba(91,94,244,0.06), rgba(114,9,183,0.06));
}
.pr-card-header.topper {
  background: linear-gradient(135deg, rgba(247,37,133,0.06), rgba(249,115,22,0.06));
}
.pr-plan-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.pr-card-header h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 0.25rem; }
.pr-plan-desc { font-size: 0.85rem; color: var(--muted); }

/* Card Body */
.pr-card-body { padding: 1.5rem; }

/* Price */
.pr-price { text-align: center; margin-bottom: 0.75rem; }
.pr-currency { font-size: 1.4rem; font-weight: 900; vertical-align: top; color: var(--text); }
.pr-amount {
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.pr-period { font-size: 1rem; color: var(--muted); font-weight: 700; }

/* Trial Badge */
.pr-trial-badge {
  text-align: center; font-size: 0.82rem; font-weight: 800;
  color: #059669; background: rgba(6,214,160,0.1);
  padding: 0.4rem 0.8rem; border-radius: 50px;
  display: inline-block; margin: 0 auto 1.25rem;
  width: fit-content;
}
.pr-card-body { display: flex; flex-direction: column; align-items: center; }

/* Features */
.pr-features {
  list-style: none; padding: 0; width: 100%;
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pr-features li {
  font-size: 0.88rem; font-weight: 700; display: flex;
  align-items: center; gap: 0.5rem; padding: 0.3rem 0;
}
.pr-features li.included { color: var(--text); }
.pr-features li.excluded { color: var(--muted); opacity: 0.5; }
.feat-check {
  color: var(--green); font-weight: 900; font-size: 0.92rem;
  width: 20px; text-align: center; flex-shrink: 0;
}
.feat-x {
  color: #cbd5e1; font-weight: 900; font-size: 0.92rem;
  width: 20px; text-align: center; flex-shrink: 0;
}

/* Buy Button */
.pr-buy-btn { width: 100%; justify-content: center; font-size: 0.95rem; }

/* ===== COMPARISON TABLE ===== */
.pr-compare-section { background: white; }
.pr-compare-section h2 { font-size: 1.8rem; }
.pr-table-wrap { overflow-x: auto; margin-top: 0.5rem; }
.pr-table {
  width: 100%; border-collapse: collapse; font-size: 0.9rem;
  border-radius: 16px; overflow: hidden;
}
.pr-table th {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; font-weight: 800; padding: 0.85rem 1rem;
  text-align: left;
}
.pr-table th:first-child { border-radius: 16px 0 0 0; }
.pr-table th:last-child { border-radius: 0 16px 0 0; }
.th-price { display: block; font-size: 0.72rem; font-weight: 700; opacity: 0.8; }
.pr-table td {
  padding: 0.75rem 1rem; border-bottom: 1px solid #eeeeff;
  font-weight: 700;
}
.pr-table tr:nth-child(even) td { background: #f8f9ff; }
.pr-table td:first-child { font-weight: 800; color: var(--text); }
.highlight-cell { color: var(--primary); font-weight: 900; }

/* ===== FAQ ===== */
.pr-faq-section { background: var(--bg); }
.pr-faq-section h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 2px solid transparent;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(91,94,244,0.15); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; cursor: pointer;
  font-weight: 800; font-size: 0.95rem;
}
.faq-arrow { transition: transform 0.3s; color: var(--primary); font-size: 0.75rem; }
.faq-a {
  display: none; padding: 0 1.25rem 1rem;
  font-size: 0.88rem; color: var(--muted); line-height: 1.7;
}
.faq-a.open { display: block; animation: fadeSlideIn 0.25s ease; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pr-hero { padding: 2.5rem 1.5rem 2rem; }
  .pr-hero h1 { font-size: 2rem; }
  .pr-container { padding: 2rem 1rem; }
  .pr-cards { grid-template-columns: 1fr; }
  .pr-card.featured { transform: none; }
  .pr-card.featured:hover { transform: translateY(-6px); }
  .pr-table { font-size: 0.82rem; }
  .pr-table th, .pr-table td { padding: 0.6rem 0.75rem; }
}
