/* =========================================================================
   pricing.css — Redesigned 2026 Cyber Dark Glassmorphism
   Theme: Obsidian Aurora & High-Performance SaaS
   ========================================================================= */

:root {
  --pr-bg: #070913;
  --pr-bg-card: rgba(14, 18, 36, 0.72);
  --pr-bg-card-hover: rgba(19, 25, 48, 0.85);
  --pr-border: rgba(255, 255, 255, 0.08);
  --pr-border-hover: rgba(255, 255, 255, 0.18);

  --pr-font-heading: 'Prompt', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --pr-font-body: 'Prompt', -apple-system, BlinkMacSystemFont, sans-serif;
  --pr-font-mono: 'IBM Plex Mono', monospace;

  /* Accents */
  --pr-indigo: #6366f1;
  --pr-indigo-rgb: 99, 102, 241;
  --pr-rose: #f43f5e;
  --pr-rose-rgb: 244, 63, 94;
  --pr-purple: #a855f7;
  --pr-purple-rgb: 168, 85, 247;
  --pr-mint: #10b981;
  --pr-mint-rgb: 16, 185, 129;
  --pr-cyan: #06b6d4;
  --pr-cyan-rgb: 6, 182, 212;
  --pr-amber: #f59e0b;

  /* Plan Colors */
  --starter-color: #818cf8;
  --starter-rgb: 129, 140, 248;
  --pro-color: #f43f5e;
  --pro-rgb: 244, 63, 94;
  --unlimited-color: #10b981;
  --unlimited-rgb: 16, 185, 129;

  /* Text tokens */
  --pr-text-primary: #f8fafc;
  --pr-text-secondary: #94a3b8;
  --pr-text-muted: #64748b;
  --pr-text-dark: #334155;
}

/* =========================================================================
   BASE PAGE STYLES
   ========================================================================= */
.pricing-page-body {
  background-color: var(--pr-bg);
  color: var(--pr-text-primary);
  font-family: var(--pr-font-body);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Ambient Aurora Mesh Background */
.pricing-page-body::before {
  content: '';
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 680px;
  background: radial-gradient(ellipse at 50% 30%, rgba(99, 102, 241, 0.13) 0%, rgba(168, 85, 247, 0.08) 35%, rgba(244, 63, 94, 0.04) 60%, transparent 80%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.pricing-page-body::after {
  content: '';
  position: fixed;
  bottom: -200px;
  right: -100px;
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, rgba(6, 182, 212, 0.04) 40%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.pricing-section {
  position: relative;
  padding: 60px 24px 120px;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}

/* =========================================================================
   SYSTEM UPDATE ALERT BANNER (Cyber Notice Pill)
   ========================================================================= */
.pricing-alert-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.09) 0%, rgba(14, 18, 36, 0.85) 100%);
  border: 1px solid rgba(99, 102, 241, 0.28);
  border-radius: 18px;
  padding: 16px 24px;
  margin-bottom: 50px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.pricing-alert-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.8), rgba(244, 63, 94, 0.5), transparent);
}

.pricing-alert-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pricing-alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(129, 140, 248, 0.4);
  color: #c7d2fe;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--pr-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.2);
}

.pricing-alert-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #818cf8;
  box-shadow: 0 0 10px rgba(129, 140, 248, 1);
  animation: prAlertPulse 2s infinite ease-in-out;
}

@keyframes prAlertPulse {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; box-shadow: 0 0 16px rgba(129, 140, 248, 1); }
}

.pricing-alert-content {
  flex: 1;
  font-size: 13.5px;
  line-height: 1.6;
  color: #94a3b8;
}

.pricing-alert-title {
  font-family: var(--pr-font-heading);
  font-weight: 700;
  color: #f1f5f9;
  margin-right: 8px;
}

.pricing-alert-desc strong {
  color: #38bdf8;
  font-weight: 700;
}

/* =========================================================================
   SECTION HEADER & BILLING TOGGLE
   ========================================================================= */
.pricing-section-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(129, 140, 248, 0.3);
  padding: 6px 18px;
  border-radius: 999px;
  font-family: var(--pr-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #a5b4fc;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.pricing-tag svg {
  color: #818cf8;
}

.pricing-title {
  font-family: var(--pr-font-heading);
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 700;
  letter-spacing: normal;
  color: #ffffff;
  margin: 0 0 14px 0;
  line-height: 1.32;
}

.pricing-title-gradient {
  background: linear-gradient(135deg, #a855f7 0%, #f43f5e 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.pricing-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--pr-text-secondary);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cyber Pill Billing Toggle */
.pricing-billing-wrap {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(14, 18, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 999px;
  margin-top: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-billing-label {
  font-size: 14px;
  color: var(--pr-text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.pricing-billing-label:hover {
  color: #cbd5e1;
}

.pricing-billing-label.active {
  color: #ffffff;
  font-weight: 700;
}

.pricing-badge-monthly {
  display: inline-block;
  background: rgba(129, 140, 248, 0.15);
  border: 1px solid rgba(129, 140, 248, 0.35);
  color: #c7d2fe;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 6px;
}

.pricing-toggle-switch {
  width: 52px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  appearance: none;
}

.pricing-toggle-switch:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-toggle-switch.active {
  background: linear-gradient(135deg, #a855f7, #f43f5e);
  border-color: rgba(244, 63, 94, 0.5);
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.45);
}

.pricing-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-toggle-switch.active .pricing-toggle-knob {
  transform: translateX(24px);
}

.pricing-discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: var(--pr-mint);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
  margin-left: 8px;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.25);
  letter-spacing: 0.2px;
}

/* =========================================================================
   3 PRICING CARDS GRID (Cyber Obsidian Glassmorphism)
   ========================================================================= */
.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

/* Base Card Container */
.pricing-plan-card {
  position: relative;
  background: var(--pr-bg-card);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--pr-border);
  border-radius: 28px;
  padding: 34px 30px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  box-shadow: 0 20px 48px -15px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Ambient Card Edge Highlights */
.pricing-plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* Ambient Glow Blobs */
.pricing-card-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.5;
  transition: opacity 0.35s ease;
}

.pricing-plan-card:hover .pricing-card-glow {
  opacity: 0.9;
}

/* ─────────────────────────────────────────────────────────────────────────
   TIER 1: STARTER
   ───────────────────────────────────────────────────────────────────────── */
.card-starter {
  border-color: rgba(var(--starter-rgb), 0.22);
}

.card-starter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--starter-rgb), 0.8), transparent);
  pointer-events: none;
}

.card-starter:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--starter-rgb), 0.5);
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.8), 0 0 32px rgba(var(--starter-rgb), 0.2);
}

.card-starter .pricing-card-glow {
  background: radial-gradient(circle, rgba(var(--starter-rgb), 0.3) 0%, transparent 70%);
}

/* ─────────────────────────────────────────────────────────────────────────
   TIER 2: PRO (Featured Hero Tier)
   ───────────────────────────────────────────────────────────────────────── */
.card-pro {
  background: radial-gradient(140% 120% at 50% -10%, rgba(var(--pro-rgb), 0.16) 0%, rgba(168, 85, 247, 0.1) 35%, rgba(14, 18, 36, 0.92) 100%);
  border: 1.5px solid rgba(var(--pro-rgb), 0.48);
  box-shadow: 0 28px 64px -16px rgba(var(--pro-rgb), 0.35), 0 0 0 1px rgba(var(--pro-rgb), 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  z-index: 2;
}

.card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, transparent 5%, #f43f5e 25%, #ec4899 50%, #a855f7 75%, transparent 95%);
  pointer-events: none;
}

.card-pro:hover {
  transform: translateY(-16px);
  border-color: rgba(var(--pro-rgb), 0.75);
  box-shadow: 0 40px 80px -16px rgba(var(--pro-rgb), 0.5), 0 0 50px rgba(168, 85, 247, 0.35);
}

.card-pro .pricing-featured-halo {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--pro-rgb), 0.3) 0%, rgba(168, 85, 247, 0.18) 50%, transparent 75%);
  pointer-events: none;
  filter: blur(55px);
}

/* ─────────────────────────────────────────────────────────────────────────
   TIER 3: UNLIMITED (Enterprise VIP)
   ───────────────────────────────────────────────────────────────────────── */
.card-unlimited {
  background: radial-gradient(140% 120% at 50% -10%, rgba(var(--unlimited-rgb), 0.14) 0%, rgba(6, 182, 212, 0.08) 45%, rgba(14, 18, 36, 0.9) 100%);
  border: 1px solid rgba(var(--unlimited-rgb), 0.32);
  box-shadow: 0 20px 48px -18px rgba(var(--unlimited-rgb), 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-unlimited::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, #22d3ee, transparent);
  pointer-events: none;
}

.card-unlimited:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--unlimited-rgb), 0.6);
  box-shadow: 0 32px 64px -20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(var(--unlimited-rgb), 0.3);
}

.card-unlimited .pricing-card-glow.glow-emerald {
  background: radial-gradient(circle, rgba(var(--unlimited-rgb), 0.28) 0%, rgba(6, 182, 212, 0.15) 55%, transparent 75%);
}

/* ── CARD TOP BAR ── */
.pricing-card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.pricing-floating-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--pr-mint);
  font-family: var(--pr-font-heading);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.3px;
}

.tag-sparkle {
  font-size: 10px;
}

.plan-tier-label {
  font-family: var(--pr-font-heading);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--pr-text-muted);
  text-transform: uppercase;
}

.pricing-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f43f5e, #a855f7);
  color: #ffffff;
  font-family: var(--pr-font-heading);
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  padding: 5px 14px;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.5);
  letter-spacing: 0.2px;
}

.pulse-flame {
  display: inline-block;
  animation: pulseFlame 1.8s infinite ease-in-out;
}

@keyframes pulseFlame {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.pricing-featured-badge.badge-unlimited {
  background: linear-gradient(135deg, #10b981, #0891b2);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.45);
}

/* ── CARD HEADER ── */
.pricing-card-header {
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.plan-hero-pill {
  display: inline-block;
  font-family: var(--pr-font-heading);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #f43f5e;
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.32);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.plan-hero-pill.pill-vip {
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.32);
}

.pricing-plan-name {
  font-family: 'Manrope', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.plan-name-gradient {
  background: linear-gradient(130deg, #ffffff 40%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-name-unlimited {
  background: linear-gradient(130deg, #ffffff 40%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-plan-desc {
  font-size: 13.5px;
  color: var(--pr-text-secondary);
  line-height: 1.55;
  margin: 0;
  min-height: 42px;
}

/* ── PRICE CONTAINER ── */
.pricing-price-container {
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.pricing-orig-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  min-height: 22px;
}

.pricing-original-price {
  font-size: 14px;
  color: var(--pr-text-muted);
  text-decoration: line-through;
  font-family: var(--pr-font-mono);
  font-weight: 500;
}

.pricing-save-pill {
  font-family: 'Manrope', var(--pr-font-heading);
  font-size: 10.5px;
  font-weight: 700;
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.3);
  padding: 1px 8px;
  border-radius: 6px;
}

.pricing-save-pill.pill-pro {
  color: #fb7185;
  background: rgba(251, 113, 133, 0.14);
  border-color: rgba(251, 113, 133, 0.3);
}

.pricing-save-pill.pill-unlimited {
  color: #34d399;
  background: rgba(52, 211, 153, 0.14);
  border-color: rgba(52, 211, 153, 0.3);
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}

.pricing-currency {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #94a3b8;
  align-self: flex-start;
  padding-top: 8px;
}

.pricing-value {
  font-family: 'Manrope', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-period {
  font-size: 14px;
  color: var(--pr-text-secondary);
  font-weight: 500;
  margin-left: 6px;
  align-self: flex-end;
  padding-bottom: 8px;
}

.pricing-period-sub {
  display: block;
  font-size: 12.5px;
  color: var(--pr-mint);
  margin-top: 6px;
  font-weight: 600;
  font-family: var(--pr-font-mono);
}

/* ── SPECS STRIP ── */
.pricing-specs-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 8px;
  font-family: var(--pr-font-mono);
}

.specs-pro .spec-pill {
  background: rgba(var(--pro-rgb), 0.08);
  border-color: rgba(var(--pro-rgb), 0.25);
  color: #fda4af;
}

.specs-unlimited .spec-pill {
  background: rgba(var(--unlimited-rgb), 0.08);
  border-color: rgba(var(--unlimited-rgb), 0.25);
  color: #6ee7b7;
}

/* ── DIVIDER ── */
.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin-bottom: 24px;
}

/* ── FEATURES LIST ── */
.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.55;
}

.pricing-feature-item strong {
  color: #f1f5f9;
  font-weight: 600;
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.pricing-feature-item:hover .pricing-feature-icon {
  transform: scale(1.15);
}

.card-starter .pricing-feature-icon {
  background: rgba(var(--starter-rgb), 0.15);
  border: 1px solid rgba(var(--starter-rgb), 0.35);
  color: #a5b4fc;
}

.card-pro .pricing-feature-icon {
  background: rgba(var(--pro-rgb), 0.15);
  border: 1px solid rgba(var(--pro-rgb), 0.35);
  color: #fb7185;
}

.card-unlimited .pricing-feature-icon {
  background: rgba(var(--unlimited-rgb), 0.15);
  border: 1px solid rgba(var(--unlimited-rgb), 0.35);
  color: #34d399;
}

/* ── CTA BUTTONS ── */
.pricing-cta-button {
  width: 100%;
  padding: 15px 24px;
  border-radius: 14px;
  font-family: var(--pr-font-heading);
  font-size: 14.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
}

.cta-starter {
  background: rgba(var(--starter-rgb), 0.1);
  border: 1px solid rgba(var(--starter-rgb), 0.35);
  color: #c7d2fe;
}

.cta-starter:hover {
  background: rgba(var(--starter-rgb), 0.22);
  border-color: rgba(var(--starter-rgb), 0.7);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -5px rgba(var(--starter-rgb), 0.4);
}

.cta-pro {
  background: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #9333ea 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 12px 32px -8px rgba(244, 63, 94, 0.6), 0 0 24px rgba(147, 51, 234, 0.35);
}

.cta-pro:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 44px -8px rgba(244, 63, 94, 0.75), 0 0 36px rgba(147, 51, 234, 0.5);
}

.cta-unlimited {
  background: linear-gradient(135deg, #10b981 0%, #059669 50%, #0891b2 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 12px 32px -8px rgba(16, 185, 129, 0.5), 0 0 20px rgba(8, 145, 178, 0.3);
}

.cta-unlimited:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 44px -8px rgba(16, 185, 129, 0.7), 0 0 36px rgba(8, 145, 178, 0.45);
}

/* =========================================================================
   29 SUPPORTED PLATFORMS COMPATIBILITY STRIP
   ========================================================================= */
.pricing-platforms-strip {
  position: relative;
  background: rgba(14, 18, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 36px 32px;
  margin-top: 56px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 1;
  overflow: hidden;
}

.pricing-platforms-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.8), rgba(244, 63, 94, 0.6), rgba(16, 185, 129, 0.8), transparent);
}

.platforms-strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.strip-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--pr-mint);
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--pr-font-heading);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.strip-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--pr-mint);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.9);
  animation: prAlertPulse 2s infinite ease-in-out;
}

.platforms-strip-title {
  font-family: var(--pr-font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.platforms-strip-desc {
  font-size: 13.5px;
  color: var(--pr-text-secondary);
  margin: 0;
  max-width: 680px;
  line-height: 1.6;
}

.strip-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #c7d2fe;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--pr-font-heading);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.strip-view-all-btn:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.45);
  color: #ffffff;
  transform: translateX(3px);
}

.platforms-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.platform-pill-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 8px 12px;
  text-decoration: none;
  color: #cbd5e1;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.platform-pill-item:hover {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(129, 140, 248, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.5);
}

.platform-pill-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.4);
}

.platform-pill-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================================================================
   FEATURE COMPARISON TABLE
   ========================================================================= */
.pricing-comparison-wrap {
  position: relative;
  background: rgba(14, 18, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 44px 36px;
  margin-top: 56px;
  overflow-x: auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.pricing-comparison-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.pricing-table-title {
  font-family: var(--pr-font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 36px 0;
  letter-spacing: -0.02em;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 620px;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.pricing-table thead th {
  font-family: var(--pr-font-heading);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 20px;
  color: #e2e8f0;
}

.pricing-table thead th:nth-child(2) { color: #a5b4fc; }
.pricing-table thead th:nth-child(3) { color: #fb7185; }
.pricing-table thead th:nth-child(4) { color: #34d399; }

.pricing-table thead th:first-child {
  width: 38%;
  color: #94a3b8;
  font-weight: 600;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr {
  transition: background-color 0.2s ease;
}

.pricing-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.pricing-table td:first-child {
  color: #e2e8f0;
  font-weight: 500;
}

.pricing-table tbody td:not(:first-child) {
  color: #94a3b8;
}

.pricing-check {
  color: var(--pr-mint);
  font-weight: 800;
  font-size: 16px;
  display: inline-block;
  margin-right: 4px;
}

.pricing-cross {
  color: var(--pr-text-muted);
  font-size: 16px;
  display: inline-block;
  margin-right: 4px;
}

.pr-text-mint {
  color: var(--pr-mint);
  font-weight: 700;
}

.pr-text-purple {
  color: #c084fc;
  font-weight: 700;
}

/* =========================================================================
   TRUST & GUARANTEE GRID
   ========================================================================= */
.pricing-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.pricing-guarantee-card {
  background: rgba(14, 18, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.pricing-guarantee-card:hover {
  border-color: rgba(129, 140, 248, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(99, 102, 241, 0.15);
}

.pricing-guarantee-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-guarantee-title {
  font-family: var(--pr-font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.pricing-guarantee-desc {
  font-size: 12.5px;
  color: var(--pr-text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.pricing-faq-wrap {
  margin-top: 72px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.pricing-faq-item {
  background: rgba(14, 18, 36, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pricing-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.pricing-faq-item.active {
  border-color: rgba(129, 140, 248, 0.4);
  background: rgba(18, 23, 44, 0.85);
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.1);
}

.pricing-faq-question {
  width: 100%;
  padding: 19px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  border: none;
  color: #f1f5f9;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--pr-font-heading);
  text-align: left;
  cursor: pointer;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.pricing-faq-question:hover {
  color: #ffffff;
}

.pricing-faq-arrow {
  font-size: 11px;
  color: var(--pr-text-muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
  flex-shrink: 0;
}

.pricing-faq-item.active .pricing-faq-arrow {
  transform: rotate(180deg);
  color: var(--pr-indigo);
}

.pricing-faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--pr-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.pricing-faq-item.active .pricing-faq-answer {
  display: block;
  animation: prFaqFadeIn 0.3s ease-out;
}

@keyframes prFaqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   BOTTOM TELEGRAM CTA
   ========================================================================= */
.pricing-bottom-cta {
  position: relative;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(217, 70, 239, 0.08) 50%, rgba(244, 63, 94, 0.06) 100%);
  border: 1px solid rgba(129, 140, 248, 0.28);
  border-radius: 28px;
  padding: 52px 36px;
  text-align: center;
  margin-top: 68px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.pricing-bottom-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.8), rgba(217, 70, 239, 0.6), transparent);
}

.pricing-bottom-cta h3 {
  font-family: var(--pr-font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.pricing-bottom-cta p {
  font-size: 15px;
  color: var(--pr-text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.pricing-bottom-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #ffffff;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--pr-font-heading);
  font-size: 15.5px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45);
}

.pricing-bottom-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(2, 132, 199, 0.65);
}

/* =========================================================================
   RESPONSIVE LAYOUT
   ========================================================================= */
@media (max-width: 1100px) {
  .pricing-plans-grid {
    gap: 18px;
  }
  .pricing-guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .pricing-plans-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
  .card-pro {
    grid-column: span 2;
    transform: none;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .card-pro:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 48px 16px 80px;
  }
  .pricing-title {
    font-size: 28px;
  }
  .pricing-subtitle {
    font-size: 14px;
  }
  .pricing-plans-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .card-pro {
    grid-column: unset;
    transform: none;
    max-width: 100%;
  }
  .card-pro:hover {
    transform: translateY(-8px);
  }
  .pricing-plan-card {
    padding: 26px 20px 24px;
    border-radius: 22px;
  }
  .pricing-platforms-strip {
    padding: 26px 20px;
    border-radius: 20px;
  }
  .platforms-pill-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }
  .pricing-comparison-wrap {
    padding: 26px 18px;
    border-radius: 20px;
  }
  .pricing-guarantee-grid {
    grid-template-columns: 1fr;
  }
  .pricing-value {
    font-size: 48px;
  }
  .pricing-bottom-cta {
    padding: 38px 20px;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .pricing-billing-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .pricing-alert-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
