/* ===== SUPPORT HERO ===== */
.support-hero {
    text-align: center;
    padding: 140px 24px 60px;
    background: linear-gradient(135deg, #ECFDF5 0%, #F0FDF4 50%, #ECFDF5 100%);
}

.support-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}

.support-hero-sub {
    font-size: 1.05rem;
    color: #4B5563;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== MAIN ===== */
.support-main {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ===== QUICK LINK CARDS ===== */
.support-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -32px;
    position: relative;
    z-index: 1;
}

.support-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    color: #4B5563;
}

.support-card:hover {
    border-color: #059669;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.1);
    transform: translateY(-4px);
    color: #4B5563;
}

.support-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.support-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.support-card p {
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ===== CONTACT SECTION ===== */
.support-contact {
    margin-top: 56px;
    max-width: 560px;
}

.support-contact-info h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.support-contact-info > p {
    color: #4B5563;
    margin-bottom: 28px;
    line-height: 1.7;
}

.support-contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.support-contact-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-contact-detail strong {
    display: block;
    font-size: 0.9rem;
    color: #111827;
    margin-bottom: 2px;
}

.support-contact-detail p {
    font-size: 0.85rem;
    color: #4B5563;
    margin: 0;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .support-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -20px;
    }

}

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

}
