/* ===================================================
   SUPPORT PAGE STYLING AND OVERLAP ENGINE FIX
=================================================== */
.support-page-wrapper {
    background-color: #f8fafc; /* Premium smooth light-gray backdrop canvas */
    padding-top: 100px;         /* CRITICAL FIX: Stops overlap beneath white header */
    min-height: calc(100vh - 85px);
    font-family: 'Inter', sans-serif !important;
}

.section-padding {
    padding: 50px 24px;
}

/* Headings Typography */
.support-main-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.support-sub-desc {
    font-size: 15.5px;
    color: #64748b;
    line-height: 1.6;
    max-width: 650px;
}

.bg-soft-blue-pill {
    background-color: #e0f2fe;
    color: #0384c7;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

/* ===================================================
   PREMIUM DOWNLOAD TILE CARDS GRID HOVERS
=================================================== */
.premium-utility-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header strip inside the card */
.utility-card-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #edf2f7;
    padding: 14px 20px;
    text-align: center;
}

.utility-card-header h5 {
    font-family: 'Outfit', sans-serif !important;
    font-size: 15.5px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Image graphic area config */
.utility-graphic-body {
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.utility-graphic-body img {
    max-width: 110px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.utility-action-footer {
    padding: 0 20px 25px 20px;
    background-color: #ffffff;
    text-align: center;
}

/* Sleek Blue Action Button Link */
.utility-btn-download {
    background-color: #0ea5e9; /* Premium Sky Blue Accent */
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
    transition: all 0.2s ease-in-out;
}

/* Dynamic Interaction Overhaul Hover States */
.premium-utility-card:hover {
    transform: translateY(-5px);
    border-color: #0ea5e9;
    box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

.premium-utility-card:hover .utility-graphic-body img {
    transform: scale(1.06);
}

.premium-utility-card:hover .utility-btn-download {
    background-color: #0284c7; /* Darker elite blue */
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25);
}

/* Screen Adaptability Modifications */
@media (max-width: 992px) {
    .support-page-wrapper { padding-top: 115px; }
    .support-main-title { font-size: 28px; }
    .support-sub-desc { font-size: 14px; }
}