/* ================================
   SUPPORT PAGE
   (fonts/colors match main.css — Inter + Playfair Display
   already loaded via the theme's @import, not re-declared here)
================================ */

.support-page {
    background: linear-gradient(180deg, #0a0f2c 0%, #000000 12%, #0F0F2D 55%, #000000 100%);
    padding: 100px 0 120px;
    font-family: "Segoe UI", sans-serif;

    --support-accent-1: #0078D4;
    --support-accent-2: #00B4FF;
    --support-muted: #B7BDCE;
    --support-border: rgba(255, 255, 255, 0.1);
    --support-card-bg: #000000;
}

.support-page__inner {
    max-width: 1440px;
}

/* HEADER */
.support-page__header {
    text-align: center;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--support-border);
    margin-bottom: 48px;
}

.support-page__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--support-muted);
    margin-bottom: 24px;
    display: none;
}

.support-page__heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 121%;
    letter-spacing: 1px;
    color: #f8f9fa;
    margin-bottom: 16px;
}

.support-page__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 156%;
    color: var(--support-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* CARDS GRID */
.support-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.support-card {
    background: var(--support-card-bg);
    border: 1px solid var(--support-border);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.2s;
}

.support-card:hover {
    border-color: rgba(0, 120, 212, 0.45);
}

.support-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.support-card__icon--blue   { background: #0075cf; }
.support-card__icon--yellow { background: #ebaa00; }
.support-card__icon--green  { background: #14b90a; }

.support-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #f8f9fa;
    margin-bottom: 10px;
}

.support-card__desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    color: var(--support-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.support-card__link {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--support-accent-1) 0%, var(--support-accent-2) 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    transition: opacity 0.2s;
}

.support-card:hover .support-card__link {
    opacity: 0.88;
}

.support-card__note {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--support-muted);
}

/* COMPANY INFO */
.support-page__info {
    background: var(--support-card-bg);
    border: 1px solid var(--support-border);
    border-radius: 16px;
    padding: 32px;
}

.support-page__info-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--support-border);
    align-items: start;
}

.support-page__info-row:last-child {
    border-bottom: none;
}

.support-page__info-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f8f9fa;
}

.support-page__info-value {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #f8f9fa;
}

.support-page__info-value a {
    color: #5dade2;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.support-page__info-value a:hover {
    color: #00B4FF;
    text-decoration: underline;
}

.support-page__info-muted {
    color: var(--support-muted);
    font-size: 14px;
}

/* FOCUS STATES */
.support-card:focus-visible,
.support-page__info-value a:focus-visible {
    outline: 2px solid #00B4FF;
    outline-offset: 2px;
}

/* ================================
   SUPPORT PAGE — MOBILE
================================ */

@media (max-width: 767px) {
    .support-page {
        padding: 60px 0 80px;
    }

    .support-page__heading {
        font-size: 30px;
    }

    .support-page__subtitle {
        font-size: 15px;
    }

    .support-page__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .support-page__info-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .support-page__info {
        padding: 24px 20px;
    }

    .support-card {
        padding: 24px;
    }
}