.cooperation-box {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    box-sizing: border-box;
    padding: clamp(20px, 4vh, 44px) clamp(18px, 4vw, 48px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(10, 14, 20, .72);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    opacity: 0;
    transition: opacity .32s ease;
}

.cooperation-box.is-opening,
.cooperation-box.is-open {
    opacity: 1;
}

.cooperation-box.is-closing {
    opacity: 0;
}

.cooperation-box .cooperation {
    position: relative;
    width: min(1160px, 100%);
    height: min(760px, calc(100vh - 64px));
    min-height: min(600px, calc(100vh - 40px));
    max-height: calc(100vh - 40px);
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 32px 90px rgba(3, 8, 18, .34);
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(.985);
    transition: opacity .35s ease, transform .52s cubic-bezier(.16, 1, .3, 1);
}

.cooperation-box.is-opening .cooperation,
.cooperation-box.is-open .cooperation {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.cooperation-box.is-closing .cooperation {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(.99);
}

.cooperation-box .cooperation-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 8;
    display: block;
    width: 44px;
    height: 44px;
    box-sizing: border-box;
    border: 1px solid rgba(20, 28, 39, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 28px rgba(20, 28, 39, .12);
    transition: background-color .25s ease, border-color .25s ease, transform .35s cubic-bezier(.16, 1, .3, 1);
}

.cooperation-box .cooperation-close::before,
.cooperation-box .cooperation-close::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 20px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #17202b;
}

.cooperation-box .cooperation-close::before { transform: rotate(45deg); }
.cooperation-box .cooperation-close::after { transform: rotate(-45deg); }

.cooperation-box .cooperation-close:hover {
    border-color: #ef3f47;
    background: #ef3f47;
    transform: rotate(90deg);
}

.cooperation-box .cooperation-close:hover::before,
.cooperation-box .cooperation-close:hover::after {
    background: #fff;
}

.cooperation-box .cooperation-close:focus-visible {
    outline: 2px solid #ef3f47;
    outline-offset: 3px;
}

.demand-popup-content {
    display: grid;
    grid-template-columns: minmax(330px, .82fr) minmax(520px, 1.18fr);
    height: 100%;
    min-height: 0;
    overflow-y: auto;
}

.demand-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding: clamp(52px, 6vw, 82px) clamp(34px, 4vw, 54px) 52px;
    overflow: hidden;
    color: #f7f8f9;
    background: #151b23;
}

.demand-intro::before {
    content: "";
    position: absolute;
    right: -120px;
    bottom: 90px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.demand-intro::after {
    content: "";
    position: absolute;
    right: 52px;
    bottom: 60px;
    width: 74px;
    height: 2px;
    background: #ef3f47;
}

.demand-intro-main,
.demand-contact-list {
    position: relative;
    z-index: 1;
}

.demand-eyebrow {
    margin: 0 0 24px;
    color: #ef6a70;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
}

.demand-intro h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0;
}

.demand-intro-copy {
    max-width: 430px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .66);
    font-size: 15px;
    line-height: 2;
}

.demand-contact-list {
    margin-top: 48px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.demand-contact-list p {
    margin: 8px 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.7;
}

.demand-contact-list a { color: #fff; }

.demand-form-wrap {
    box-sizing: border-box;
    padding: 54px clamp(36px, 5vw, 68px) 44px;
    background: #fff;
}

.demand-form-header {
    margin-bottom: 26px;
    padding-right: 58px;
}

.demand-form-header h3 {
    margin: 0 0 8px;
    color: #17202b;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
}

.demand-form-header p {
    margin: 0;
    color: #7b8490;
    font-size: 14px;
    line-height: 1.7;
}

.demand-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 26px;
    padding: 0;
}

.demand-fields li {
    margin: 0;
    list-style: none;
}

.demand-fields .demand-field-wide { grid-column: 1 / -1; }

.demand-fields label,
.demand-verification label {
    display: block;
    box-sizing: border-box;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #e2e5e9;
    background: #f7f8f9;
    transition: border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.demand-fields label:focus-within,
.demand-verification label:focus-within {
    border-color: #ef565d;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(239, 63, 71, .08);
}

.demand-fields input,
.demand-verification input {
    width: 100%;
    height: 46px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #17202b;
    font-size: 15px;
    line-height: 46px;
}

.demand-fields input::placeholder,
.demand-verification input::placeholder { color: #9ba2ab; }

.demand-section-title {
    margin: 0 0 12px;
    color: #17202b;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.demand-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 24px;
}

.demand-services dd { margin: 0; }
.demand-services input { position: absolute; opacity: 0; pointer-events: none; }

.demand-services label {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-sizing: border-box;
    padding: 9px 8px;
    overflow: hidden;
    border: 1px solid #e4e7ea;
    background: #f7f8f9;
    color: #4f5965;
    text-align: center;
    cursor: pointer;
    transition: color .22s ease, border-color .22s ease, background-color .22s ease, transform .22s ease;
}

.demand-services label:hover {
    border-color: #bbc1c8;
    background: #fff;
    transform: translateY(-2px);
}

.demand-services label.cur,
.demand-services label.is-selected {
    border-color: #ef3f47;
    background: #fff4f4;
    color: #cf2028;
}

.demand-services span {
    font-size: 13px;
    line-height: 1.45;
}

.demand-services .checked {
    position: absolute;
    right: -12px;
    bottom: -12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ef3f47;
    opacity: 0;
    transition: opacity .22s ease;
}

.demand-services label.cur .checked,
.demand-services label.is-selected .checked { opacity: 1; }

.demand-budget {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 18px;
}

.demand-budget label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #59636e;
    font-size: 13px;
    line-height: 24px;
    cursor: pointer;
}

.demand-budget input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: #ef3f47;
}

.demand-verification {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) 140px auto;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
}

.demand-verification img {
    display: block;
    width: 140px;
    height: 36px;
    object-fit: cover;
    cursor: pointer;
}

.demand-captcha-refresh {
    min-width: 54px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #69737e;
    font-size: 13px;
    cursor: pointer;
}

.demand-captcha-refresh:hover { color: #ef3f47; }

.demand-submit { margin-top: 20px; }

.demand-submit input {
    width: 100%;
    height: 54px;
    padding: 0;
    border: 1px solid #ef3f47;
    background: #ef3f47;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(239, 63, 71, .2);
    transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.demand-submit input:hover {
    background: #d92932;
    box-shadow: 0 18px 34px rgba(239, 63, 71, .28);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .cooperation-box { padding: 16px; }
    .cooperation-box .cooperation {
        height: calc(100vh - 32px);
        min-height: calc(100vh - 32px);
        max-height: calc(100vh - 32px);
    }
    .demand-popup-content { grid-template-columns: 1fr; }
    .demand-intro { min-height: 280px; padding: 52px 42px 36px; }
    .demand-intro-copy { max-width: 620px; }
    .demand-contact-list { margin-top: 30px; }
}

@media (max-width: 640px) {
    .cooperation-box {
        padding: 0;
        background: #fff;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .cooperation-box .cooperation {
        width: 100%;
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        max-height: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
        transform: translate3d(0, 18px, 0);
    }

    .cooperation-box .cooperation-close {
        position: fixed;
        top: max(14px, env(safe-area-inset-top));
        right: max(14px, env(safe-area-inset-right));
        width: 42px;
        height: 42px;
        background: #17202b;
        border-color: #17202b;
        box-shadow: 0 10px 24px rgba(20, 28, 39, .2);
    }

    .cooperation-box .cooperation-close::before,
    .cooperation-box .cooperation-close::after {
        left: 11px;
        top: 19px;
        background: #fff;
    }

    .demand-intro {
        min-height: 0;
        padding: 74px 20px 28px;
    }

    .demand-popup-content { height: auto; overflow: visible; }

    .demand-intro h2 { max-width: 290px; font-size: 30px; }
    .demand-eyebrow { margin-bottom: 12px; font-size: 12px; }
    .demand-intro-copy { margin-top: 16px; font-size: 14px; line-height: 1.75; }
    .demand-contact-list { display: none; }

    .demand-form-wrap { padding: 30px 16px calc(36px + env(safe-area-inset-bottom)); }
    .demand-form-header { margin-bottom: 20px; padding-right: 0; }
    .demand-form-header h3 { font-size: 26px; }
    .demand-fields { grid-template-columns: 1fr; gap: 9px; margin-bottom: 22px; }
    .demand-fields .demand-field-wide { grid-column: auto; }
    .demand-services { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
    .demand-services label { min-height: 56px; }
    .demand-budget { gap: 6px 14px; }
    .demand-verification { grid-template-columns: minmax(120px, 1fr) 122px; }
    .demand-verification img { width: 122px; }
    .demand-captcha-refresh { grid-column: 2; justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
    .cooperation-box,
    .cooperation-box .cooperation,
    .cooperation-box .cooperation-close,
    .demand-services label,
    .demand-submit input { transition: none !important; }
}

/* Conversion popup polish - 20260730 */
html.fixedfixup .sidebar {
    display: none !important;
}

.cooperation-box {
    padding: clamp(18px, 3.6vh, 38px) clamp(18px, 4vw, 46px);
    background: rgba(7, 12, 18, .68);
}

.cooperation-box .cooperation {
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 80px rgba(4, 11, 18, .34);
}

.cooperation-box .cooperation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    height: 2px;
    background: linear-gradient(90deg, rgba(239, 63, 71, 0), #ef3f47 18%, #c8a15e 54%, rgba(239, 63, 71, 0));
}

.cooperation-box .cooperation-close {
    border: 1px solid rgba(18, 28, 42, .14);
    box-shadow: 0 2px 8px rgba(18, 28, 42, .12);
}

.demand-popup-content {
    grid-template-columns: minmax(340px, .78fr) minmax(540px, 1.22fr);
    background: #fff;
}

.demand-intro {
    background:
        radial-gradient(circle at 18% 16%, rgba(239, 63, 71, .18), rgba(239, 63, 71, 0) 26%),
        linear-gradient(145deg, #101821 0%, #182330 58%, #101820 100%);
}

.demand-intro h2,
.demand-form-header h3 {
    text-wrap: balance;
}

.demand-intro-copy,
.demand-form-header p {
    text-wrap: pretty;
}

.demand-form-wrap {
    position: relative;
    padding-top: clamp(46px, 5vw, 62px);
}

.demand-fields label,
.demand-verification label,
.demand-services label {
    border-radius: 6px;
}

.demand-fields label,
.demand-verification label {
    border-color: rgba(18, 28, 42, .11);
    background: #f6f8f9;
}

.demand-fields input,
.demand-verification input {
    color: #111a23;
}

.demand-fields input::placeholder,
.demand-verification input::placeholder {
    color: #68727d;
}

.demand-services label {
    border-color: rgba(18, 28, 42, .1);
    background: #f7f8f9;
    color: #374451;
}

.demand-services label:hover {
    border-color: rgba(239, 63, 71, .28);
    background: #fff;
}

.demand-services label.cur,
.demand-services label.is-selected {
    border-color: rgba(239, 63, 71, .78);
    background: #fff6f5;
    color: #c91d28;
}

.demand-services .checked {
    right: 8px;
    bottom: 8px;
    width: 18px;
    height: 18px;
}

.demand-services .checked::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 4px;
    width: 6px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.demand-budget {
    gap: 10px;
}

.demand-budget label {
    min-height: 34px;
    padding: 4px 12px;
    border: 1px solid rgba(18, 28, 42, .1);
    border-radius: 999px;
    background: #fff;
    color: #3f4a56;
}

.demand-budget label:focus-within {
    border-color: rgba(239, 63, 71, .58);
    box-shadow: 0 0 0 3px rgba(239, 63, 71, .08);
}

.demand-verification {
    margin-bottom: 78px;
}

.demand-submit {
    position: static;
    bottom: auto;
    z-index: 3;
    margin: 22px 0 0;
    padding-top: 16px;
    background: #fff;
}

.demand-submit input {
    border-radius: 6px;
    box-shadow: none;
}

.demand-submit input:hover {
    box-shadow: none;
}

@media (max-width: 900px) {
    .demand-popup-content {
        grid-template-columns: 1fr;
    }

    .demand-intro {
        padding-bottom: 34px;
    }
}

/* Desktop demand popup refinement: cleaner checked state and no inner scroll on normal screens. */
.demand-services label {
    isolation: isolate;
}

.demand-services label.cur,
.demand-services label.is-selected {
    border-color: rgba(239, 63, 71, .62);
    background: linear-gradient(180deg, #fff 0%, #fff7f6 100%);
    color: #cf252c;
    box-shadow: inset 0 0 0 1px rgba(239, 63, 71, .08);
}

.demand-services label.cur::after,
.demand-services label.is-selected::after {
    content: "";
    position: absolute;
    inset: 5px;
    z-index: -1;
    border: 1px solid rgba(239, 63, 71, .12);
    border-radius: 4px;
    pointer-events: none;
}

.demand-services .checked {
    top: 8px;
    right: 8px;
    bottom: auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ef3f47;
    box-shadow: 0 5px 12px rgba(239, 63, 71, .18);
    transform: scale(.86);
    transition: opacity .2s ease, transform .2s ease;
}

.demand-services label.cur .checked,
.demand-services label.is-selected .checked {
    opacity: 1;
    transform: scale(1);
}

.demand-services .checked::before {
    left: 5px;
    top: 3px;
    width: 5px;
    height: 8px;
    border-right-width: 1.8px;
    border-bottom-width: 1.8px;
}

@media (min-width: 901px) {
    .cooperation-box {
        padding: clamp(18px, 3vh, 30px) clamp(18px, 4vw, 48px);
        overflow: hidden;
    }

    .cooperation-box .cooperation {
        height: min(730px, calc(100vh - 48px));
        min-height: min(620px, calc(100vh - 48px));
        max-height: calc(100vh - 48px);
    }

    .demand-popup-content {
        overflow: hidden;
    }

    .demand-intro {
        padding-top: clamp(48px, 5vh, 64px);
        padding-bottom: clamp(36px, 4vh, 48px);
    }

    .demand-intro h2 {
        font-size: clamp(34px, 2.6vw, 42px);
        line-height: 1.15;
    }

    .demand-intro-copy {
        margin-top: 22px;
        line-height: 1.85;
    }

    .demand-contact-list {
        margin-top: 34px;
        padding-top: 20px;
    }

    .demand-form-wrap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
        padding: clamp(28px, 4vh, 40px) clamp(36px, 4.8vw, 64px) clamp(26px, 3vh, 36px);
    }

    .demand-form-header {
        margin-bottom: 14px;
    }

    .demand-form-header h3 {
        margin-bottom: 6px;
        font-size: 28px;
        line-height: 1.24;
    }

    .demand-fields {
        gap: 9px 10px;
        margin-bottom: 15px;
    }

    .demand-fields label,
    .demand-verification label {
        height: 42px;
    }

    .demand-fields input,
    .demand-verification input {
        height: 40px;
        font-size: 14px;
        line-height: 40px;
    }

    .demand-section-title {
        margin-bottom: 8px;
        font-size: 15px;
        line-height: 1.4;
    }

    .demand-services {
        gap: 8px 10px;
        margin-bottom: 14px;
    }

    .demand-services label {
        min-height: 48px;
        padding: 8px 28px 8px 10px;
    }

    .demand-services span {
        line-height: 1.34;
    }

    .demand-budget {
        gap: 6px;
        margin-bottom: 10px;
    }

    .demand-budget label {
        min-height: 28px;
        padding: 2px 8px;
        font-size: 13px;
        line-height: 22px;
    }

    .demand-verification {
        grid-template-columns: minmax(150px, 1fr) 132px auto;
        gap: 9px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .demand-verification img {
        width: 132px;
        height: 34px;
    }

    .demand-submit {
        position: static;
        bottom: auto;
        margin-top: 8px;
        padding-top: 0;
        background: transparent;
    }

    .demand-submit input {
        height: 50px;
    }
}

@media (min-width: 901px) {
    .demand-form-wrap {
        padding-top: 42px;
        padding-bottom: 30px;
    }

    .demand-form-header {
        margin-bottom: 18px;
    }

    .demand-fields {
        gap: 10px;
        margin-bottom: 20px;
    }

    .demand-fields label,
    .demand-verification label {
        height: 44px;
    }

    .demand-fields input,
    .demand-verification input {
        height: 42px;
        line-height: 42px;
    }

    .demand-section-title {
        margin-bottom: 10px;
    }

    .demand-services {
        gap: 8px;
        margin-bottom: 20px;
    }

    .demand-services label {
        min-height: 52px;
    }

    .demand-budget {
        flex-wrap: nowrap;
        gap: 7px;
        margin-bottom: 14px;
    }

    .demand-budget label {
        min-height: 30px;
        padding: 3px 8px;
        white-space: nowrap;
    }

    .demand-verification {
        margin-top: 14px;
        margin-bottom: 78px;
    }

    .demand-submit {
        position: sticky;
        bottom: 0;
        margin-top: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 34%);
    }
}

@media (max-width: 640px) {
    .cooperation-box {
        background: #fff;
    }

    .cooperation-box .cooperation::before {
        position: fixed;
    }

    .demand-form-wrap {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
    }

    .demand-services label {
        justify-content: flex-start;
        min-height: 58px;
        padding: 10px 34px 10px 12px;
        text-align: left;
    }

    .demand-services span {
        font-size: 13px;
        line-height: 1.38;
    }

    .demand-budget label {
        flex: 1 1 calc(50% - 8px);
        justify-content: flex-start;
    }

    .demand-submit {
        position: sticky;
        bottom: 0;
        margin-right: -16px;
        margin-left: -16px;
        padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(18, 28, 42, .08);
        background: rgba(255, 255, 255, .96);
    }
}

/* Demand popup motion - 20260801 */
.cooperation-box {
    --demand-motion: cubic-bezier(.16, 1, .3, 1);
    --demand-exit: cubic-bezier(.4, 0, .2, 1);
}

.cooperation-box::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 74% 18%, rgba(239, 63, 71, .12), rgba(239, 63, 71, 0) 30%),
        radial-gradient(circle at 30% 82%, rgba(200, 161, 94, .12), rgba(200, 161, 94, 0) 34%);
    opacity: 0;
    transform: scale(1.03);
    transition: opacity .52s ease, transform .68s var(--demand-motion);
}

.cooperation-box.is-opening::before,
.cooperation-box.is-open::before {
    opacity: 1;
    transform: scale(1);
}

.cooperation-box.is-closing::before {
    opacity: 0;
    transform: scale(1.01);
    transition-duration: .34s;
    transition-timing-function: ease;
}

.cooperation-box .cooperation {
    z-index: 1;
    transform-origin: 50% 46%;
    filter: blur(8px);
    clip-path: inset(3% 3% 3% 3% round 12px);
    will-change: opacity, transform, filter, clip-path;
    transition:
        opacity .36s ease,
        transform .68s var(--demand-motion),
        filter .46s ease,
        clip-path .68s var(--demand-motion);
}

.cooperation-box.is-opening .cooperation,
.cooperation-box.is-open .cooperation {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0 round 8px);
}

.cooperation-box.is-closing .cooperation {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(.976);
    filter: blur(8px);
    clip-path: inset(2.5% 2.5% 2.5% 2.5% round 10px);
    transition-duration: .26s, .46s, .34s, .46s;
    transition-timing-function: ease, var(--demand-exit), ease, var(--demand-exit);
}

.cooperation-box .cooperation::before {
    opacity: 0;
    transform: scaleX(.18);
    transform-origin: left center;
    transition: opacity .34s ease, transform .66s var(--demand-motion);
}

.cooperation-box.is-opening .cooperation::before,
.cooperation-box.is-open .cooperation::before {
    opacity: 1;
    transform: scaleX(1);
    transition-delay: .12s;
}

.cooperation-box.is-closing .cooperation::before {
    opacity: 0;
    transform: scaleX(.42);
    transition-delay: 0s;
    transition-duration: .22s;
}

.cooperation-box .cooperation-close {
    opacity: 0;
    transform: rotate(-32deg) scale(.82);
    transition:
        opacity .28s ease,
        background-color .25s ease,
        border-color .25s ease,
        transform .48s var(--demand-motion),
        box-shadow .25s ease;
}

.cooperation-box.is-opening .cooperation-close,
.cooperation-box.is-open .cooperation-close {
    opacity: 1;
    transform: rotate(0) scale(1);
    transition-delay: .32s, 0s, 0s, .32s, 0s;
}

.cooperation-box.is-closing .cooperation-close {
    opacity: 0;
    transform: rotate(38deg) scale(.86);
    transition-delay: 0s;
}

.cooperation-box.is-opening .cooperation-close:hover,
.cooperation-box.is-open .cooperation-close:hover {
    transform: rotate(90deg) scale(1.04);
}

.cooperation-box .demand-intro,
.cooperation-box .demand-form-wrap {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity .42s ease, transform .64s var(--demand-motion);
}

.cooperation-box .demand-intro {
    transform: translate3d(-22px, 0, 0);
}

.cooperation-box .demand-form-wrap {
    transform: translate3d(24px, 0, 0);
}

.cooperation-box.is-opening .demand-intro,
.cooperation-box.is-open .demand-intro,
.cooperation-box.is-opening .demand-form-wrap,
.cooperation-box.is-open .demand-form-wrap {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.cooperation-box.is-opening .demand-intro,
.cooperation-box.is-open .demand-intro {
    transition-delay: .1s;
}

.cooperation-box.is-opening .demand-form-wrap,
.cooperation-box.is-open .demand-form-wrap {
    transition-delay: .16s;
}

.cooperation-box.is-closing .demand-intro,
.cooperation-box.is-closing .demand-form-wrap {
    opacity: 0;
    transition-delay: 0s;
    transition-duration: .25s;
}

.cooperation-box.is-closing .demand-intro {
    transform: translate3d(-16px, 0, 0);
}

.cooperation-box.is-closing .demand-form-wrap {
    transform: translate3d(16px, 0, 0);
}

.cooperation-box .demand-form-header,
.cooperation-box .demand-fields,
.cooperation-box .demand-section-title,
.cooperation-box .demand-services,
.cooperation-box .demand-budget,
.cooperation-box .demand-verification,
.cooperation-box .demand-submit {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    transition: opacity .34s ease, transform .48s var(--demand-motion);
}

.cooperation-box.is-opening .demand-form-header,
.cooperation-box.is-open .demand-form-header,
.cooperation-box.is-opening .demand-fields,
.cooperation-box.is-open .demand-fields,
.cooperation-box.is-opening .demand-section-title,
.cooperation-box.is-open .demand-section-title,
.cooperation-box.is-opening .demand-services,
.cooperation-box.is-open .demand-services,
.cooperation-box.is-opening .demand-budget,
.cooperation-box.is-open .demand-budget,
.cooperation-box.is-opening .demand-verification,
.cooperation-box.is-open .demand-verification,
.cooperation-box.is-opening .demand-submit,
.cooperation-box.is-open .demand-submit {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.cooperation-box.is-opening .demand-form-header,
.cooperation-box.is-open .demand-form-header { transition-delay: .2s; }

.cooperation-box.is-opening .demand-fields,
.cooperation-box.is-open .demand-fields { transition-delay: .24s; }

.cooperation-box.is-opening .demand-section-title,
.cooperation-box.is-open .demand-section-title { transition-delay: .28s; }

.cooperation-box.is-opening .demand-services,
.cooperation-box.is-open .demand-services { transition-delay: .31s; }

.cooperation-box.is-opening .demand-budget,
.cooperation-box.is-open .demand-budget { transition-delay: .34s; }

.cooperation-box.is-opening .demand-verification,
.cooperation-box.is-open .demand-verification { transition-delay: .37s; }

.cooperation-box.is-opening .demand-submit,
.cooperation-box.is-open .demand-submit { transition-delay: .4s; }

.cooperation-box.is-closing .demand-form-header,
.cooperation-box.is-closing .demand-fields,
.cooperation-box.is-closing .demand-section-title,
.cooperation-box.is-closing .demand-services,
.cooperation-box.is-closing .demand-budget,
.cooperation-box.is-closing .demand-verification,
.cooperation-box.is-closing .demand-submit {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
    transition-delay: 0s;
    transition-duration: .2s;
}

.cooperation-box .demand-intro::before {
    opacity: .35;
    transform: scale(.9);
    transition: opacity .52s ease, transform .76s var(--demand-motion);
}

.cooperation-box.is-opening .demand-intro::before,
.cooperation-box.is-open .demand-intro::before {
    opacity: 1;
    transform: scale(1);
    transition-delay: .2s;
}

.cooperation-box.is-closing .demand-intro::before {
    opacity: .18;
    transform: scale(.92);
    transition-delay: 0s;
}

.cooperation-box .demand-intro::after {
    transform: scaleX(.22);
    transform-origin: right center;
    transition: transform .54s var(--demand-motion), opacity .32s ease;
}

.cooperation-box.is-opening .demand-intro::after,
.cooperation-box.is-open .demand-intro::after {
    transform: scaleX(1);
    transition-delay: .3s;
}

.cooperation-box.is-closing .demand-intro::after {
    opacity: 0;
    transform: scaleX(.36);
    transition-delay: 0s;
}

@media (max-width: 640px) {
    .cooperation-box::before {
        display: none;
    }

    .cooperation-box .cooperation {
        filter: none;
        clip-path: inset(0 0 0 0 round 0);
        transform: translate3d(0, 24px, 0);
        transition:
            opacity .3s ease,
            transform .5s var(--demand-motion);
    }

    .cooperation-box.is-opening .cooperation,
    .cooperation-box.is-open .cooperation {
        transform: translate3d(0, 0, 0);
        filter: none;
        clip-path: inset(0 0 0 0 round 0);
    }

    .cooperation-box.is-closing .cooperation {
        transform: translate3d(0, 18px, 0);
        filter: none;
        clip-path: inset(0 0 0 0 round 0);
    }

    .cooperation-box .demand-intro,
    .cooperation-box .demand-form-wrap {
        transform: translate3d(0, 16px, 0);
    }

    .cooperation-box.is-opening .demand-intro,
    .cooperation-box.is-open .demand-intro,
    .cooperation-box.is-opening .demand-form-wrap,
    .cooperation-box.is-open .demand-form-wrap {
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cooperation-box,
    .cooperation-box::before,
    .cooperation-box .cooperation,
    .cooperation-box .cooperation::before,
    .cooperation-box .cooperation-close,
    .cooperation-box .demand-intro,
    .cooperation-box .demand-intro::before,
    .cooperation-box .demand-intro::after,
    .cooperation-box .demand-form-wrap,
    .cooperation-box .demand-form-header,
    .cooperation-box .demand-fields,
    .cooperation-box .demand-section-title,
    .cooperation-box .demand-services,
    .cooperation-box .demand-budget,
    .cooperation-box .demand-verification,
    .cooperation-box .demand-submit {
        clip-path: none !important;
        filter: none !important;
        transform: none !important;
        transition: none !important;
    }
}
