/* ===============================
   WORLD CLASS HELP CENTER UI
   Primary: White | Secondary: Yellow
   Mobile First
================================ */

* {
    box-sizing: border-box;
}

.help-page {
    max-width: 100%;
    padding: 28px 16px 48px;
    background: #ffffff;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* HEADER */
.help-header {
    text-align: center;
    margin-bottom: 34px;
}

.help-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    color: #000;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.help-header h1 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.help-subtitle {
    font-size: 14.8px;
    color: #555;
    line-height: 1.8;
    max-width: 360px;
    margin: 0 auto;
}

/* GRID */
.help-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
}

/* CARD */
.help-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-card:active {
    transform: scale(0.97);
}

.help-card:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ICON */
.help-icon {
    width: 46px;
    height: 46px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

/* TITLE */
.help-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

/* TEXT */
.help-card p {
    font-size: 14.5px;
    color: #444;
    line-height: 1.7;
}

/* FOOT NOTE */
.help-note {
    margin-top: 38px;
    background: linear-gradient(135deg, #fffde7, #fff8c4);
    border-left: 4px solid #FFD700;
    border-radius: 20px;
    padding: 22px;
}

.help-note h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.help-note p {
    font-size: 14.5px;
    color: #444;
    line-height: 1.7;
}

/* ===============================
   TABLETS
================================ */
@media (min-width: 600px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===============================
   DESKTOP
================================ */
@media (min-width: 900px) {
    .help-page {
        max-width: 1000px;
        margin: auto;
        padding: 60px;
    }

    .help-header h1 {
        font-size: 36px;
    }

    .help-subtitle {
        max-width: 650px;
        font-size: 16px;
    }

    .help-grid {
        gap: 24px;
    }
}