/* pricing.css — Clear, Confident, No BS */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #ff2a2a;
  --dark: #0a0a0a;
  --darker: #000;
}

body {
  background-color: var(--darker);
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

::selection {
    background-color: rgba(255, 0, 0, 0.3);
    color: white;
    text-shadow: none;
  }
  
  ::-moz-selection {
    background-color: #e600004d;
    color: white;
    text-shadow: none;
  }

  /* Works on Chrome, Edge, and Safari */
  ::-webkit-scrollbar {
    width: 12px;
  }

  /* The track (the background of the scrollbar) */
  ::-webkit-scrollbar-track {
    background: #000000; /* A dark color that matches your page background */
  }

  /* The draggable scrolling handle */
  ::-webkit-scrollbar-thumb {
    background-color: #ff0000; /* The core red color */
    border-radius: 20px; /* Fully rounded edges */
    border: 3px solid #1A1A1A; /* Creates a nice padding effect */
    box-shadow: 0 0 10px #000000, 0 0 5px #FF0000; /* The red glow */
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #ff0000; /* A brighter red on hover */
    box-shadow: 0 0 15px #FF6B6B, 0 0 10px #FF4D4D; /* A more intense glow */
  }

  /* Handle on active state (when you're clicking and dragging) */
  ::-webkit-scrollbar-thumb:active {
    background-color: #f80000;
    box-shadow: 0 0 20px #000000, 0 0 15px #FF6B6B;
  }

/* Navbar */
.navbar {
  position: fixed;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-radius: 14px;
  background: rgba(12, 12, 12, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 30, 30, 0.25);
  z-index: 1000;
}

.nav-left { display: flex; align-items: center; gap: 16px; }
.logo img { height: 32px; filter: drop-shadow(0 0 6px rgba(255,0,0,0.5)); }
.site-name { font-size: 1.3rem; font-weight: 700; color: #fff; }

.nav-links { display: flex; gap: 28px; }
.nav-link { color: #e0e0e0; text-decoration: none; font-size: 15px; transition: color 0.2s; }
.nav-link:hover { color: var(--red); }

/* Hero */
.pricing-hero {
  padding: 180px 40px 80px;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--red);
}
.hero-subtitle { font-size: 1.25rem; color: #b0b0b0; max-width: 650px; margin: 0 auto 24px; }

.highlight-badge {
  background: rgba(255, 42, 42, 0.2);
  color: #ff9999;
  border: 1px solid rgba(255, 42, 42, 0.4);
  border-radius: 50px;
  display: inline-block;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 20px;
}

/* Plans */
.pricing-content {
  padding: 0 40px 100px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.plan-card {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.plan-card.featured {
  border: 2px solid var(--red);
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(255, 42, 42, 0.3);
  z-index: 10;
  background: rgba(30, 20, 20, 0.7);
}

.plan-card.featured .plan-glow {
  background: radial-gradient(circle, rgba(255,42,42,0.3), transparent 70%);
  filter: blur(50px);
}

.plan-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,40,40,0.15), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--red);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(45deg);
  z-index: 1;
  text-transform: uppercase;
}

.plan-header {
  padding: 32px 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.plan-price span {
  font-size: 1.2rem;
  color: #aaa;
  font-weight: 400;
}

.plan-desc {
  color: #aaa;
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  padding: 0 32px 24px;
  position: relative;
  z-index: 1;
}

.plan-features li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-features .fa-check {
  color: #00cc66;
  font-weight: bold;
  width: 20px;
  text-align: center;
}

.plan-features .fa-times {
  color: #ff4d4d;
  font-weight: bold;
  width: 20px;
  text-align: center;
}

.plan-cta {
  display: block;
  width: calc(100% - 64px);
  margin: 0 auto 32px;
  padding: 16px;
  text-align: center;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.plan-card.featured .plan-cta {
  background: linear-gradient(135deg, var(--red), #cc0000);
  color: white;
  box-shadow: 0 6px 25px rgba(255, 42, 42, 0.4);
}

.plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 42, 42, 0.5);
}

.plan-cta.disabled {
  background: rgba(255, 255, 255, 0.05);
  color: #777;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* FAQ */
.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(30, 30, 30, 0.4);
  border-radius: 16px;
  border-left: 3px solid var(--red);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(40, 40, 40, 0.5);
  transform: translateX(5px);
}

.faq-item h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #fff;
}

.faq-item p {
  color: #c0c0c0;
  font-size: 1.05rem;
}

/* Footer */
.pricing-footer {
  text-align: center;
  padding: 40px;
  color: #777;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.03);
}

/* Responsive */
@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.pro {
    transform: none;
  }
}