/* ================================
   RetroSuit — Pricing Page CSS
   ================================ */

/* --------- Root Variables --------- */
:root {
    --bg-dark: #0e0e12;
    --bg-card: #121212;
    --bg-accent: #1f1f27;
    --primary: #4f8cff;
    --text-main: #ffffff;
    --muted: #b0b0b0;
    --radius: 14px;
    --shadow: 0 8px 24px rgba(0,0,0,0.4);
    --shadow-light: 0 4px 14px rgba(0,0,0,0.3);
    --max-width: 1200px;
    --transition: 0.25s ease;
    --font-base: "Poppins", sans-serif;
  }
  
  /* --------- Base Styles --------- */
  body {
    font-family: var(--font-base);
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: var(--text-main);
  }
  
  /* Shared section layout */
  section {
    padding: 3rem 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  
  /* ================================
     Hero Section
     ================================ */
  .features-hero {
    text-align: center;
    padding: 5rem 1.5rem 3rem;
    background: linear-gradient(180deg, #4f8cff14, transparent 80%);
    border-radius: 40px;
  }
  
  .features-hero h1 {
    font-size: 2.75rem;
  }
  
  .features-hero p {
    max-width: 680px;
    margin: 1.5rem auto 2rem;
    font-size: 1.125rem;
    color: var(--text-main);
  }
  
  /* Hero buttons */
  .features-hero .btn,
  .features-hero .btn-ghost {
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
    margin: 0.5rem;
    border-radius: 10px;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    display: inline-block;
  }
  
  /* Solid button */
  .features-hero .btn {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 12px rgba(79,140,255,0.6), 0 0 24px rgba(79,140,255,0.3);
  }
  
  .features-hero .btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(79,140,255,0.8), 0 0 32px rgba(79,140,255,0.45);
  }
  
  /* Ghost button */
  .features-hero .btn-ghost {
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.95);
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
  }
  
  .features-hero .btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 0 14px rgba(255,255,255,0.15), 0 0 24px rgba(255,255,255,0.1);
  }
  
  /* ================================
     Pricing Section
     ================================ */
  .pricing-section {
    padding: 3rem 1.5rem;
    display: flex;
    justify-content: center;
  }
  
  .pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
  }
  
  .pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1 1 280px;
    max-width: 300px;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
  }
  
  .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
  }
  
  .pricing-card h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.25rem 0 0.5rem;
  }
  
  .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
  }
  
  .muted {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
  }
  
  .features-list {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
  }
  
  .features-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
    color: #f1f1f1;
  }
  
  .features-list li:last-child {
    border-bottom: none;
  }
  
  /* Example total */
  .example-total {
    font-size: 0.95rem;
    margin-top: 1rem;
    color: #e0e0e0;
  }
  
  /* Featured card */
  .pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(79,140,255,0.3);
  }
  
  .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(79,140,255,0.6);
    letter-spacing: 0.5px;
    transition: var(--transition);
  }
  
  /* ================================
     Pricing Buttons
     ================================ */
  .btn {
    margin-top: 1.25rem;
    padding: 0.85rem 1.5rem;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 12px rgba(79,140,255,0.5);
    display: inline-block;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(79,140,255,0.9);
  }
  
  .secondary-btn {
    background: var(--bg-accent);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: none;
  }
  
  .secondary-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 14px rgba(79,140,255,0.5);
  }
  
  /* ================================
     CTA Section
     ================================ */
  .cta {
    text-align: center;
    padding: 3rem 1.5rem;
    margin-top: 3rem;
    background: linear-gradient(0deg, #4f8cff14, transparent 80%);
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
  }
  
  .cta .btn,
  .cta .btn-ghost {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    margin: 0.5rem;
    border-radius: 10px;
    transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
    color: #fff;
  }
  
  /* Solid Button */
  .cta .btn {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 12px rgba(79,140,255,0.6), 0 0 24px rgba(79,140,255,0.3);
  }
  
  .cta .btn:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(79,140,255,0.8), 0 0 32px rgba(79,140,255,0.45);
  }
  
  /* Ghost Button */
  .cta .btn-ghost {
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.9);
    box-shadow: 0 0 10px rgba(255,255,255,0.05);
  }
  
  .cta .btn-ghost:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 0 14px rgba(255,255,255,0.15), 0 0 24px rgba(255,255,255,0.1);
  }
  
  /* ================================
     Responsive Adjustments
     ================================ */
  @media (max-width: 900px) {
    .features-hero h1 { font-size: 2.25rem; }
    .features-hero p { font-size: 1rem; }
  }
  
  @media (max-width: 768px) {
    .pricing-grid {
      flex-direction: column;
      align-items: center;
    }
  }

  .free-trial {
    background: linear-gradient(0deg, #4f8cff14, transparent 80%);
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-radius: 20px;
  }
  
  .free-trial h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .free-trial p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .free-trial .btn {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    background: #222; /* darker background */
    color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4), 
                0 0 24px rgba(79, 84, 200, 0.6); /* glow effect */
    transition: all 0.3s ease;
  }
