/* ════════════════════════════════════════════════════════════
   HELPLINE MAIN INFO CARD — Add to bottom of portal.css
════════════════════════════════════════════════════════════ */

.hc-main-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-m);
    margin-top: 36px;
}

/* Topics grid — 3 columns */
.hc-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.hc-topic-group {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 18px;
    transition: box-shadow .2s;
}

.hc-topic-group:hover {
    box-shadow: var(--shadow-s)
}

.hc-topic-label {
    font-size: 12.5px;
    font-weight: 800;
    color: var(--forest);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
    letter-spacing: .2px;
}

.hc-topic-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hc-topic-items span {
    font-size: 13px;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.4;
}

.hc-topic-items span::before {
    content: '›';
    color: var(--forest);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Action buttons */
.hc-action-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hc-btn-call,
.hc-btn-chat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Nunito Sans', sans-serif;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    text-decoration: none;
    flex: 1;
    min-width: 200px;
}

.hc-btn-call {
    background: linear-gradient(135deg, var(--forest), var(--forest-m));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 18px rgba(43, 83, 64, .3);
}

.hc-btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(43, 83, 64, .4);
    color: var(--white);
}

.hc-btn-chat {
    background: var(--gold-b);
    color: var(--dark);
    border: none;
    box-shadow: 0 4px 18px rgba(232, 200, 74, .35);
}

.hc-btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(232, 200, 74, .5);
}

.hc-disclaimer {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
    margin: 0;
    background: var(--forest-xl);
    border-radius: 8px;
    padding: 10px 16px;
}

/* Responsive */
@media(max-width: 900px) {
    .hc-topics-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width: 580px) {
    .hc-topics-grid {
        grid-template-columns: 1fr
    }

    .hc-action-btns {
        flex-direction: column
    }

    .hc-btn-call,
    .hc-btn-chat {
        width: 100%
    }

    .hc-main-card {
        padding: 22px 18px
    }
}