/* =========================================================================
   pricing.css — Redesigned 2026 — Dark Obsidian Aurora Theme
   Clean, modern SaaS pricing with glassmorphism cards
   ========================================================================= */

:root {
  --pr-bg: #05070e;
  --pr-card-bg: #0c1020;
  --pr-border: rgba(255, 255, 255, 0.07);
  --pr-border-hover: rgba(255, 255, 255, 0.15);
  --pr-neon-purple: #a855f7;
  --pr-neon-pink: #ec4899;
  --pr-neon-rose: #f43f5e;
  --pr-neon-mint: #34d399;
  --pr-neon-cyan: #22d3ee;
  --pr-neon-indigo: #818cf8;
  --pr-text-primary: #f8fafc;
  --pr-text-secondary: #94a3b8;
  --pr-text-muted: #475569;
  --pr-font-main: 'Kanit', sans-serif;
  --pr-font-mono: 'IBM Plex Mono', monospace;

  /* Card accent 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;
}

/* =========================================================================
   BASE & BACKGROUND
   ========================================================================= */
.pricing-page-body {
  background-color: var(--pr-bg);
  color: var(--pr-text-primary);
  font-family: var(--pr-font-main);
  min-height: 100vh;
}

.pricing-section {
  position: relative;
  padding: 80px 24px 120px;
  max-width: 1260px;
  margin: 0 auto;
  overflow: hidden;
}

/* Radial ambient blobs */
.pricing-section::before {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.08) 0%, rgba(244, 63, 94, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* =========================================================================
   SYSTEM UPDATE ALERT BANNER
   ========================================================================= */
.pricing-alert-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.07) 0%, rgba(99, 102, 241, 0.04) 100%);
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 16px;
  padding: 16px 22px;
  margin-bottom: 56px;
  backdrop-filter: blur(12px);
  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.6), 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(129, 140, 248, 0.15);
  border: 1px solid rgba(129, 140, 248, 0.35);
  color: #c7d2fe;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

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

@keyframes pr-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 14px rgba(129, 140, 248, 1); }
}

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

.pricing-alert-title {
  font-weight: 700;
  color: #e2e8f0;
  margin-right: 6px;
}

.pricing-alert-desc strong {
  color: #7dd3fc;
  font-weight: 700;
}

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

.pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--pr-neon-mint);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0 0 14px 0;
  line-height: 1.2;
}

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

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

/* =========================================================================
   BILLING TOGGLE
   ========================================================================= */
.pricing-billing-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 8px 20px;
  border-radius: 999px;
  margin-top: 32px;
}

.pricing-billing-label {
  font-size: 13.5px;
  color: var(--pr-text-muted);
  cursor: pointer;
  transition: color 0.25s ease;
  user-select: none;
  font-weight: 500;
}

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

.pricing-toggle-switch {
  width: 48px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  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.active {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.4);
}

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

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

.pricing-discount-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--pr-neon-mint);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 6px;
  margin-left: 6px;
  vertical-align: middle;
}

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

/* BASE CARD */
.pricing-plan-card {
  position: relative;
  background: rgba(12, 16, 32, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.6);
}

/* Ambient top edge highlight */
.pricing-plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 30%);
  pointer-events: none;
}

/* Ambient glow blob */
.pricing-card-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

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

/* ── STARTER ── */
.card-starter {
  border-color: rgba(var(--starter-rgb), 0.18);
}
.card-starter::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(var(--starter-rgb), 0.7), transparent);
  pointer-events: none;
}
.card-starter:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--starter-rgb), 0.4);
  box-shadow: 0 32px 64px -20px rgba(0,0,0,0.75), 0 0 32px rgba(var(--starter-rgb), 0.18);
}
.card-starter .pricing-card-glow {
  background: radial-gradient(circle, rgba(var(--starter-rgb), 0.25) 0%, transparent 70%);
}

/* ── PRO (Featured) ── */
.card-pro {
  background: radial-gradient(140% 110% at 50% -10%, rgba(var(--pro-rgb), 0.16) 0%, rgba(168, 85, 247, 0.1) 35%, rgba(12, 16, 32, 0.9) 100%);
  border: 1.5px solid rgba(var(--pro-rgb), 0.45);
  box-shadow: 0 28px 64px -16px rgba(var(--pro-rgb), 0.3), 0 0 0 1px rgba(var(--pro-rgb), 0.15), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: scale(1.03) translateY(-6px);
  z-index: 2;
}
.card-pro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, #f43f5e 30%, #ec4899 50%, #a855f7 70%, transparent 95%);
  pointer-events: none;
}
.card-pro:hover {
  transform: scale(1.03) translateY(-14px);
  border-color: rgba(var(--pro-rgb), 0.7);
  box-shadow: 0 40px 72px -16px rgba(var(--pro-rgb), 0.45), 0 0 48px rgba(168, 85, 247, 0.3);
}
.card-pro .pricing-featured-halo {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--pro-rgb), 0.28) 0%, rgba(168,85,247,0.15) 50%, transparent 75%);
  pointer-events: none;
  filter: blur(48px);
}

/* ── UNLIMITED ── */
.card-unlimited {
  background: radial-gradient(140% 110% at 50% -10%, rgba(var(--unlimited-rgb), 0.14) 0%, rgba(6,182,212,0.07) 45%, rgba(12,16,32,0.88) 100%);
  border: 1px solid rgba(var(--unlimited-rgb), 0.3);
  box-shadow: 0 20px 48px -18px rgba(var(--unlimited-rgb), 0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
.card-unlimited::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #10b981, #22d3ee, transparent);
  pointer-events: none;
}
.card-unlimited:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--unlimited-rgb), 0.55);
  box-shadow: 0 32px 64px -20px rgba(0,0,0,0.7), 0 0 36px rgba(var(--unlimited-rgb), 0.28);
}
.card-unlimited .pricing-card-glow.glow-emerald {
  background: radial-gradient(circle, rgba(var(--unlimited-rgb), 0.25) 0%, rgba(6,182,212,0.12) 55%, transparent 75%);
}

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

.pricing-floating-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.3px;
}

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

.plan-tier-label {
  font-size: 10px;
  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: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  padding: 5px 14px;
  box-shadow: 0 0 24px 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 24px rgba(16, 185, 129, 0.4);
}

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

.plan-hero-pill {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #f43f5e;
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.28);
  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.1);
  border-color: rgba(16, 185, 129, 0.28);
}

.pricing-plan-name {
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

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

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

.pricing-plan-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  min-height: 40px;
}

/* ── PRICE BLOCK ── */
.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: 13.5px;
  color: var(--pr-text-muted);
  text-decoration: line-through;
  font-family: var(--pr-font-mono);
  font-weight: 500;
}

.pricing-save-pill {
  font-size: 10.5px;
  font-weight: 700;
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
  padding: 1px 8px;
  border-radius: 5px;
}

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

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

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

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

.pricing-value {
  font-size: 58px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -3px;
  line-height: 1;
}

.pricing-period {
  font-size: 13.5px;
  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: 12px;
  color: var(--pr-neon-mint);
  margin-top: 8px;
  font-weight: 600;
}

/* ── 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: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  font-family: var(--pr-font-mono);
}

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

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

/* ── DIVIDER ── */
.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), 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: 12px;
  flex: 1;
  position: relative;
  z-index: 1;
}

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

.pricing-feature-item strong {
  color: #e2e8f0;
  font-weight: 700;
}

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

.card-starter .pricing-feature-icon {
  background: rgba(var(--starter-rgb), 0.12);
  border: 1px solid rgba(var(--starter-rgb), 0.3);
  color: #a5b4fc;
}
.card-pro .pricing-feature-icon {
  background: rgba(var(--pro-rgb), 0.12);
  border: 1px solid rgba(var(--pro-rgb), 0.3);
  color: #fb7185;
}
.card-unlimited .pricing-feature-icon {
  background: rgba(var(--unlimited-rgb), 0.12);
  border: 1px solid rgba(var(--unlimited-rgb), 0.3);
  color: #34d399;
}

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

.cta-starter {
  background: rgba(var(--starter-rgb), 0.08);
  border: 1px solid rgba(var(--starter-rgb), 0.35);
  color: #c7d2fe;
}
.cta-starter:hover {
  background: rgba(var(--starter-rgb), 0.18);
  border-color: rgba(var(--starter-rgb), 0.65);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -5px rgba(var(--starter-rgb), 0.35);
}

.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.55), 0 0 24px rgba(147, 51, 234, 0.3);
}
.cta-pro:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 44px -8px rgba(244, 63, 94, 0.7), 0 0 36px rgba(147, 51, 234, 0.45);
}

.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.45), 0 0 20px rgba(8, 145, 178, 0.28);
}
.cta-unlimited:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 44px -8px rgba(16, 185, 129, 0.65), 0 0 36px rgba(8, 145, 178, 0.42);
}

/* =========================================================================
   FEATURE COMPARISON TABLE
   ========================================================================= */
.pricing-comparison-wrap {
  position: relative;
  background: rgba(12, 16, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 44px 40px;
  margin-top: 64px;
  overflow-x: auto;
  backdrop-filter: blur(16px);
  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.1), transparent);
}

.pricing-table-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin: 0 0 36px 0;
}

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

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

.pricing-table thead th {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  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:hover td {
  background: rgba(255, 255, 255, 0.025);
}

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

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

.pricing-check {
  color: var(--pr-neon-mint);
  font-weight: 800;
  font-size: 15px;
}

.pricing-cross {
  color: var(--pr-text-muted);
  font-size: 16px;
}

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

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

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

.pricing-guarantee-card {
  background: rgba(12, 16, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 22px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.pricing-guarantee-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

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

.pricing-guarantee-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px 0;
}

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

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

.pricing-faq-item {
  background: rgba(12, 16, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.pricing-faq-item.active {
  border-color: rgba(129, 140, 248, 0.3);
}

.pricing-faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  color: #e2e8f0;
  font-size: 14.5px;
  font-weight: 600;
  font-family: var(--pr-font-main);
  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.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

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

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

.pricing-faq-item.active .pricing-faq-answer { display: block; }

/* =========================================================================
   BOTTOM TELEGRAM CTA
   ========================================================================= */
.pricing-bottom-cta {
  position: relative;
  background: linear-gradient(135deg, rgba(129, 140, 248, 0.08) 0%, rgba(217, 70, 239, 0.06) 60%, rgba(244, 63, 94, 0.04) 100%);
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  margin-top: 64px;
  overflow: hidden;
  z-index: 1;
}

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

.pricing-bottom-cta h3 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.pricing-bottom-cta p {
  font-size: 14.5px;
  color: var(--pr-text-secondary);
  max-width: 560px;
  margin: 0 auto 28px;
  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.35);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.28s ease;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35);
  font-family: var(--pr-font-main);
}

.pricing-bottom-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.55);
}

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

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

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 16px 90px;
  }
  .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 22px 24px;
    border-radius: 22px;
  }
  .pricing-comparison-wrap {
    padding: 24px 16px;
    border-radius: 18px;
  }
  .pricing-guarantee-grid {
    grid-template-columns: 1fr;
  }
  .pricing-value {
    font-size: 48px;
  }
  .pricing-bottom-cta {
    padding: 36px 22px;
  }
}

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