/* ================================================================
   Support / contact form
   ================================================================ */

.support-container {
    max-width: 640px;
    margin: 0 auto;
}

.support-icon {
    font-size: 1.6rem;
}

.support-intro {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.support-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.support-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.support-field input,
.support-field select,
.support-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font: inherit;
    font-size: 0.95rem;
    background: white;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-field input:focus,
.support-field select:focus,
.support-field textarea:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--primary) 50%, white);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 12%, transparent);
}

.support-field textarea {
    resize: vertical;
    min-height: 140px;
}

.support-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.support-submit {
    align-self: flex-start;
    margin-top: 4px;
}

.support-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.support-feedback {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.92rem;
    line-height: 1.6;
}

.support-feedback--success {
    background: color-mix(in srgb, var(--success, #2e7d32) 12%, white);
    border: 1px solid color-mix(in srgb, var(--success, #2e7d32) 35%, white);
    color: var(--text);
}

.support-feedback--error {
    background: color-mix(in srgb, var(--error, #c62828) 10%, white);
    border: 1px solid color-mix(in srgb, var(--error, #c62828) 30%, white);
    color: var(--text);
}

.support-fallback {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.support-fallback a {
    color: var(--primary);
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}
