/* =============================================
   Help Page
   ============================================= */

.help__header {
    padding: 140px 0 48px;
    background: var(--bg-alt);
}

.help__header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.help__intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.help__content {
    padding: 48px 0 100px;
}

.help__card {
    padding: 36px 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.help__card:last-child {
    margin-bottom: 0;
}

.help__card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.help__card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 10px;
}

.help__card p:last-child {
    margin-bottom: 0;
}

.help__card a {
    color: var(--teal);
    font-weight: 600;
}

.help__card strong {
    color: var(--text);
    font-weight: 600;
}

/* Highlighted card (Contact) */

.help__card--highlight {
    background: var(--teal-light);
    border-color: transparent;
}

.help__email {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--teal) !important;
    padding: 10px 20px;
    background: #fff;
    border-radius: 10px;
    margin: 8px 0 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help__email:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.help__response {
    font-size: 0.88rem !important;
    color: var(--text-muted) !important;
}

/* Responsive */

@media (max-width: 600px) {
    .help__header {
        padding: 120px 0 36px;
    }

    .help__header h1 {
        font-size: 1.8rem;
    }

    .help__content {
        padding: 36px 0 72px;
    }

    .help__card {
        padding: 28px 24px;
    }
}
