/* =========================
   SUPPORT PAGE (ONE IMAGE)
========================= */

.support-page {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/bg/asmodae.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.support-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--aa-page-overlay-top, rgba(7, 10, 18, .50)), var(--aa-page-overlay-mid, rgba(7, 10, 18, .62)) 45%, var(--aa-page-overlay-bottom, rgba(7, 10, 18, .80)));
    backdrop-filter: blur(var(--aa-page-backdrop-blur, 2px));
    -webkit-backdrop-filter: blur(var(--aa-page-backdrop-blur, 2px));
    z-index: 0;
}

/* Push content below fixed navbar (prevents “too high”) */
.support-page-inner {
    position: relative;
    z-index: 1;
    padding-top: 88px;
    padding-bottom: 42px;
}

.support-hero,
.support-section {
    background: transparent !important;
}

.support-hero-inner {
    max-width: 1320px;
}

.support-sub {
    color: rgba(255,255,255,.88);
    line-height: 1.6;
    font-size: 18px;
}

/* pill */
.hero-pill {
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(0,0,0,.16);
    color: rgba(255,255,255,.90);
    text-transform: uppercase;
    letter-spacing: .8px;
}

.support-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* cards */
.support-card {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    padding: 20px;
    box-shadow: 0 18px 34px rgba(0,0,0,.18);
}

.support-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    margin-bottom: 12px;
    overflow: hidden;
}

    .support-card-icon img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

    .support-card-icon .fallback {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(255,255,255,.10);
        color: rgba(255,255,255,.90);
        font-weight: 900;
        font-family: "Cinzel", serif;
    }

.support-card-title {
    margin-bottom: 8px;
    line-height: 1.2;
}

.support-card-text {
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 14px;
    max-width: 60ch;
}

.support-links {
    display: grid;
    gap: 10px;
}

    .support-links a {
        display: inline-block;
        color: #66b3ff;
        font-weight: 800;
        text-decoration: none;
    }

        .support-links a:hover {
            text-decoration: underline;
        }

.support-muted {
    color: rgba(255,255,255,.80);
    font-size: 12px;
}

/* direct support box */
.support-contact {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    padding: 20px;
    box-shadow: 0 18px 34px rgba(0,0,0,.18);
}

.support-contact-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Client panel */
.client-panel {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    padding: 20px;
    box-shadow: 0 18px 34px rgba(0,0,0,.18);
}

.client-panel-header {
    margin-bottom: 12px;
}

.client-panel-sub {
    color: rgba(255,255,255,.80);
    font-size: 13px;
}

.client-text {
    color: rgba(255,255,255,.90);
    font-size: 14px;
    line-height: 1.55;
}

.client-list {
    color: rgba(255,255,255,.90);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 18px;
}

.client-callout {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    padding: 12px 14px;
    color: rgba(255,255,255,.88);
}

/* Accordion */
.support-accordion .accordion-item {
    background: rgba(0,0,0,.15);
    border: 1px solid rgba(255,255,255,.12);
}

.support-accordion .accordion-button {
    background: rgba(0,0,0,.15);
    color: rgba(255,255,255,.92);
    font-weight: 800;
}

    .support-accordion .accordion-button:not(.collapsed) {
        background: rgba(255,255,255,.06);
    }

.support-accordion .accordion-body {
    color: rgba(255,255,255,.90);
}

/* bottom links */
.faq-bottom {
    text-align: center;
    font-weight: 700;
    color: rgba(255,255,255,.90);
}

.faq-toplink {
    color: rgba(255,255,255,.90);
    text-decoration: none;
}

    .faq-toplink:hover {
        text-decoration: underline;
    }


