html, body { height: auto; overflow: auto; }
body { overflow-y: auto; }

.support-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 32px 140px;
    position: relative;
    z-index: 2;
}
.support-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}
.support-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--fg);
}
.support-sub {
    font-size: 12px;
    color: var(--fg-3);
    margin-top: 4px;
}
.back {
    color: var(--fg-3);
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s var(--ease), transform 0.15s var(--ease);
}
.back:hover { color: var(--fg); transform: translateX(-2px); }

.support-intro {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--fg-2);
    margin-bottom: 28px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.field-label {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--fg-3);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.support-form input,
.support-form textarea {
    background: rgba(200, 195, 230, 0.04);
    border: 1px solid rgba(200, 195, 230, 0.14);
    border-radius: 8px;
    padding: 11px 13px;
    color: var(--fg);
    font-family: inherit;
    font-size: 13.5px;
    line-height: 1.5;
    transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
    resize: vertical;
}
.support-form input:focus,
.support-form textarea:focus {
    outline: none;
    border-color: rgba(200, 195, 230, 0.32);
    background: rgba(200, 195, 230, 0.06);
}
.support-err {
    font-size: 12px;
    color: #e07cb8;
    min-height: 16px;
}
.support-err.ok { color: #7ce0a8; }
.support-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.support-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    min-width: 160px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
    color: var(--bg);
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(184, 176, 218, 0.22);
    transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), opacity 0.18s var(--ease);
}

.support-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(184, 176, 218, 0.32);
}

.support-submit:active { transform: translateY(0); }

.support-submit:disabled {
    cursor: default;
    opacity: 0.65;
    transform: none;
    box-shadow: 0 4px 14px rgba(184, 176, 218, 0.18);
}

.support-submit.is-sending .support-submit-label {
    font-size: 0;
}
.support-submit.is-sending .support-submit-label::before {
    content: "Sending…";
    font-size: 13.5px;
}

.support-submit.is-sent {
    background: linear-gradient(180deg, #7ce0a8 0%, #4fb27d 100%);
    color: #04140a;
}
.support-submit.is-sent .support-submit-label {
    font-size: 0;
}
.support-submit.is-sent .support-submit-label::before {
    content: "Sent ✓";
    font-size: 13.5px;
}
