/* ════════════════════════════════════════════════════════════════
   STOCKBOY PREMIUM — ENTERPRISE PRICING PAGE
   Apple / Stripe / Linear inspired luxury fintech design
   ════════════════════════════════════════════════════════════════ */

/* ── GLOBALS & RESET ── */
:root {
  --nav-height: 70px;
  --bg-dark: #050608;
  --bg-card: rgba(13, 17, 23, 0.6);
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(255, 213, 74, 0.2);
  --gold-primary: #FFD54A;
  --gold-gradient: linear-gradient(135deg, #FFE270 0%, #FFB300 100%);
  --text-main: #FFFFFF;
  --text-muted: #8A9BB0;
  --glass-blur: blur(24px);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --emerald: #00C853;
  --sapphire: #0088CC;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ── UTILITIES ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-spring), transform 0.8s var(--ease-spring); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
}

/* ── 1. LUXURY HERO ── */
.pr-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
}

/* Aurora Mesh Background */
.pr-aurora {
  position: absolute;
  inset: -50%;
  z-index: 0;
  background: 
    radial-gradient(ellipse 50% 50% at 50% 20%, rgba(255,213,74,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(0,200,83,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(0,136,204,0.03) 0%, transparent 60%);
  animation: auroraFlow 20s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes auroraFlow {
  0% { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(5deg) scale(1.1) translate(-2%, 2%); }
}

.pr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.pr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,213,74,0.05);
  border: 1px solid rgba(255,213,74,0.2);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(255,213,74,0.1);
}

.pr-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.pr-title .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.pr-desc {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.pr-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 600px) {
  .pr-actions { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
}

.pr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 3rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.pr-btn-primary {
  background: var(--gold-gradient);
  color: #000;
  border: none;
  box-shadow: 0 10px 25px rgba(255,213,74,0.2);
}
.pr-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255,213,74,0.3);
}
.pr-btn-secondary {
  background: rgba(255,255,255,0.03);
  color: #fff;
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}
.pr-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

/* ── 2. LIVE TRUST NUMBERS ── */
.pr-stats {
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: -4rem auto 4rem;
  position: relative;
  z-index: 10;
}
.pr-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pr-stat-card {
  padding: 1.5rem;
  text-align: center;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s;
}
.pr-stat-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.1); }
.pr-stat-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pr-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
@media (max-width: 900px) { .pr-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pr-stats-grid { gap: 1rem; } .pr-stat-val { font-size: 2rem; } }

/* ── 3. PRICING CARDS ── */
.pr-pricing {
  padding: 4rem 1.5rem 6rem;
  max-width: 1300px;
  margin: 0 auto;
}
.pr-pricing-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 4rem;
}
.pr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}
.pr-card {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  background: rgba(13, 17, 23, 0.4);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s var(--ease-spring);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pr-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Lifetime Hero Card */
.pr-card.lifetime {
  transform: scale(1.08);
  background: rgba(20, 15, 5, 0.8);
  border-color: rgba(255, 213, 74, 0.3);
  box-shadow: 0 0 50px rgba(255, 213, 74, 0.1);
  z-index: 2;
}
.pr-card.lifetime:hover {
  transform: scale(1.1) translateY(-8px);
  border-color: rgba(255, 213, 74, 0.6);
  box-shadow: 0 20px 60px rgba(255, 213, 74, 0.2);
}
@media (max-width: 1024px) {
  .pr-card.lifetime { transform: none; z-index: 1; }
  .pr-card.lifetime:hover { transform: translateY(-8px); }
  .pr-grid { gap: 1.5rem; }
}

/* Card Internals */
.pr-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
}
.lifetime .pr-card-icon { background: rgba(255,213,74,0.15); box-shadow: 0 0 20px rgba(255,213,74,0.2); }

.pr-card-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.pr-card-price { font-size: 2.75rem; font-weight: 800; line-height: 1; margin-bottom: 0.25rem; }
.pr-card-price span { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.pr-card-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.5; }

.pr-card-features { list-style: none; padding: 0; margin: 0 0 2.5rem; flex-grow: 1; display: flex; flex-direction: column; gap: 0.8rem; }
.pr-card-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.85rem; color: #ddd; }
.pr-card-features li svg { flex-shrink: 0; color: var(--gold-primary); margin-top: 2px; }

.pr-card-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.pr-card-btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.pr-card-btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }
.pr-card-btn-gold { background: var(--gold-gradient); color: #000; box-shadow: 0 10px 20px rgba(255,213,74,0.15); }
.pr-card-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(255,213,74,0.3); }

/* ── 4. FEATURE COMPARISON TABLE ── */
.pr-compare { padding: 4rem 1.5rem; max-width: 1000px; margin: 0 auto; }
.pr-compare-wrap { overflow-x: auto; border: 1px solid var(--border-subtle); border-radius: 1rem; background: rgba(255,255,255,0.01); }
.pr-table { width: 100%; min-width: 600px; border-collapse: collapse; text-align: center; }
.pr-table th, .pr-table td { padding: 1.25rem 1rem; border-bottom: 1px solid var(--border-subtle); }
.pr-table th { font-weight: 700; font-size: 0.9rem; color: #fff; position: sticky; top: 0; background: rgba(8,9,13,0.9); backdrop-filter: blur(10px); }
.pr-table th:first-child, .pr-table td:first-child { text-align: left; position: sticky; left: 0; background: rgba(8,9,13,0.95); z-index: 2; font-weight: 600; color: #fff; font-size: 0.9rem; border-right: 1px solid var(--border-subtle); }
.pr-table tr:last-child td { border-bottom: none; }
.pr-table td { color: var(--text-muted); font-size: 0.85rem; }
.pr-table svg { width: 18px; height: 18px; }
.ck-yes { color: var(--gold-primary); }
.ck-no { color: rgba(255,255,255,0.1); }

/* ── 5. BENTO GRID (WHY UPGRADE) ── */
.pr-bento { padding: 4rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.pr-bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; grid-auto-rows: 250px; }
.pr-bento-card {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle);
  border-radius: 1.25rem; padding: 2rem; position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.pr-bento-card:hover { border-color: rgba(255,213,74,0.3); }
.pr-bento-card.large { grid-column: span 2; }
@media (max-width: 900px) {
  .pr-bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .pr-bento-card.large { grid-column: span 1; }
}
.pr-bento-icon { color: var(--gold-primary); margin-bottom: 1rem; }
.pr-bento-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.pr-bento-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ── 6. PROFIT CALCULATOR ── */
.pr-calc { padding: 4rem 1.5rem; max-width: 800px; margin: 0 auto; text-align: center; }
.pr-calc-box {
  background: linear-gradient(180deg, rgba(20,15,5,0.6) 0%, rgba(13,17,23,0.6) 100%);
  border: 1px solid rgba(255,213,74,0.2);
  border-radius: 1.5rem; padding: 3rem 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.pr-calc input[type=range] {
  width: 100%; margin: 2rem 0; appearance: none; height: 6px;
  background: rgba(255,255,255,0.1); border-radius: 3px; outline: none;
}
.pr-calc input[type=range]::-webkit-slider-thumb {
  appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-primary); cursor: pointer;
  box-shadow: 0 0 15px rgba(255,213,74,0.5);
}
.pr-calc-result { font-size: 3rem; font-weight: 800; color: var(--gold-primary); margin-bottom: 0.5rem; }

/* ── 7. SUCCESS CAROUSEL ── */
.pr-success { padding: 4rem 0; overflow: hidden; }
.pr-carousel {
  display: flex; gap: 1.5rem; padding: 1rem 1.5rem; overflow-x: auto;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.pr-carousel::-webkit-scrollbar { display: none; }
.pr-review {
  min-width: 300px; max-width: 350px; scroll-snap-align: center;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-subtle);
  border-radius: 1.25rem; padding: 1.5rem;
}
.pr-review-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.pr-review-head img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,213,74,0.4); }
.pr-review-pill { background: rgba(0,200,83,0.15); color: var(--emerald); padding: 0.2rem 0.6rem; border-radius: 1rem; font-size: 0.7rem; font-weight: 700; }

/* ── 8. FAQ ── */
.pr-faq { padding: 4rem 1.5rem; max-width: 800px; margin: 0 auto; }
.pr-faq details {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border-subtle);
  border-radius: 0.75rem; margin-bottom: 1rem; overflow: hidden;
}
.pr-faq summary {
  padding: 1.25rem; font-weight: 600; font-size: 1rem; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.pr-faq summary::-webkit-details-marker { display: none; }
.pr-faq summary::after { content: '+'; color: var(--gold-primary); font-size: 1.25rem; transition: transform 0.3s; }
.pr-faq details[open] summary::after { transform: rotate(45deg); }
.pr-faq .faq-content { padding: 0 1.25rem 1.25rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── 9. SECURITY ── */
.pr-security { padding: 4rem 1.5rem 6rem; text-align: center; }
.pr-sec-flex { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; }
.pr-sec-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.pr-sec-item svg { width: 32px; height: 32px; color: var(--text-muted); }
.pr-sec-item span { font-size: 0.8rem; font-weight: 600; color: #fff; }

/* ── 10. STICKY BOTTOM BAR ── */
.pr-sticky-bar {
  position: fixed; bottom: -100px; left: 0; right: 0; z-index: 100;
  background: rgba(8,12,18,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,213,74,0.2);
  padding: 1rem 1.5rem;
  display: flex; justify-content: center; align-items: center;
  transition: bottom 0.4s var(--ease-spring);
}
.pr-sticky-bar.active { bottom: 0; }
.pr-sticky-inner { max-width: 1200px; width: 100%; display: flex; justify-content: space-between; align-items: center; }
.pr-sticky-text { font-size: 0.9rem; font-weight: 600; }
.pr-sticky-text span { color: var(--gold-primary); font-size: 1.2rem; font-weight: 800; margin-left: 0.5rem; }
.pr-sticky-btn {
  background: var(--gold-gradient); color: #000; padding: 0.75rem 1.5rem;
  border-radius: 2rem; font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(255,213,74,0.3); animation: pulseBtn 2s infinite;
}
@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 0 rgba(255,213,74,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255,213,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,213,74,0); }
}
@media (max-width: 600px) {
  .pr-sticky-inner { flex-direction: column; gap: 0.5rem; }
  .pr-sticky-btn { width: 100%; }
}
