/* =========================================
   Support Pricing Styles (Dark Theme)
   ========================================= */

/* Dark Section styling is handled by .section--dark in global CSS, 
   but we need to override card styles to sit well on dark bg */

.support-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .support-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .support-pricing-grid {
        grid-template-columns: 1fr;
    }
}

.support-card {
    background: #1e293b;
    /* Dark slate */
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
    background: #253347;
    /* Slightly lighter on hover */
}

.support-card.popular-card {
    border: 2px solid #ff5000;
    box-shadow: 0 20px 25px -5px rgba(255, 80, 0, 0.15);
    background: #1e293b;
}

.support-card.popular-card:hover {
    background: #253347;
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff5000;
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.support-card__hours {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    /* White text */
    margin-bottom: 16px;
}

.support-card__price {
    font-size: 36px;
    font-weight: 700;
    color: #ff5000;
    line-height: 1;
    margin-bottom: 4px;
}

.support-card__price .currency {
    font-size: 18px;
    font-weight: 500;
    color: #94a3b8;
    /* Muted gray for dark theme */
}

.support-card__meta {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.support-card__rate {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    width: 100%;
}

.support-card__features li {
    padding: 8px 0;
    color: #cbd5e1;
    /* Light gray text */
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.support-card__features li:last-child {
    border-bottom: none;
}

.btn-full {
    width: 100%;
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid #ff5000;
    color: #ff5000;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #ff5000;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 80, 0, 0.3);
}

/* Primary Button in Dark Theme (for Popular card) */
.btn-primary {
    background: #ff5000;
    border: 1px solid #ff5000;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e64800;
    border-color: #e64800;
    box-shadow: 0 4px 12px rgba(255, 80, 0, 0.3);
}