.employment-help-section {
    position: relative;
    overflow: clip;
}

.employment-help-shell {
    position: relative;
}

.employment-help-layout {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(340px, .9fr);
    gap: 36px;
    align-items: center;
    margin-bottom: 28px;
}

.employment-help-copy .premium-title {
    /*max-width: 12ch;*/
    overflow-wrap: break-word;
    hyphens: auto;
}

.employment-help-copy .premium-copy {
    max-width: 640px;
}

.employment-help-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.employment-help-stat {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
}

.employment-help-stat strong {
    display: block;
    margin-bottom: 10px;
    font-family: 'Unbounded', sans-serif;
    font-size: 30px;
    line-height: 1;
    color: #fff;
}

.employment-help-stat:nth-child(2) strong {
    color: var(--owu-orange, #ff9638);
}

.employment-help-stat:nth-child(3) strong {
    color: var(--owu-green, #89e24e);
}

.employment-help-stat span,
.employment-help-panel p,
.employment-help-step p {
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    line-height: 1.7;
}

.employment-help-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.employment-help-visual::before {
    content: '';
    position: absolute;
    inset: 30px 18px 12px 90px;
    border-radius: 40px;
    background: linear-gradient(150deg, rgba(52, 144, 255, .34), rgba(255, 150, 56, .16));
    transform: skewX(-12deg);
}

.employment-help-orbit {
    position: relative;
    width: min(100%, 540px);
    box-sizing: border-box;
    min-height: 440px;
    padding: 32px;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, .08);
    background:
        radial-gradient(circle at top right, rgba(255, 150, 56, .18), transparent 30%),
        linear-gradient(180deg, rgba(7, 17, 31, .94), rgba(4, 9, 21, .98));
    box-shadow: 0 34px 92px rgba(0, 0, 0, .32);
    overflow: hidden;
}

.employment-help-orbit::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: 18px;
    top: 58px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.employment-help-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.employment-help-badge--top {
    top: 24px;
    left: 24px;
}

.employment-help-badge--bottom {
    right: 24px;
    bottom: 26px;
}

.employment-help-photo {
    position: absolute;
    right: 42px;
    bottom: 0;
    width: min(56%, 280px);
    aspect-ratio: 4 / 5;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(52, 144, 255, .08), rgba(255, 255, 255, 0)),
        url('../image/logo/webp/ManInBlack.webp') center top / cover no-repeat;
}

.employment-help-panel {
    position: absolute;
    left: 24px;
    bottom: 34px;
    z-index: 2;
    width: min(62%, 280px);
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
}

.employment-help-panel small {
    display: block;
    margin-bottom: 12px;
    color: var(--owu-blue, #3490ff);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.employment-help-panel p {
    margin: 0;
}

.employment-help-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.employment-help-step {
    position: relative;
    padding: 66px 20px 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
}

.employment-help-step::before {
    content: attr(data-step);
    position: absolute;
    top: 18px;
    left: 20px;
    color: rgba(255, 255, 255, .34);
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    line-height: 1;
}

.employment-help-step h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-size: 19px;
    line-height: 1.35;
}

.employment-help-step p {
    margin: 0;
}

@media screen and (max-width: 1040px) {
    .employment-help-layout,
    .employment-help-track,
    .employment-help-stats {
        grid-template-columns: minmax(0, 1fr);
    }

    .employment-help-copy .premium-title,
    .employment-help-copy .premium-copy {
        max-width: none;
    }
}

@media screen and (max-width: 720px) {
    .employment-help-visual {
        min-height: 460px;
    }

    .employment-help-orbit {
        min-height: 410px;
        padding: 22px;
        border-radius: 28px;
    }

    .employment-help-badge {
        min-height: 40px;
        padding: 0 14px;
        font-size: 10px;
    }

    .employment-help-panel {
        left: 18px;
        right: 18px;
        bottom: 18px;
        width: auto;
    }

    .employment-help-photo {
        right: 22px;
        width: min(58%, 220px);
    }
}

@media screen and (max-width: 520px) {
    .employment-help-visual::before {
        inset: 28px 0 8px 34px;
    }

    .employment-help-orbit::before {
        width: 240px;
        height: 240px;
        right: -12px;
        top: 96px;
    }

    .employment-help-badge--bottom {
        /* left: 18px;
        right: auto;
        bottom: 124px; */
        display: none;
    }

    .employment-help-photo {
        right: 8px;
        width: 60%;
    }

    .employment-help-panel {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 226px;
    }

    .employment-help-step {
        min-height: auto;
    }
}

.contact-prompt-section {
    position: relative;
    overflow: clip;
    padding-top: 0;
}

.contact-prompt-section[data-stage-word] {
    --stage-top: 22px;
    --stage-right: -24px;
}

.contact-prompt-shell,
.contact-prompt-copy,
.contact-prompt-aside,
.contact-prompt-item {
    min-width: 0;
}

.contact-prompt-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .86fr);
    gap: 22px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255, 150, 56, .22), transparent 30%),
        radial-gradient(circle at bottom left, rgba(52, 144, 255, .2), transparent 34%),
        linear-gradient(135deg, #07111f 0%, #0b1830 54%, #08101d 100%);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .3);
    overflow: hidden;
}

.contact-prompt-panel::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 24px;
    pointer-events: none;
}

.contact-prompt-panel::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: -110px;
    top: -110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 226, 0, .18) 0%, rgba(255, 226, 0, 0) 68%);
    pointer-events: none;
}

.contact-prompt-copy {
    position: relative;
    z-index: 1;
}

.contact-prompt-copy .premium-title {
    max-width: 12ch;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.contact-prompt-copy .premium-copy {
    max-width: 56ch;
}

.contact-prompt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.contact-prompt-aside {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    align-content: stretch;
}

.contact-prompt-proof,
.contact-prompt-item {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(14px);
}

.contact-prompt-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--owu-blue, #3490ff);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-prompt-proof strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.05;
}

.contact-prompt-proof p,
.contact-prompt-item p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 15px;
    line-height: 1.7;
}

.contact-prompt-list {
    display: grid;
    gap: 14px;
}

.contact-prompt-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.contact-prompt-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(52, 144, 255, .16);
    color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    line-height: 1;
}

@media screen and (max-width: 1040px) {
    .contact-prompt-panel {
        grid-template-columns: 1fr;
    }

    .contact-prompt-copy .premium-title,
    .contact-prompt-copy .premium-copy {
        max-width: 100%;
    }
}

@media screen and (max-width: 700px) {
    .contact-prompt-panel {
        padding: 22px;
        border-radius: 28px;
    }

    .contact-prompt-proof,
    .contact-prompt-item {
        padding: 18px;
        border-radius: 22px;
    }
}

@media screen and (max-width: 520px) {
    .contact-prompt-section {
        padding-bottom: 72px;
    }

    .contact-prompt-actions {
        gap: 10px;
    }

    .contact-prompt-actions .premium-button {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-prompt-item {
        grid-template-columns: 1fr;
    }
}
