/* ── PRICING PAGE SPECIFIC STYLES ── */

body {
    background-color: #0B1229;
    color: #F8FAFF;
    overflow-x: hidden;
}

.glass-card {
    background: rgba(20, 30, 56, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.rim-light {
    box-shadow: inset 0 1px 1px rgba(37, 99, 235, 0.2);
}

.ethereal-glow {
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.glow-primary {
    background: #3b82f6;
    top: -10%;
    left: -10%;
}

.glow-secondary {
    background: #8B5CF6;
    bottom: -10%;
    right: -10%;
}

.glow-tertiary {
    background: #F59E0B;
    top: 40%;
    left: 50%;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.pricing {
    background: transparent;
    /* Shared layout already has a background */
    padding-top: 120px;
}

.pricing-card {
    background: rgba(31, 30, 42, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    border-color: var(--blue);
    background: linear-gradient(135deg, rgba(31, 30, 42, 0.6) 0%, rgba(31, 30, 42, 0.4) 100%);
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.2);
}

.pricing-tier {
    color: var(--blue-light);
}

.pricing-features li {
    font-size: 0.85rem;
    color: var(--silver);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--green);
    font-weight: bold;
}
.pricing {
    background: transparent;
    padding-top: 120px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mb-32 {
    margin-bottom: 5rem;
}

/* ── RESPONSIVE: PRICING ── */
@media (max-width: 1200px) {
  .pricing {
    padding-top: 110px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .pricing {
    padding-top: 100px;
  }

  .pricing-grid {
    gap: 18px;
  }

  .pricing-card {
    padding: 1.5rem !important;
  }

  h1.font-headline-xl,
  .font-headline-xl {
    font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
  }

  .mb-32 {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding-top: 90px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 1.25rem !important;
  }

  .pricing-card .btn,
  .pricing-card a.btn {
    width: 100%;
    justify-content: center;
  }

  .glass-card {
    padding: 1.25rem !important;
  }
}

@media (max-width: 480px) {
  .pricing {
    padding-top: 84px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .pricing-features li {
    font-size: 0.8rem;
  }

  h1 {
    font-size: 1.6rem !important;
  }

  .ethereal-glow {
    width: 80vw;
    height: 80vw;
    opacity: 0.08;
  }
}
