/* ===== 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;
  box-shadow: 0 2px 8px rgba(91,94,244,0.25);
  letter-spacing: 0.3px;
}

/* ===== HERO ===== */
.pr-hero {
  padding: 4.5rem 4rem 3.5rem; text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(91,94,244,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(236,72,153,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(124,58,237,0.07) 0%, transparent 70%),
    linear-gradient(145deg, #eef0ff 0%, #f5e8ff 35%, #fce7ff 55%, #fff0e8 100%);
  position: relative;
  overflow: hidden;
}
.pr-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(91,94,244,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.pr-hero::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(236,72,153,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.pr-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: white; font-weight: 800; font-size: 0.8rem;
  padding: 0.45rem 1.1rem; border-radius: 50px; margin-bottom: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgba(124,58,237,0.25);
}
.pr-hero h1 {
  font-size: 2.8rem; font-weight: 900; margin-bottom: 0.75rem;
  position: relative; z-index: 1;
}
.pr-hero p {
  color: var(--muted); font-size: 1.1rem;
  max-width: 500px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* ===== 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:
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(91,94,244,0.03) 0%, transparent 70%),
    var(--bg);
}
.pr-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: start;
}
.pr-card {
  background: white; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(91,94,244,0.06);
  border: 1px solid rgba(91,94,244,0.08);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.pr-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5b5ef4, #7c3aed, #ec4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(91,94,244,0.12);
}
.pr-card:hover::after { transform: scaleX(1); }
.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::after { transform: scaleX(1); }
.pr-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 16px 56px rgba(91,94,244,0.28);
}
.pr-popular-tag {
  background: linear-gradient(90deg, var(--primary), #ec4899);
  color: white; text-align: center; font-weight: 900; font-size: 0.75rem;
  padding: 0.45rem; letter-spacing: 1px;
  text-transform: uppercase;
}

/* 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: #1a1035; }
.pr-amount {
  font-size: 3.5rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.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: linear-gradient(135deg, rgba(6,214,160,0.12), rgba(16,185,129,0.08));
  padding: 0.45rem 0.9rem; border-radius: 50px;
  display: inline-block; margin: 0 auto 1.25rem;
  width: fit-content;
  border: 1px solid rgba(6,214,160,0.15);
}
.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.35rem 0;
  transition: transform 0.2s ease;
}
.pr-features li:hover { transform: translateX(3px); }
.pr-features li.included { color: #1a1035; }
.pr-features li.excluded { color: var(--muted); opacity: 0.5; }
.feat-check {
  color: var(--green); font-weight: 900; font-size: 0.92rem;
  width: 22px; height: 22px; text-align: center; flex-shrink: 0;
  background: rgba(6,214,160,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feat-x {
  color: #cbd5e1; font-weight: 900; font-size: 0.92rem;
  width: 22px; height: 22px; text-align: center; flex-shrink: 0;
  background: rgba(203,213,225,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Buy Button */
.pr-buy-btn {
  width: 100%; justify-content: center; font-size: 0.95rem;
  background: linear-gradient(135deg, #5b5ef4, #7c3aed);
  box-shadow: 0 4px 16px rgba(91,94,244,0.3);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pr-buy-btn:hover {
  box-shadow: 0 8px 28px rgba(91,94,244,0.4);
  transform: translateY(-2px);
}

/* ===== COMPARISON TABLE ===== */
.pr-compare-section {
  background:
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(236,72,153,0.03) 0%, transparent 70%),
    white;
}
.pr-compare-section h2 { font-size: 1.8rem; }
.pr-table-wrap {
  overflow-x: auto; margin-top: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(91,94,244,0.2) transparent;
}
.pr-table-wrap::-webkit-scrollbar { height: 6px; }
.pr-table-wrap::-webkit-scrollbar-track { background: transparent; }
.pr-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(91,94,244,0.2); border-radius: 50px;
}
.pr-table-wrap::-webkit-scrollbar-thumb:hover { background: rgba(91,94,244,0.35); }
.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), #a855f7);
  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; transition: background 0.2s;
}
.pr-table tr:hover td { background: rgba(91,94,244,0.03); }
.pr-table tr:nth-child(even) td { background: #f8f9ff; }
.pr-table tr:nth-child(even):hover td { background: rgba(91,94,244,0.05); }
.pr-table td:first-child { font-weight: 800; color: #1a1035; }
.highlight-cell { color: var(--primary); font-weight: 900; }

/* ===== FAQ ===== */
.pr-faq-section {
  background:
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(91,94,244,0.03) 0%, transparent 70%),
    #fafafa;
}
.pr-faq-section h2 { font-size: 1.8rem; margin-bottom: 1.5rem; color: #1e293b; }
.faq-list {
  max-width: 680px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.faq-item {
  background: white; border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(91,94,244,0.06);
  border: 1px solid rgba(91,94,244,0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.faq-item::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #5b5ef4, #7c3aed, #ec4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item:hover {
  border-color: rgba(91,94,244,0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91,94,244,0.1);
}
.faq-item:hover::after { transform: scaleX(1); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; cursor: pointer;
  font-weight: 800; font-size: 0.95rem; color: #1e293b;
}
.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: #475569; 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(-4px); }
  .pr-table { font-size: 0.82rem; }
  .pr-table th, .pr-table td { padding: 0.6rem 0.75rem; }
}
