.support-hub {
    padding: 120px 20px 80px;
    max-width: 980px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
    font-family: 'Inter', sans-serif;
    text-align: center;
}
.support-hub h1 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.hub-lead {
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 700px) {
    .hub-grid { grid-template-columns: 1fr; }
}
.hub-card {
    display: block;
    text-align: left;
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 28px;
    transition: transform .2s, border-color .2s, box-shadow .2s;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.hub-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,191,0,.35);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.hub-ico { font-size: 2rem; margin-bottom: 12px; }
.hub-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.hub-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 18px;
}
.hub-cta {
    color: var(--mc-green);
    font-weight: 700;
}

.recruit-section {
    padding: 120px 20px 80px;
    max-width: 1100px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
    font-family: 'Inter', sans-serif;
}
.recruit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.recruit-header h1 {
    font-size: 2.3rem;
    font-weight: 900;
    margin: 0 0 6px;
}
.recruit-header p { color: var(--text-secondary); margin: 0; }
.recruit-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.form-card, .resp-card, .builder-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 22px;
    margin-bottom: 16px;
}
.form-card h3 { margin: 0 0 8px; font-size: 1.25rem; font-weight: 800; }
.form-card p { color: var(--text-secondary); margin: 0 0 14px; line-height: 1.5; }
.form-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.badge-soft {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    background: rgba(255,191,0,.12);
    color: var(--mc-green);
    border: 1px solid rgba(255,191,0,.25);
}

.gform {
    max-width: 760px;
    margin: 0 auto;
}
.gform-header {
    background: var(--bg-secondary);
    border-top: 6px solid var(--mc-green);
    border-radius: 12px;
    padding: 28px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.05);
}
.gform-header h1 { font-size: 1.9rem; margin: 0 0 10px; font-weight: 900; }
.gform-header p { color: var(--text-secondary); margin: 0; white-space: pre-wrap; line-height: 1.55; }
.gform-q {
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 12px;
}
.gform-q label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    white-space: pre-wrap;
    line-height: 1.45;
}
.gform-q .req { color: #ff5555; margin-left: 4px; }
.gform-q input[type="text"],
.gform-q textarea,
.gform-q input[type="file"],
.builder-card input[type="text"],
.builder-card textarea,
.builder-card select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* évite le zoom iOS */
    box-sizing: border-box;
}
.gform-q textarea, .builder-card textarea { min-height: 110px; resize: vertical; }
.choice-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}
.choice-row input { width: 18px; height: 18px; accent-color: var(--mc-green); flex-shrink: 0; }
.img-preview {
    margin-top: 10px;
    max-width: 100%;
    max-height: 240px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}

.builder-q {
    border: 1px dashed rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    background: var(--bg-tertiary);
}
.builder-q-top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.builder-q-top select { max-width: 200px; }
.opt-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.opt-row { display: flex; gap: 8px; }
.opt-row input { flex: 1; min-width: 0; }
.builder-toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0 24px;
}

.resp-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
}
.resp-item:last-child { border-bottom: 0; }
.resp-item h4 { margin: 0 0 6px; }
.resp-item .muted { color: var(--text-secondary); font-size: .85rem; margin-bottom: 10px; }
.answer-line { margin: 6px 0; }
.answer-line strong { display: block; margin-bottom: 2px; }
.answer-line img { max-width: 280px; width: 100%; border-radius: 8px; margin-top: 6px; }

.back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--text-secondary);
    font-weight: 600;
}
.back-link:hover { color: var(--mc-green); }

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* ===== Mobile compact ===== */
@media screen and (max-width: 900px) {
    .support-hub {
        padding: 100px 14px 48px;
    }
    .support-hub h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    .hub-lead {
        font-size: .95rem;
        margin-bottom: 24px;
        padding: 0 4px;
    }
    .hub-grid { gap: 14px; }
    .hub-card {
        padding: 18px 16px;
        border-radius: 12px;
    }
    .hub-ico { font-size: 1.6rem; margin-bottom: 8px; }
    .hub-card h2 { font-size: 1.2rem; }
    .hub-card p {
        font-size: .9rem;
        margin-bottom: 12px;
    }

    .recruit-section {
        padding: 100px 12px 48px;
    }
    .recruit-header {
        align-items: flex-start;
        margin-bottom: 18px;
        gap: 12px;
    }
    .recruit-header h1 {
        font-size: 1.65rem;
    }
    .recruit-header p { font-size: .9rem; }
    .recruit-actions {
        width: 100%;
    }
    .recruit-actions .btn {
        flex: 1 1 auto;
        text-align: center;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .form-card, .resp-card, .builder-card {
        padding: 14px;
        border-radius: 12px;
        margin-bottom: 12px;
    }
    .form-card h3 { font-size: 1.1rem; }
    .form-card-meta {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .form-card-meta .btn {
        width: 100%;
        text-align: center;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .gform-header {
        padding: 18px 14px;
        border-radius: 10px;
    }
    .gform-header h1 { font-size: 1.35rem; }
    .gform-q {
        padding: 14px;
        border-radius: 10px;
    }
    .gform-q label { font-size: .95rem; margin-bottom: 10px; }

    .builder-q { padding: 12px; }
    .builder-q-top {
        flex-direction: column;
    }
    .builder-q-top select,
    .builder-q-top input {
        max-width: none;
        width: 100%;
    }
    .opt-row {
        flex-wrap: wrap;
    }
    .builder-toolbar .btn {
        flex: 1 1 calc(50% - 10px);
        min-height: 44px;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    #resp-form-select {
        max-width: 100% !important;
        width: 100%;
        font-size: 16px;
        box-sizing: border-box;
    }

    .answer-line img { max-width: 100%; }
    .empty-state { padding: 28px 14px; }
    .back-link { margin-bottom: 12px; font-size: .95rem; }
}

@media screen and (max-width: 480px) {
    .support-hub { padding: 92px 10px 40px; }
    .support-hub h1 { font-size: 1.5rem; }
    .recruit-section { padding: 92px 10px 40px; }
    .recruit-header h1 { font-size: 1.45rem; }
    .hub-card { padding: 14px 12px; }
    .gform-header h1 { font-size: 1.2rem; }
    .builder-toolbar .btn { flex: 1 1 100%; }
}
