.support-page {
    min-height: 72vh;
    padding: 38px 0 60px;
    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(244, 117, 33, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(37, 99, 235, 0.1),
            transparent 28%
        );
}

.support-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 26px;
    padding: 32px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            #111827,
            #26334a
        );
    color: #f8fafc;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.support-eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border: 1px solid rgba(251, 146, 60, 0.34);
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    color: #fdba74;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.support-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.support-hero p {
    max-width: 680px;
    margin: 14px 0 0;
    color: #cbd5e1;
    line-height: 1.7;
}

.support-back {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.support-back:hover,
.support-back:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    gap: 22px;
}

.support-form-card,
.support-info-card {
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.support-form-card {
    overflow: hidden;
    border-radius: 26px;
}

.support-card-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 27px;
    border-bottom: 1px solid #e2e8f0;
    background:
        linear-gradient(
            135deg,
            rgba(249, 115, 22, 0.08),
            rgba(37, 99, 235, 0.05)
        );
}

.support-card-icon {
    display: grid;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            #f97316,
            #ea580c
        );
    color: #ffffff;
    font-size: 1.35rem;
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.24);
}

.support-card-heading h2 {
    margin: 0;
    color: #0f172a;
    font-size: 1.25rem;
}

.support-card-heading p {
    margin: 5px 0 0;
    color: #64748b;
    line-height: 1.5;
}

.support-form {
    position: relative;
    padding: 27px;
}

.support-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.support-fields-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.support-field + .support-field,
.support-fields-row + .support-field {
    margin-top: 20px;
}

.support-fields-row .support-field {
    margin-top: 0;
}

.support-field label {
    display: block;
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 0.9rem;
    font-weight: 850;
}

.support-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

#supportCounter {
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 800;
}

#supportCounter.is-near-limit {
    color: #d97706;
}

.support-field input,
.support-field textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 15px;
    outline: none;
    background: #f8fafc;
    color: #0f172a;
    font: inherit;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.support-field input {
    min-height: 50px;
    padding: 0 15px;
}

.support-field textarea {
    min-height: 250px;
    padding: 15px;
    resize: vertical;
    line-height: 1.7;
}

.support-field input:focus,
.support-field textarea:focus {
    border-color: #f97316;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.11);
}

.support-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid #e2e8f0;
}

.support-form-footer p {
    max-width: 460px;
    margin: 0;
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.55;
}

.support-submit {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 20px;
    border: 0;
    border-radius: 15px;
    background:
        linear-gradient(
            135deg,
            #f97316,
            #ea580c
        );
    color: #ffffff;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 13px 28px rgba(234, 88, 12, 0.24);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.support-submit:hover:not(:disabled),
.support-submit:focus-visible:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 17px 34px rgba(234, 88, 12, 0.3);
}

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

.support-sidebar {
    display: grid;
    gap: 17px;
}

.support-info-card {
    padding: 22px;
    border-radius: 21px;
}

.support-info-card > span {
    display: grid;
    width: 43px;
    height: 43px;
    margin-bottom: 14px;
    place-items: center;
    border-radius: 14px;
    background: #fff1e6;
    font-size: 1.2rem;
}

.support-info-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: 1.02rem;
}

.support-info-card p {
    margin: 9px 0 0;
    color: #64748b;
    font-size: 0.87rem;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .support-layout {
        grid-template-columns: 1fr;
    }

    .support-sidebar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .support-page {
        padding: 20px 0 38px;
    }

    .support-hero {
        flex-direction: column;
        padding: 23px;
        border-radius: 22px;
    }

    .support-back {
        width: 100%;
    }

    .support-fields-row {
        grid-template-columns: 1fr;
    }

    .support-fields-row .support-field + .support-field {
        margin-top: 20px;
    }

    .support-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .support-submit {
        width: 100%;
    }

    .support-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .support-form-card {
        border-radius: 20px;
    }

    .support-card-heading,
    .support-form {
        padding: 20px;
    }
}
