﻿/* 🌐 Section Wrapper */
.pricing-section {
    padding: 6rem 2rem;
    text-align: center;
    color: var(--text-color);
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

    .pricing-section h2 {
        font-size: 3rem;
        font-weight: 800;
        color: var(--accent);
        text-shadow: 0 0 14px var(--accent);
        animation: pulseLoop 4s ease-in-out infinite;
        margin-bottom: 3rem;
    }

/* 🧱 Grid Layout */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* 💳 Card Styling */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 360px;
    width: 100%;
    color: var(--text-color);
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(30px);
    opacity: 0;
}

    /* ✨ Reveal Animation */
    .pricing-card.visible {
        transform: translateY(0);
        opacity: 1;
    }

    /* 🔥 Tier Colors */
    .pricing-card:nth-child(1) {
        border-color: #cd7f32;
    }

    .pricing-card:nth-child(2) {
        border-color: #c0c0c0;
    }

    .pricing-card:nth-child(3) {
        border-color: #ffd700;
    }

    .pricing-card:nth-child(1):hover {
        box-shadow: 0 0 25px #cd7f32, 0 0 55px #cd7f32;
    }

    .pricing-card:nth-child(2):hover {
        box-shadow: 0 0 25px #c0c0c0, 0 0 55px #c0c0c0;
    }

    .pricing-card:nth-child(3):hover {
        box-shadow: 0 0 25px #ffd700, 0 0 55px #ffd700;
    }

    /* 🏷 Plan Title */
    .pricing-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--text-color);
        transition: all 0.3s ease;
    }

    .pricing-card:nth-child(1):hover h3 {
        color: #cd7f32;
        text-shadow: 0 0 8px #cd7f32;
    }

    .pricing-card:nth-child(2):hover h3 {
        color: #c0c0c0;
        text-shadow: 0 0 8px #c0c0c0;
    }

    .pricing-card:nth-child(3):hover h3 {
        color: #ffd700;
        text-shadow: 0 0 8px #ffd700;
    }

/* 💲 Price */
.price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--accent);
}

/* 💡 Short Tagline */
.desc {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-color);
    opacity: 0.85;
    text-shadow: 0 0 6px rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

/* 📋 Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

    .feature-list li {
        font-family: 'Courier New', monospace;
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        opacity: 0.9;
        white-space: nowrap;
        overflow: hidden;
    }


/* 🚀 Call to Action */
.pricing-btn {
    background: linear-gradient(45deg, var(--accent), var(--accent-2));
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 0 10px var(--accent);
    transition: all 0.3s ease;
    align-self: center;
}

    .pricing-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 25px var(--accent), 0 0 35px var(--accent-2);
    }

/* ✨ Glowing Pulse */
@keyframes pulseLoop {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 14px var(--accent);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 24px var(--accent);
    }
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .pricing-section h2 {
        font-size: 2.2rem;
    }

    .pricing-card {
        max-width: 100%;
    }

    .pricing-btn {
        width: 100%;
    }
}
