@keyframes modalIn {
    0% {
        opacity: 0;
        transform: scale(.9) translateY(20px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

/* Personal profile: data and Telegram access */
.personal-card--profile {
    max-width: none;
    margin: 0;
    padding: 30px;
    border: 1px solid rgba(27, 58, 104, .05);
    box-shadow: 0 14px 34px rgba(27, 58, 104, .06);
}

.personal-head--profile {
    align-items: center;
    margin-bottom: 24px;
}

.personal-head--profile .personal-title {
    margin: 0;
}

.personal-profile-lead {
    margin: 7px 0 0;
    color: #68778a;
    font-size: 14px;
    line-height: 1.4;
}

.personal-edit-btn,
.personal-cancel-btn {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .2s, background-color .2s;
}

.personal-edit-btn {
    background: #eef3f6;
    color: #1b3a68;
}

.personal-edit-btn:hover,
.personal-cancel-btn:hover {
    transform: translateY(-1px);
}

.personal-row--profile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.personal-field {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.personal-field--full {
    margin-top: 16px;
}

.personal-field__label {
    color: #1b3a68;
    font-size: 13px;
    font-weight: 700;
}

.personal-field__note {
    color: #7d8997;
    font-size: 12px;
    line-height: 1.35;
}

.personal-card--profile .personal-input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-color: rgba(27, 58, 104, .12);
}

.personal-card--profile .personal-input:disabled {
    color: #1b3a68;
    opacity: 1;
}

.personal-card--profile .personal-form.is-editing .personal-input:not(:disabled) {
    border-color: rgba(27, 58, 104, .3);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(27, 58, 104, .05);
}

.personal-form-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.personal-form-actions[hidden] {
    display: none;
}

.personal-form-actions .personal-cta {
    width: auto;
    min-width: 170px;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: #ff5b1c;
    box-shadow: 0 10px 24px rgba(255, 91, 28, .18);
}

.personal-cancel-btn {
    background: transparent;
    color: #6f7c8d;
}

.personal-hint {
    min-height: 18px;
    margin-top: 10px;
}

.personal-hint--success {
    color: #338144;
}

.personal-hint--error {
    color: #cf4416;
}

.personal-telegram {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(27, 58, 104, .1);
    border-radius: 18px;
    background: #f3f6f8;
}

.personal-telegram__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    background: #1b3a68;
    color: #fff;
}

.personal-telegram__copy h2 {
    margin: 0;
    color: #1b3a68;
    font-size: 18px;
    line-height: 1.2;
}

.personal-telegram__status {
    margin: 6px 0 0;
    color: #657488;
    font-size: 13px;
    line-height: 1.4;
}

.personal-telegram .personal-auth {
    min-width: 190px;
    min-height: 44px;
    justify-content: center;
    border: 0;
    background: #ff5b1c;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .personal-card--profile {
        margin: 0 14px;
        padding: 20px 16px;
        border-radius: 18px;
    }

    .personal-head--profile {
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .personal-head--profile .personal-title {
        font-size: 25px;
    }

    .personal-profile-lead {
        max-width: 220px;
        font-size: 12px;
    }

    .personal-edit-btn {
        min-height: 36px;
        padding: 0 13px;
        font-size: 12px;
    }

    .personal-row--profile {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .personal-field--full {
        margin-top: 12px;
    }

    .personal-card--profile .personal-input {
        min-height: 44px;
        font-size: 14px;
    }

    .personal-form-actions {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px;
        margin-top: 14px;
    }

    .personal-form-actions .personal-cta {
        width: 100%;
        min-width: 0;
    }

    .personal-telegram {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        margin-top: 18px;
        padding: 14px;
    }

    .personal-telegram__icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .personal-telegram__copy h2 {
        font-size: 15px;
    }

    .personal-telegram__status {
        font-size: 12px;
    }

    .personal-telegram .personal-auth {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        min-height: 42px;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes resumePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 91, 28, .45)
    }

    40% {
        transform: scale(1.06);
        box-shadow: 0 0 0 14px transparent
    }

    to {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes resumeNudge {

    0%,
    90%,
    to {
        transform: translateX(0)
    }

    92% {
        transform: translateX(-3px)
    }

    94% {
        transform: translateX(3px)
    }

    96% {
        transform: translateX(-2px)
    }

    98% {
        transform: translateX(2px)
    }
}

@keyframes vmPulse {
    0% {
        transform: scale(.9);
        opacity: .9
    }

    70% {
        transform: scale(1.35);
        opacity: 0
    }

    to {
        opacity: 0
    }
}

@keyframes successPop {
    0% {
        transform: scale(.7);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes skeleton-shimmer {
    to {
        transform: translateX(100%)
    }
}

@keyframes subFade {
    0% {
        transform: translateY(20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes skeleton-pulse {
    0% {
        background-position: 200%0
    }

    to {
        background-position: -200%0
    }
}

@keyframes dubbingModalIn {
    0% {
        opacity: 0;
        transform: scale(.95) translateY(20px)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-family);
    background: var(--bg-main);
    color: var(--color-primary);
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

button {
    border: 0;
    background: 0 0;
    cursor: pointer;
    font-family: inherit
}

.modal__field input::placeholder {
    color: #999
}

@media (max-width:1400px) {
    .hero {
        padding: 40px 80px 60px
    }

    .header {
        gap: 100px
    }

    .hero__image img {
        width: 450px
    }

    .hero__arrow--prev {
        left: 20px
    }

    .hero__arrow--next {
        right: 20px
    }

    .cta,
    .features,
    .footer,
    .personal,
    .testimonials {
        padding-left: 80px;
        padding-right: 80px
    }
}

@media (max-width:1200px) {
    .hero__container {
        flex-direction: column;
        align-items: center;
        gap: 40px
    }

    .hero__content {
        text-align: center
    }

    .hero__feature {
        justify-content: center
    }

    .hero__image img {
        width: 500px
    }

    .features__container {
        flex-direction: column;
        align-items: center
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .hero {
        padding: 24px 20px 40px
    }

    .header {
        justify-content: center;
        gap: 0
    }

    .header__nav {
        display: none
    }

    .hero__content {
        width: 100%
    }

    .hero__title {
        font-size: 36px
    }

    .hero__subtitle {
        line-height: 1.5
    }

    .hero__feature-box p,
    .hero__subtitle {
        width: 100%;
        font-size: 16px
    }

    .hero__image img {
        width: 100%;
        max-width: 400px
    }

    .hero__arrow {
        width: 36px;
        height: 36px
    }

    .hero__arrow--prev {
        left: 10px
    }

    .hero__arrow--next {
        right: 10px
    }

    .cta,
    .footer,
    .personal {
        padding-left: 20px;
        padding-right: 20px
    }

    .personal__title {
        font-size: 28px
    }

    .features {
        padding: 40px 20px 60px
    }

    .features__title {
        font-size: 32px;
        margin-bottom: 40px
    }

    .features__photo img {
        width: 280px;
        height: 280px
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .feature-item__text {
        max-width: 100%
    }

    .btn-white {
        font-size: 18px;
        padding: 16px 32px
    }

    .divider {
        margin-bottom: -80px
    }

    .divider__wave--desktop {
        display: none
    }

    .divider__mobile {
        display: block;
        position: relative;
        height: 400px;
        margin-top: -40px;
        will-change: transform;
        transform: translateZ(0)
    }

    .divider__wave--mobile-1,
    .divider__wave--mobile-2 {
        position: absolute;
        width: 300%;
        height: 250px;
        will-change: transform;
        transform-origin: center center;
        backface-visibility: hidden
    }

    .divider__wave--mobile-1 {
        top: -96px;
        left: -42%;
        transform: rotate(-35deg) translateZ(0)
    }

    .divider__wave--mobile-2 {
        top: 0;
        left: -90%;
        transform: rotate(30deg) translateZ(0)
    }

    .divider__text {
        font-size: 14px
    }

    .personal__content {
        flex-direction: column;
        text-align: center
    }

    .personal__quote {
        text-align: left
    }

    .personal__image img {
        width: 200px;
        height: 200px
    }

    .testimonials {
        padding: 60px 20px 80px
    }

    .testimonials__title {
        font-size: 28px
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto
    }

    .testimonial--featured {
        margin-top: 40px
    }

    .divider__line {
        height: 70px;
        width: calc(100% - 40px)
    }

    .marquee__text {
        font-size: 14px;
        letter-spacing: 2px
    }

    .testimonials__grid {
        display: flex;
        flex-direction: column
    }

    .testimonial--featured {
        order: -1
    }

    .testimonials__title {
        margin-bottom: 10px
    }

    .registration__container {
        max-width: 400px;
        margin: 0 auto
    }
}

.video-wrapper video {
    width: 100%;
    height: auto
}

@media (max-width:768px) {
    .resume-payment {
        right: 0;
        left: 0;
        bottom: 0;
        border-radius: 0;
        text-align: center
    }

    .sub-modal {
        align-items: flex-end
    }

    .sub-modal__content,
    .sub-step {
        display: flex;
        flex-direction: column
    }

    .sub-modal__content {
        width: 100%;
        height: 100%;
        max-width: none;
        border-radius: 0;
        padding: 24px 18px 28px;
        overflow: auto;
        animation: modalUp .28s ease
    }

    .sub-step {
        flex: 1;
        justify-content: center;
        align-items: center;
        text-align: center
    }

    .sub-iframe {
        height: 100%;
        min-height: 500px;
        flex: 1
    }

    @keyframes modalUp {
        0% {
            transform: translateY(100%)
        }

        to {
            transform: translateY(0)
        }
    }
}

.consent__hint ol {
    margin: 8px 0 0;
    padding-left: 18px
}

.consent__hint a {
    color: #ff5b1c;
    text-decoration: underline
}

.sessions__intro h1 {
    font-size: 60px;
    /* margin-bottom: 10px; */
    color: #000
}

.session-card:hover .session-card__thumb img,
.session-card:hover img {
    transform: scale(1.06)
}

.video-description h3 {
    color: #000;
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    padding-bottom: 20px
}

.video-box ul {
    list-style: none;
    margin: 12px 0 0;
    padding-left: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .95)
}

.video-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff
}

@media (min-width:769px) {
    .mobile-bottom-nav {
        display: none
    }
}

@media (max-width:768px) {

    .header__nav,
    .sessions__sidebar {
        display: none !important
    }

    .content {
        padding-bottom: 88px
    }
}

.mobile-nav__item.active .mobile-nav__icon-wrap path {
    /* stroke: #ff5e1f; */
    fill: #ff5e1f;
}

.session-card__lock svg {
    width: 32px;
    height: 32px;
    display: block
}

@media (max-width:900px) {
    .session-card {
        min-width: 180px;
        width: 180px
    }

    .session-card__thumb {
        height: 100px
    }
}

.testimonial__text>span {
    overflow: hidden
}

#castingTrack {
    /* min-height: 360px; */
    position: relative;
}

.casting-viewport {
    position: relative;
    min-height: 360px
}

.casting-empty {
    /* position: absolute; */
    /* margin: 0 auto; */
    display: block;
    inset: 0;
    display: flex;
    padding: 18px;
    transition: opacity .25s ease, transform .25s ease;
    opacity: 0;
    transform: scale(.98);
    pointer-events: none;
    justify-content: center;
    align-items: flex-start
}

.casting-empty:not([hidden]) {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto
}

.casting-empty__card {
    z-index: 99999;
    width: 100%;
    max-width: 360px;
    min-height: 488px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 34px 28px;
    border-radius: 28px;
    border: 1px solid rgba(27, 58, 104, .14);
    background: linear-gradient(180deg, rgba(255, 255, 255, .92)0, rgba(245, 248, 250, .92) 100%);
    box-shadow: 0 18px 40px rgba(11, 32, 64, .1);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.casting-empty__card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at top, rgba(255, 91, 28, .12), transparent 45%);
    pointer-events: none
}

.casting-empty__badge,
.casting-empty__icon {
    align-items: center;
    justify-content: center;
    z-index: 1
}

.casting-empty__badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 91, 28, .1);
    color: #ff5b1c;
    border: 1px solid rgba(255, 91, 28, .18);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em
}

.casting-empty__icon {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    display: flex;
    color: #1b3a68;
    background: rgba(27, 58, 104, .06);
    border: 1px solid rgba(27, 58, 104, .1)
}

.casting-empty__title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    color: #1b3a68;
    z-index: 1
}

.casting-empty__text {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(27, 58, 104, .72);
    z-index: 1
}

.casting-empty__link {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: #ff5b1c;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(255, 91, 28, .22);
    transition: transform .2s ease, box-shadow .2s ease;
    z-index: 1
}

.casting-empty__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(255, 91, 28, .28)
}

.hero__dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: rgba(27, 58, 104, .12);
    cursor: pointer;
    transition: all 250ms;
    box-shadow: 0 4px 12px rgba(27, 58, 104, .06)
}

.hero__dots button[aria-selected=true] {
    background: var(--color-accent);
    transform: scale(1.2);
    box-shadow: 0 8px 24px rgba(255, 91, 28, .18)
}

@media (max-width:1200px) {
    .hero__slide {
        flex-direction: column;
        gap: 20px;
        padding: 28px
    }

    .hero__image img {
        width: 420px;
        max-width: 100%
    }
}

@media (max-width:768px) {
    .hero__slide {
        padding: 18px
    }

    .hero__content {
        text-align: center;
        width: 100%
    }

    .hero__image img {
        width: 100%;
        max-width: 360px
    }
}

section {
    scroll-margin-top: 90px;
}

#modalPlayerOverlay.active {
    opacity: 1;
    pointer-events: auto
}

.header__link:hover::after {
    width: 100%
}

:root {
    --bg-main: #D7E2E8;
    --bg-light: #F5F8FA;
    --color-primary: #1B3A68;
    --color-accent: #FF5B1C;
    --color-white: #FFFFFF;
    --font-family: 'Roboto', sans-serif;
    --radius-xl: 24px;
    --radius-lg: 14px;
    --shadow-1: 0 18px 40px rgba(11, 32, 64, 0.12);
    --shadow-2: 0 8px 20px rgba(11, 32, 64, 0.06)
}

.hero {
    width: 100%;
    CONTAIN-INTRINSIC-BLOCK-SIZE: AUTO 100PX;
    min-height: 100%;
    background: var(--bg-main);
    position: relative;
    /* margin-top: 20px; */
}

.accent-color {
    color: var(--color-accent)
}

.header-scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08)
}

.is-sticky,
.site-header {
    top: 0;
    background: rgba(215, 226, 232, .85);
    backdrop-filter: blur(12px)
}

.site-header {
    position: relative;
    display: flex;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 12px clamp(20px, 4vw, 58px);
    gap: clamp(24px, 5vw, 88px);
    box-sizing: border-box
}

.is-sticky {
    position: sticky;
    z-index: 9999
}

.site-header__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px
}

.header__logo img {
    width: 58px;
    height: 44px;
    object-fit: contain;
    margin-right: 0
}

.header__nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: clamp(16px, 3vw, 52px)
}

.header__link {
    position: relative;
    color: var(--color-primary);
    font-size: clamp(13px, 1.25vw, 17px);
    font-weight: 500;
    white-space: nowrap;
    transition: opacity .3s
}

.header__link:hover {
    opacity: .7
}

.header__link--active {
    color: #ff5b1c;
    font-weight: 600
}

.header__btn {
    padding: 10px 26px 9px;
    border: 1.35px solid var(--color-primary);
    border-radius: 60px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    white-space: nowrap;
    transition: all .3s
}

.header__btn:hover {
    background: var(--color-primary);
    color: var(--color-white)
}

.header__mobile {
    display: none
}

@media (max-width:768px) {
    .header__mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: calc(12px + env(safe-area-inset-top)) 16px 12px;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(215, 226, 232, .95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 10000;
        transform: translateZ(0);
        will-change: transform
    }

    .site-header {
        padding-bottom: 0
    }

    .header__logo,
    .header__nav {
        display: none !important
    }

    .content {
        padding-bottom: 88px
    }

    .header__mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: opacity .3s
    }

    .header__mobile-logo:hover {
        opacity: .7
    }

    .header__mobile-actions {
        display: flex;
        min-width: 0;
        margin-left: auto;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    .header__mobile-catalog {
        display: inline-flex;
        min-height: 38px;
        padding: 0 14px;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        border: 1.5px solid var(--color-primary);
        border-radius: 60px;
        background: rgba(255, 255, 255, .55);
        color: var(--color-primary);
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        text-decoration: none;
        transition: background .25s ease, color .25s ease;
    }

    .header__mobile-catalog:hover {
        background: var(--color-primary);
        color: #fff;
    }

    .header__mobile-btn {
        padding: 10px clamp(14px, 4.5vw, 24px);
        border-radius: 60px;
        background: var(--color-primary);
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        transition: opacity .3s
    }

    .header__mobile-btn:hover {
        opacity: .8
    }

    @media (max-width: 380px) {
        .header__mobile {
            padding-inline: 12px;
        }

        .header__mobile-actions {
            gap: 6px;
        }

        .header__mobile-catalog {
            min-height: 36px;
            padding-inline: 11px;
            font-size: 12px;
        }

        .header__mobile-btn {
            padding: 9px 13px;
            font-size: 12px;
        }
    }

    .site-header {
        padding-top: 64px
    }
}

.hero__container {
    display: flex;
    position: relative;
    justify-content: space-between;
    gap: 40px;
    max-width: 1160px;
    margin: 0 auto;
    height: 700px
}

.container__block {
    max-width: 1160px;
    margin: 0 auto;
    background-color: #fff !important;
    border-radius: 40px;
    box-sizing: border-box
}

.hero__content {
    width: 581px;
    flex-shrink: 0
}

.hero__feature-box p,
.hero__subtitle,
.hero__title {
    color: var(--color-primary)
}

.hero__title {
    font-size: 68.74px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1
}

.hero__subtitle {
    width: 556px;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 29.48px;
    margin-bottom: 35px
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px
}

.hero__feature-line {
    width: 8px;
    height: 105px;
    border-radius: 4px;
    flex-shrink: 0
}

.hero__feature-box {
    padding: 18px;
    border: 1.76px solid var(--color-primary);
    border-radius: 10.58px
}

.hero__feature-box p {
    width: 502px;
    font-size: 20px;
    font-weight: 600;
    line-height: 27px
}

.hero__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 17.63px 35.25px;
    background: var(--color-accent);
    border-radius: 114.57px;
    color: var(--color-white);
    font-size: 21.15px;
    font-weight: 500;
    transition: transform .3s, box-shadow .3s
}

.hero__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 91, 28, .3)
}

.hero__image {
    flex-shrink: 0
}

.hero__image img {
    width: 550px;
    height: auto;
    object-fit: contain
}

.hero__arrow {
    position: absolute;
    bottom: 15px;
    transform: translateY(-50%);
    border: 1px solid var(--color-accent);
    font-weight: 700;
    font-size: 30px
}

.hero__arrow:hover {
    transform: translateY(-50%) scale(1.1)
}

.hero__arrow--prev {
    right: 160px
}

.hero__arrow--next {
    right: 90px
}

.features {
    background: var(--bg-main);
    position: relative
}

.features__title {
    font-size: 58px;
    font-weight: 500;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 80px
}

.features__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1160px;
    margin: 0 auto
}

.features__photo {
    flex-shrink: 0
}

.features__photo img {
    width: 360px;
    height: 360px;
    border-radius: 40px;
    border: 4px solid var(--color-primary);
    object-fit: cover
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0
}

.feature-item__icon {
    width: 68px;
    height: 68px;
    background: var(--color-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.feature-item__icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1)
}

.feature-item__content {
    padding-left: 16px;
    padding-right: 16px
}

.feature-item__title {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 10px
}

.feature-item__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--color-primary);
    max-width: 260px
}

.features__cta {
    text-align: center;
    margin-top: 60px
}

.btn-white {
    padding: 22px 44px;
    background: var(--color-white);
    border-radius: 143px;
    color: var(--color-accent);
    font-size: 26px
}

.btn-orange-outline:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.btn-orange-outline:hover,
.btn-primary:hover,
.btn-white:hover {
    transform: translateY(-3px)
}

.btn-white:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.btn-orange-outline,
.btn-primary,
.btn-white {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    transition: transform .3s, box-shadow .3s
}

.btn-orange-outline {
    padding: 22px 44px;
    background: var(--color-white);
    border-radius: 143px;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 26px
}

.btn-primary {
    padding: 17px 35px;
    background: var(--color-accent);
    border-radius: 100px;
    color: var(--color-white);
    /* display: none; */
    font-size: 18px
}

.btn-primary:hover {
    box-shadow: 0 10px 30px rgba(255, 91, 28, .3)
}

.btn-primary--large {
    padding: 20px 48px;
    font-size: 20px
}

.btn-outline,
.modal__field input,
.personal__quote p {
    font-size: 16px;
    color: var(--color-primary)
}

.personal__quote p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.5
}

.btn-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    border: 2px solid var(--color-primary);
    border-radius: 100px;
    font-weight: 500;
    transition: all .3s
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white)
}

.divider {
    position: relative;
    padding: 0;
    overflow: hidden;
    width: 100%;
    z-index: 10;
    margin-bottom: -60px;
    top: -250px
}

.divider__wave {
    width: 130%;
    height: 250px;
    display: block;
    margin-left: -15%;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    z-index: 1
}

.divider__wave--desktop {
    display: block
}

.divider__mobile {
    display: none
}

.divider__text {
    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 600;
    fill: var(--color-white);
    dominant-baseline: middle;
    text-anchor: middle;
    text-transform: lowercase
}

.personal {
    border-radius: 40px;
    background: var(--bg-light);
    padding: 100px 140px 80px;
    max-width: 1200px;
    margin: 0 auto -186px;
    position: relative;
    top: -197px
}

.personal__container {
    max-width: 1000px;
    margin: 0 auto
}

.personal__title {
    font-size: 48px;
    font-weight: 500;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2
}

.personal__title--accent {
    color: var(--color-accent)
}

.personal__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px
}

.dub-card__contact-btn svg,
.personal__image {
    flex-shrink: 0
}

.personal__image img {
    width: 297px;
    height: 297px;
    border-radius: 24px;
    object-fit: cover
}

.personal__info {
    max-width: 420px
}

.personal__text {
    font-size: 21px;
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: 24px
}

.personal__quote {
    margin-bottom: 32px;
    display: flex;
    gap: 22px
}

.testimonials {
    background: #00000000;
    padding: 80px 140px 100px
}

.testimonials__container {
    max-width: 1000px;
    margin: 0 auto
}

.testimonials__title {
    font-size: 48px;
    font-weight: 500;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 48px
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 48px
}

.testimonial {
    background: var(--color-white);
    border-radius: 20px;
    border: 1.05px solid #1b3a68;
    padding: 24px;
    position: relative
}

.testimonial__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d7e2e8;
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    padding: 2px 16px;
    font-weight: 500;
    color: #1b3a68;
    white-space: nowrap;
    text-align: center;
    font-size: .9em
}

.testimonial__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.testimonial__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover
}

.testimonial__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-accent)
}

.testimonial__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-primary);
    display: -webkit-box;
    -webkit-line-clamp: 14;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: grid-template-rows .45s cubic-bezier(.4, 0, .2, 1);
    grid-template-rows: 1fr;
    cursor: pointer
}

.testimonial__text.is-collapsed {
    grid-template-rows: 0fr
}

.testimonial__text.is-open {
    -webkit-line-clamp: unset;
    max-height: none
}

.testimonials__cta {
    text-align: center
}

.modal,
.modal__overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.modal {
    position: fixed;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center
}

.modal.active {
    display: flex
}

.modal__overlay {
    position: absolute;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(4px)
}

.modal__content {
    position: relative;
    background: var(--color-white);
    border-radius: 24px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    animation: modalIn .3s ease
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all .3s
}

.modal__close:hover {
    border-color: var(--color-primary);
    color: var(--color-primary)
}

.modal__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.3
}

.modal__title--success {
    color: var(--color-accent)
}

.modal__field {
    margin-bottom: 16px
}

.modal__field input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: var(--font-family);
    transition: border-color .3s;
    background: #f2f3f4
}

.modal__field input:focus {
    outline: 0;
    border-color: var(--color-accent)
}

.modal__btn {
    width: 100%;
    padding: 16px;
    background: var(--color-accent);
    border: 0;
    border-radius: 100px;
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    margin-top: 8px
}

.modal__btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 91, 28, .3)
}

.modal__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-primary);
    text-align: center
}

.modal__success {
    text-align: center;
    padding: 20px 0
}

@media (max-width:1400px) {
    .hero {
        padding: 40px 80px 60px
    }

    .header {
        gap: 100px
    }

    .hero__image img {
        width: 450px
    }

    .hero__arrow--prev {
        left: 20px
    }

    .hero__arrow--next {
        right: 20px
    }

    .cta,
    .features,
    .footer,
    .personal,
    .testimonials {
        padding-left: 80px;
        padding-right: 80px
    }
}

@media (max-width:1200px) {
    .hero__container {
        flex-direction: column;
        align-items: center;
        gap: 40px
    }

    .hero__content {
        text-align: center
    }

    .hero__feature {
        justify-content: center
    }

    .hero__image img {
        width: 500px
    }

    .features__container {
        flex-direction: column;
        align-items: center
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .hero {
        padding: 24px 20px 40px
    }

    .header {
        justify-content: center;
        gap: 0
    }

    .header__nav {
        display: none
    }

    .hero__content {
        width: 100%
    }

    .hero__title {
        font-size: 36px
    }

    .hero__subtitle {
        line-height: 1.5
    }

    .hero__feature-box p,
    .hero__subtitle {
        width: 100%;
        font-size: 16px
    }

    .hero__image img {
        width: 100%;
        max-width: 400px
    }

    .hero__arrow {
        width: 36px;
        height: 36px
    }

    .hero__arrow--prev {
        left: 10px
    }

    .hero__arrow--next {
        right: 10px
    }

    .cta,
    .footer,
    .personal {
        padding-left: 20px;
        padding-right: 20px
    }

    .personal__title {
        font-size: 28px
    }

    .features {
        padding: 40px 20px 60px
    }

    .features__title {
        font-size: 32px;
        margin-bottom: 40px
    }

    .features__photo img {
        width: 280px;
        height: 280px
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .feature-item__text {
        max-width: 100%
    }

    .btn-white {
        font-size: 18px;
        padding: 16px 32px
    }

    .divider {
        margin-bottom: -80px
    }

    .divider__wave--desktop {
        display: none
    }

    .divider__mobile {
        display: block;
        position: relative;
        height: 400px;
        margin-top: -40px;
        will-change: transform;
        transform: translateZ(0)
    }

    .divider__wave--mobile-1,
    .divider__wave--mobile-2 {
        position: absolute;
        width: 300%;
        height: 250px;
        will-change: transform;
        transform-origin: center center;
        backface-visibility: hidden
    }

    .divider__wave--mobile-1 {
        top: -96px;
        left: -42%;
        transform: rotate(-35deg) translateZ(0)
    }

    .divider__wave--mobile-2 {
        top: 0;
        left: -90%;
        transform: rotate(30deg) translateZ(0)
    }

    .divider__text {
        font-size: 14px
    }

    .personal__content {
        flex-direction: column;
        text-align: center
    }

    .personal__quote {
        text-align: left
    }

    .personal__image img {
        width: 200px;
        height: 200px
    }

    .testimonials {
        padding: 60px 20px 80px
    }

    .testimonials__title {
        font-size: 28px
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto
    }

    .testimonial--featured {
        margin-top: 40px
    }

    .divider__line {
        height: 70px;
        width: calc(100% - 40px)
    }

    .marquee__text {
        font-size: 14px;
        letter-spacing: 2px
    }

    .testimonials__grid {
        display: flex;
        flex-direction: column
    }

    .testimonial--featured {
        order: -1
    }

    .testimonials__title {
        margin-bottom: 10px
    }

    .registration__container {
        max-width: 400px;
        margin: 0 auto
    }
}

.registration,
.registration__container {
    display: flex;
    justify-content: center;
    align-items: center
}

.registration {
    padding: 100px 20px;
    background: var(--bg-main);
    min-height: calc(100vh - 100px)
}

.registration__container {
    width: 600px;
    height: 400px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    flex-direction: column;
    padding: 40px;
    text-align: center
}

.registration__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px
}

.registration__form {
    display: flex;
    flex-direction: column
}

.videos {
    padding: 50px 20px;
    background: var(--bg-main)
}

.videos__container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    padding: 40px
}

.videos__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 30px;
    text-align: center
}

.videos__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center
}

.video-block {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    text-align: center
}

.video-block__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px
}

.video-block__description {
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 15px;
    line-height: 1.5
}

.video-block__price {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 15px
}

.video-block__btn {
    width: 100%;
    padding: 12px;
    background: var(--color-accent);
    border: 0;
    border-radius: 50px;
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s
}

.video-block__btn:hover {
    background: #e54a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 91, 28, .3)
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto
}

.thank-you-block {
    background-color: #e6f4ea;
    border: 2px solid #4caf50;
    color: #2e7d32;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.sub-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999
}

.sub-modal.active {
    display: flex
}

.sub-modal.is-casting-details {
    z-index: 100500;
}

.sub-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6)
}

.sub-modal__content {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 35px 24PX;
    width: 439PX;
    max-width: 95%;
    text-align: center
}

.sub-modal__close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: 0 0;
    border: 0;
    font-size: 22px;
    cursor: pointer
}

.sub-step {
    animation: fade .35s ease
}

.sub-title {
    margin-bottom: 20px;
    text-align: left
}

.sub-desc {
    color: #666;
    margin-bottom: 20px
}

.sub-step input {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid #ddd
}

.sub-next,
.sub-next-plan {
    width: 100%;
    padding: 14px;
    border: 0;
    border-radius: 14px;
    background: #ff5b1c;
    color: #fff;
    cursor: pointer
}

.sub-back {
    background: 0 0;
    border: 0;
    font-size: 14px;
    cursor: pointer;
    color: #888;
    margin-bottom: 15px;
    display: inline-block;
    transition: .2s
}

.site-footer__list a:hover,
.sub-back:hover {
    color: #ff5b1c
}

.form-error {
    text-align: left;
    margin-bottom: 10px;
    color: #e53935;
    font-size: 14px;
    min-height: 0
}

.subscription-widget {
    font-size: 16px
}

.subscription-widget .sub-title {
    font-size: 1.375em;
    margin-bottom: 1.25em
}

.subscription-widget .sub-desc {
    font-size: .875em;
    margin-bottom: 1.25em
}

.subscription-widget .sub-step input,
.subscription-widget .sub_input {
    font-size: .875em;
    padding: .875em;
    margin-bottom: .75em;
    border-radius: .75em
}

.subscription-widget .sub-next,
.subscription-widget .sub-next-plan {
    font-size: .875em;
    padding: .875em;
    border-radius: .875em
}

.subscription-widget .sub-back {
    font-size: .875em;
    margin-bottom: 1em
}

.subscription-widget .form-error {
    font-size: .8125em;
    margin-bottom: .625em;
}

.subscription-widget .sub-plans {
    gap: .75em;
    margin-bottom: 1.25em
}

.subscription-widget .submodal-plan-card {
    padding: .56em 1.25em;
    border-radius: 1.25em
}

.subscription-widget .submodal-plan-name {
    font-size: .75em;
    padding: .125em .625em;
    border-radius: 1.5625em
}

.subscription-widget .submodal-plan-price {
    font-size: 2em;
    margin-top: .25em
}

.subscription-widget .submodal-plan-small {
    font-size: .9375em
}

.subscription-widget .promo-box {
    margin: .875em 0
}

.subscription-widget .promo-row {
    gap: .5em
}

.subscription-widget .promoApplyBtn,
.subscription-widget .promoInput {
    font-size: .875em;
    border-radius: .625em
}

.subscription-widget .promoInput {
    padding: .75em
}

.subscription-widget .promoApplyBtn {
    padding: .75em 1.125em
}

.subscription-widget .promo-status {
    font-size: .8125em
}

.subscription-widget .consent {
    font-size: .875em;
    margin: .75em 0 .5em
}

.subscription-widget .consent__label {
    font-size: 1em;
    padding: .5em 0
}

.subscription-widget .consent__hint {
    padding: .25em;
    gap: 1.25em;
    border-radius: .625em;
    font-size: .8125em
}

.subscription-widget .info_consent {
    font-size: .725em;
    margin: .625em auto 1.5625em
}

.subscription-widget .loader-wrap {
    padding: 3.75em 0
}

.subscription-widget .loader {
    width: 2.75em;
    height: 2.75em
}

.subscription-widget .sub-iframe {
    border-radius: .875em
}

.sub-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: center
}

.submodal-plan-card {
    border: 1px solid #7c7c7c;
    padding: 9px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: .25s;
    overflow: visible;
    position: relative;
    text-align: left
}

.submodal-plan-card.active,
.submodal-plan-card:hover {
    border-color: #ff5b1c;
    background: #fff4ef
}

.consent__hint input[type=checkbox] {
    width: 23px !important;
    height: 23px;
    margin: 0 !important
}

.submodal-plan-name {
    background-color: #fff;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 25px;
    display: inline-block;
    padding: 2px 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all .25s ease
}

.info_consent {
    width: 98%;
    margin: 10px auto 25px;
    text-align: center;
    font-size: 10px;
    color: #777
}

.submodal-plan-name.active {
    background: var(--color-accent);
    color: #fff
}

.submodal-plan-price {
    color: #000;
    font-size: 32px;
    font-weight: 500;
    margin-top: 4px
}

.submodal-plan-small {
    font-size: 15px;
    color: #888
}

.loader-wrap {
    text-align: center;
    padding: 60px 0
}

.loader {
    margin: auto
}

.sub-iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 14px
}

.payment-modal,
.resume-payment {
    position: fixed;
    z-index: 9999;
    display: none
}

.resume-payment {
    bottom: 20px;
    right: 20px;
    background: #ff5b1c;
    color: #fff;
    padding: 14px 22px;
    border-radius: 40px;
    cursor: pointer;
    animation: resumePulse 2.4s infinite, resumeNudge 6s infinite
}

.payment-modal {
    inset: 0
}

.payment-modal.active {
    display: block
}

.payment-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6)
}

.payment-modal__content {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center
}

.payment-modal__close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #f3f3f3;
    cursor: pointer
}

.payment-modal__loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px
}

.payment-spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid #eee;
    border-top: 4px solid #ff5b1c;
    animation: spin 1s linear infinite
}

.payment-loader-text {
    font-size: 16px;
    color: #333
}

.payment-iframe {
    width: 100%;
    height: 100%;
    border: 0
}

@media (max-width:768px) {
    .resume-payment {
        right: 0;
        left: 0;
        bottom: 0;
        border-radius: 0;
        text-align: center
    }

    .sub-modal {
        align-items: flex-end
    }

    .sub-modal__content,
    .sub-step {
        display: flex;
        flex-direction: column
    }

    .sub-modal__content {
        width: 100%;
        height: 100%;
        max-width: none;
        border-radius: 0;
        padding: 16px 14px 20px;
        overflow: auto;
        animation: modalUp .28s ease
    }

    .sub-step {
        flex: 1;
        justify-content: center;
        align-items: center;
        text-align: center
    }

    .subscription-widget .sub-title {
        font-size: 1.1em;
        margin-bottom: .6em
    }

    .subscription-widget .sub-step input,
    .subscription-widget .sub_input {
        font-size: .8em;
        padding: .65em;
        margin-bottom: .4em;
        border-radius: .6em
    }

    .subscription-widget .sub-next,
    .subscription-widget .sub-next-plan {
        font-size: .85em;
        padding: .7em;
        border-radius: .75em
    }

    .subscription-widget .sub-plans {
        gap: .5em;
        margin-bottom: .75em
    }

    .subscription-widget .submodal-plan-card {
        padding: .4em 1em;
        border-radius: 1em
    }

    .subscription-widget .submodal-plan-price {
        font-size: 1.5em;
        margin-top: .15em
    }

    .subscription-widget .promo-box {
        margin: .4em 0
    }

    .subscription-widget .consent {
        margin: .4em 0 .3em
    }

    .subscription-widget .consent__label {
        padding: .25em 0
    }

    .subscription-widget .info_consent {
        margin: .3em auto .6em;
        font-size: .65em
    }

    .sub-iframe {
        height: 100%;
        min-height: 500px;
        flex: 1
    }

    @keyframes modalUp {
        0% {
            transform: translateY(100%)
        }

        to {
            transform: translateY(0)
        }
    }
}

.consent {
    margin: 12px 0 8px;
    text-align: left;
    font-size: 14px
}

.consent__label {
    display: block;
    cursor: pointer;
    line-height: 1.3;
    font-size: 12px;
    padding: 8px 0
}

.consent__label input {
    margin-right: 10px;
    vertical-align: middle
}

.sub_input {
    background-color: #f2f3f4
}

.consent__hint,
.success-icon {
    display: flex;
    align-items: center;
    justify-content: center
}

.consent__hint {
    background: #1b3a681a;
    border: 1px solid #0000001a;
    padding: 4px;
    gap: 20px;
    border-radius: 10px;
    color: #6b5b50
}

#consentSummary {
    margin-left: 6px;
    color: #222
}

#step2Error,
.consent__hint {
    margin-top: 8px;
    font-size: 13px
}

#step2Error {
    min-height: 18px;
    color: #ff3b30;
    text-align: left
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    font-size: 36px;
    margin: 0 auto 20px;
    animation: successPop .35s ease
}

.promo-box {
    margin: 14px 0;
    text-align: left
}

.promo-row {
    display: flex;
    gap: 8px
}

.promoInput {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd
}

.promoApplyBtn {
    padding: 12px 18px;
    border: 0;
    border-radius: 10px;
    background: #111;
    color: #fff;
    cursor: pointer;
    height: 40px
}

.promo-status {
    font-size: 13px
}

.promo-status.ok {
    color: #22c55e
}

.promo-status.err {
    color: #ff3b30
}

.subscription__container {
    max-width: 1200px;
    margin: 30px auto 0;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    padding: 40px
}

.sessions {
    padding: 40px 20px
}

.sessions__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px
}

.sessions__sidebar {
    /* min-width: 274px; */
    background: #fff;
    border-radius: 30px;
    padding: 11px;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: min-content
}

.sidebar-item {
    padding: 11px 14px;
    margin: 2px 0;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #000;
    font-weight: 500
}

.sidebar-item.active {
    background: #e7edf2;
    color: var(--color-primary)
}

.sidebar-item:not(.active):hover {
    background: #f0f2f3
}

.unlock-btn,
.video-box h4 {
    text-align: center;
    color: #fff
}

.unlock-btn {
    background: #ff5b1c;
    border: 0;
    padding: 12px;
    border-radius: 16px;
    width: 90%;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    justify-content: center;
    margin: 8px auto 0
}

.unlock-btn-blue {
    background: var(--color-primary)
}

.sessions__content,
.sessions__intro {
    flex: 1;
    background: #fff;
    max-width: 960px;
    min-width: 960px;
    border-radius: 30px;
    padding: 30px 30px;
}

.sessions__intro {
    margin-bottom: 20px
}

.sessions__intro p {
    font-size: 22px;
    color: #000;
    margin-bottom: 30px
}

.sessions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 40px
}

.session-card {
    position: relative;
    cursor: pointer;
    color: #000;
    font-weight: 700
}

.session-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform .6s ease
}

.session-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18)
}

.session-card__title {
    padding: 12px
}

.video-modal {
    display: none;
    align-items: center;
    justify-content: center;
    font-family: Roboto, Arial, sans-serif
}

.video-modal[aria-hidden=false] {
    display: flex
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 1
}

.video-modal__shell {
    position: relative;
    width: min(900px, calc(100% - 40px));
    border-radius: 22px;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #fff, #fffefc);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
    border: 10px solid #fff;
    overflow: hidden;
    z-index: 2
}

.casting-modal__shell {
    width: min(995px, calc(100% - 40px))
}

.video-modal__close {
    position: fixed;
    right: 40px;
    top: 40px;
    background: 0 0;
    border: 0;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    z-index: 10001
}

.video-modal__inner {
    display: flex;
    gap: 20px;
    align-items: flex-start
}

.video-modal__left {
    flex: 1 1 60%;
    min-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 18px
}

.video-preview {
    width: 100%;
    height: 360px;
    border-radius: 16px;
    background: #efefef;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
    cursor: pointer
}

.session-card__thumb img,
.video-preview__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center
}

.video-preview__img {
    transition: transform .45s cubic-bezier(.2, .9, .2, 1), filter .35s
}

.video-preview:hover .video-preview__img {
    transform: scale(1.03);
    filter: brightness(.95) saturate(1.03)
}

.video-preview__play,
.video-preview__play::after {
    cursor: pointer;
    position: absolute;
    border-radius: 50%
}

.video-preview__play {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.95);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    z-index: 3;
    transition: transform .28s cubic-bezier(.2, .9, .2, 1), box-shadow .28s, opacity .28s;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
    background: linear-gradient(180deg, #fff, #fff)
}

.video-preview__play::after {
    content: "";
    inset: -6px;
    background: radial-gradient(circle, rgba(255, 91, 28, .12), rgba(255, 91, 28, 0));
    opacity: 1;
    animation: vmPulse 2.2s infinite
}

.video-description {
    background: #f3f4f6;
    padding: 14px 16px;
    border-radius: 12px;
    color: #222
}

.video-description p {
    margin: 0;
    font-size: 18px;
    color: #555;
    line-height: 1.45
}

.video-description__text-wrap {
    position: relative;
    max-height: 100px;
    overflow: hidden;
    transition: max-height .3s ease;
}

.video-description__text-wrap.clipped {
    cursor: pointer;
}

.video-description__text-wrap.clipped::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28px;
    background: linear-gradient(transparent, #f3f4f6);
    pointer-events: none;
    transition: opacity .3s;
}

.video-description__text-wrap.clipped.expanded::after {
    opacity: 0;
}

.video-description__text-wrap.clipped.expanded {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #c4c4c4 transparent;
}

.video-description__text-wrap.clipped.expanded::-webkit-scrollbar {
    width: 5px;
}

.video-description__text-wrap.clipped.expanded::-webkit-scrollbar-track {
    background: transparent;
}

.video-description__text-wrap.clipped.expanded::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 3px;
}

.video-description__toggle {
    display: none;
    border: none;
    background: none;
    color: #FF5B1C;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0 0;
}

.video-description__toggle:hover {
    text-decoration: underline;
}

.casting-details-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #1b3a68;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.casting-details-link:hover {
    color: #ff5b1c;
}

.casting-details-link[hidden] {
    display: none;
}

.video-full-btn {
    text-transform: uppercase;
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 18px;
    background: 0 0;
    border: 2px solid #2f4669;
    color: #2f4669;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer
}

.video-box,
.video-modal__sidebar {
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box
}

.video-modal__sidebar {
    gap: 16px;
    background-color: #f3f4f6;
    padding: 5px;
    font-weight: 700
}

.video-box {
    cursor: pointer;
    padding: 14px;
    min-height: 150px;
    justify-content: space-between;
    width: 200px
}

.video-box h4 {
    margin: 15px 0 8px
}

.video-box ul li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 8px;
    font-size: 12px
}

.video-box--blue {
    background: #2f4f7d
}

.video-box--orange {
    background: #ff5b1c
}

.video-price {
    font-size: 26px;
    font-weight: 800;
    margin-top: 2px;
    text-align: center;
    position: relative;
    color: #fff
}

.video-box--orange .video-price {
    padding-left: 30px;
    text-align: left
}

.video-price__small {
    font-size: 10px;
    font-weight: 100;
    position: absolute;
    top: -1px;
    left: 100px;
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .95)
}

.video-cta {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    background: rgba(255, 255, 255, .12);
    color: #fff
}

.video-cta--accent {
    background: #fff;
    color: #ff5b1c;
    box-shadow: 0 10px 28px rgba(255, 91, 28, .12)
}

.video-preview {
    position: relative;
    overflow: hidden
}

.video-preview__img,
.video-preview__play,
.video-preview__player {
    transition: opacity .35s ease, transform .4s ease
}

.video-preview.is-loading .video-preview__img,
.video-preview.is-loading .video-preview__play {
    opacity: 0;
    transform: scale(1.05)
}

.video-preview__player {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(.96)
}

.video-preview.is-ready .video-preview__player {
    opacity: 1;
    transform: scale(1)
}

.page-btn,
.pagination {
    display: flex;
    align-items: center;
    justify-content: center
}

.pagination {
    gap: 10px;
    margin-top: 40px
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef1f3;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: .25s
}

.page-btn:hover {
    background: #e3e7ea
}

.page-btn.active {
    background: #ff5b1c;
    color: #fff;
    font-weight: 600
}

.page-btn--arrow {
    background: 0 0;
    border: 1px solid #d7d7d7
}

.page-btn--arrow-next {
    border-color: #ff5b1c;
    color: #ff5b1c
}

.page-dots {
    padding: 0 6px;
    color: #999
}

.lk-alert {
    max-width: 1200px;
    display: flex;
    gap: 16px;
    background: #fff4ef;
    border: 1px solid #ffd2c2;
    border-radius: 12px;
    padding: 20px;
    margin: 30px auto 32px
}

.lk-alert__icon {
    font-size: 28px;
    line-height: 1
}

.lk-alert__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #ff5b1c
}

.lk-alert__text {
    margin: 0 0 8px;
    color: #444;
    font-size: 14px
}

.lk-alert__btn {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 18px;
    background: #ff5b1c;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500
}

.lk-alert__btn:hover {
    opacity: .9
}

.subscription-card {
    background: linear-gradient(180deg, #fff, #fff7f2);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    max-width: 900px
}

.subscription-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px
}

.subscription-title {
    font-size: 24px;
    font-weight: 700
}

.subscription-status {
    font-size: 13px;
    margin-top: 6px;
    padding: 4px 10px;
    border-radius: 30px;
    display: inline-block
}

.subscription-status.active {
    background: #e9fff0;
    color: #1f9d4a
}

.subscription-price {
    font-size: 22px;
    font-weight: 700;
    color: #ff5b1c
}

.subscription-progress {
    margin-bottom: 28px
}

.subscription-progress-label {
    font-size: 14px;
    margin-bottom: 8px
}

.progress-bar {
    height: 10px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff7a3a, #ff5b1c);
    border-radius: 20px
}

.subscription-next {
    font-size: 14px;
    color: #666
}

.subscription-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.sub-btn {
    padding: 13px 18px;
    border-radius: 12px;
    border: 0;
    cursor: pointer;
    font-weight: 500
}

.sub-btn--primary {
    background: #ff5b1c;
    color: #fff
}

.sub-btn--secondary {
    background: #f3f3f3
}

.sub-btn--danger {
    background: #fff1f1;
    color: #d12b2b
}

.cancel-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999
}

.cancel-modal.active {
    display: flex
}

.cancel-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5)
}

.cancel-modal__content {
    position: relative;
    background: #fff;
    padding: 34px;
    border-radius: 18px;
    max-width: 420px;
    width: 95%;
    text-align: center
}

.tg-access-card {
    margin-top: 18px;
    padding: 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #fff6f1);
    text-align: center
}

.tg-loader {
    margin-top: 20px;
    animation: fade .35s ease
}

.tg-spinner {
    margin: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 4px solid #eee;
    border-top-color: #ff5b1c;
    animation: spin 1s linear infinite
}

.tg-loader-text {
    margin-top: 10px;
    font-size: 14px;
    color: #666
}

.tg-result {
    display: none;
    margin-top: 20px;
    animation: fade .4s ease
}

.tg-success-icon {
    font-size: 40px;
    color: #1f9d4a;
    margin-bottom: 8px
}

.tg-success-text {
    font-weight: 600;
    margin-bottom: 10px
}

.tg-link {
    display: inline-block;
    margin-top: 6px;
    color: #ff5b1c;
    font-weight: 600;
    text-decoration: none
}

.tg-status {
    margin-top: 14px;
    font-size: 14px;
    display: none
}

.tg-status.ok {
    color: #1f9d4a
}

.tg-status.err {
    color: #d12b2b
}

.mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 68px;
    background: #fff;
    border-top: 1px solid #e6e9ee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0-8px 24px rgba(0, 0, 0, .08);
    z-index: 9999
}

.mobile-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #222;
    font-size: 11px;
    width: 64px;
    padding-top: 6px
}

.mobile-nav__icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s, transform .18s
}

.mobile-nav__icon {
    width: 20px;
    height: 20px;
    stroke: #6b7280;
    fill: none
}

.mobile-nav__label {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1
}

.mobile-nav__item.active .mobile-nav__icon {
    stroke: #fff
}

@media (min-width:769px) {
    .mobile-bottom-nav {
        display: none
    }
}

@media (max-width:768px) {

    .header__logo,
    .header__nav {
        display: none !important
    }

    .site-header {
        padding: 0 0 5px
    }

    .sessions__sidebar {
        display: none !important
    }

    .content {
        padding-bottom: 88px
    }
}

.sessions-marquee {
    background: var(--bg-main);
    padding: 30px 0 70px;
    overflow: hidden;
    position: relative
}

.sessions-track {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    touch-action: pan-y;
    cursor: grab;
    will-change: transform;
    transition: box-shadow .2s
}



.session-card {
    min-width: 220px;
    height: 240px;
    width: 320px;
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.session-card__thumb {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, #e6edf2, #d7e2e8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.session-card__thumb img {
    transition: transform .6s ease
}

.session-card__title {
    font-size: 20px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.2
}

.session-card__meta {
    font-size: 13px;
    color: #678;
    margin-top: auto
}

.session-card__lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255/18%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .35);
    z-index: 3
}

.sessions-marquee__wrap::after {
    display: block
}

.block-divider {
    position: relative
}

@media (max-width:900px) {
    .session-card {
        min-width: 180px;
        width: 180px
    }

    .session-card__thumb {
        height: 100px
    }
}

.sessions-marquee__wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: hidden
}

.sessions-marquee__wrap::after,
.sessions-marquee__wrap::before {
    content: "";
    position: absolute;
    top: 0;
    width: 300px;
    height: 100%;
    pointer-events: none;
    z-index: 5
}

.sessions-marquee__wrap::before {
    left: 0;
    background: linear-gradient(to right, #d7e2e8 0, rgba(215, 226, 232, .95) 25%, rgba(215, 226, 232, .6) 55%, rgba(215, 226, 232, 0) 100%)
}

.sessions-marquee__wrap::after {
    right: 0;
    background: linear-gradient(to left, #d7e2e8 0, rgba(215, 226, 232, .95) 25%, rgba(215, 226, 232, .6) 55%, rgba(215, 226, 232, 0) 100%)
}

.session-card img {
    pointer-events: none;
    user-drag: none;
    -webkit-user-drag: none
}

.session-card img,
.sessions-track {
    user-select: none;
    -webkit-user-select: none
}

.plans {
    padding: 80px 20px;
    background: #c9d2d8
}

.plans__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.plans__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px
}

.plans__grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap
}

.plan-card {
    background: #f3f3f3;
    transition: .3s
}

.plan-card:hover {
    transform: translateY(-8px)
}

.plan-card__body {
    padding: 30px 30px 40px
}

.plan-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    font-size: 14px
}

.plan-badge span {
    font-size: 28px;
    font-weight: 700
}

.plan-badge--blue {
    background: #213e68
}

.plan-badge--gray {
    background: #e9e9e9;
    color: #ff5b1c
}

.plan-badge--orange {
    background: #ff5b1c
}

.plan-price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px
}

.plan-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 22px
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left
}

.plan-list li,
.video-box h4 {
    font-size: 14px
}

.plan-list li,
.pricing-item__list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative
}

.plan-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1b3a68;
    font-weight: 700
}

.plan-btn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s
}

.plan-btn--outline {
    background: #fff;
    border: 2px solid #ff5b1c;
    color: #ff5b1c
}

.plan-btn--outline:hover,
.plan-btn--primary {
    background: #ff5b1c;
    color: #fff
}

.plan-btn--primary {
    border: 0
}

.plan-btn--primary:hover {
    opacity: .9
}

.pricing-section {
    padding: 80px 20px;
    height: 100vh
}

.pricing-section__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.pricing-section__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px
}

#modalPlayerOverlay,
.pricing-grid {
    display: flex;
    justify-content: center
}

.pricing-grid {
    gap: 40px;
    flex-wrap: wrap
}

.pricing-item {
    position: relative;
    width: 300px;
    background: #fff;
    border-radius: 26px;
    padding-top: 50px;
    transition: .3s
}

.pricing-item:hover {
    transform: translateY(-8px)
}

.pricing-item__inner {
    padding: 30px 20px 40px
}

.pricing-item__badge,
.pricing-item__list li {
    display: flex;
    align-items: center;
    font-size: 14px
}

.pricing-item__badge {
    position: absolute;
    top: -49px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    border: 8px solid var(--bg-main);
    z-index: 555
}

.pricing-item__badge span {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: -5px
}

.pricing-item__badge--blue {
    background: #213e68
}

.pricing-item__badge--gray {
    background: #fff;
    color: #ff5b1c
}

.pricing-item__badge--orange {
    background: #ff5b1c
}

.pricing-item__price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000
}

.pricing-item__sub {
    font-size: 14px;
    margin-bottom: 22px;
    color: #000
}

.pricing-item__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left
}

.pricing-item__list li {
    gap: 10px;
    font-weight: 700
}

.pricing-item__list li::before {
    content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: #1b3a68;
    -webkit-mask: url(/static/img/check.svg)no-repeat center;
    mask: url(/static/img/check.svg)no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain
}

.pricing-item__btn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s
}

.pricing-item__btn--outline {
    background: #fff;
    border: 2px solid #ff5b1c;
    color: #ff5b1c
}

.pricing-item__btn--outline:hover,
.pricing-item__btn--primary {
    background: #ff5b1c;
    color: #fff
}

.pricing-item__btn--primary {
    border: 0
}

#modalPlayerOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 99999;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: .25s
}

.video-modal--player {
    position: fixed;
    inset: 0;
    z-index: 9999
}

.modal-player-shell {
    width: 90vw;
    max-width: 1100px;
    transform: translateY(40px) scale(.96);
    transition: .25s cubic-bezier(.2, .8, .2, 1)
}

#modalPlayerOverlay.active .modal-player-shell {
    transform: translateY(0) scale(1)
}

.modal-player-shell .player-wrapper {
    width: 100%;
    margin: 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3)
}

.castings-hero {
    padding: 46px 0 0px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center
}

.castings-cta {
    margin-top: auto;
    padding: 20px 0 30px;
    width: 100%;
    text-align: center
}

.casting-subscription {
    width: 300px
}

.castings-hero h2 {
    margin: 0;
    font-size: 60px;
    color: #123456;
    font-weight: 800
}

.casting-thumb img {
    transform-origin: center center;
    will-change: transform;
    transition: transform 1000ms cubic-bezier(.2, .9, .25, 1);
    width: 100%;
    height: 107%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    pointer-events: none
}

.casting-card:focus-within .casting-thumb img,
.casting-card:hover .casting-thumb img {
    transform: scale(1.08)
}

.casting-card.is-touch .casting-thumb img {
    transform: scale(1.08)
}

.castings-hero .subtitle {
    margin-top: 21px;
    color: #23415f;
    font-size: 32px;
    font-weight: 700
}

.castings-hero .filters {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap
}

.castings-hero .pill {
    border: 2px solid #1b3a68;
    color: #123456;
    font-weight: 400;
    padding: 6px 24px;
    border-radius: 999px;
    font-size: 22px;
    background: 0 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.castings-hero .pill.active {
    background: #1b3a68;
    color: #fff;
    font-weight: 600;
}

.castings--nda {
    background-color: #ffffff4d;
    border-radius: 25px;
    width: 300px;
    color: #00000099;
    padding: 5px 0;
    font-size: 15px;
    margin: 17px auto 8px;
}

.castings-marquee {
    padding: 24px 0 60px;
    position: relative;
    overflow: hidden;
    z-index: 999
}

.viewport {
    overflow: hidden;
    position: relative;
    width: 100%
}

#castingTrack {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    will-change: transform;
    user-select: none;
    touch-action: pan-y;
    padding: 12px 0;
    z-index: 999
}

.casting-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18)
}

.casting-card {
    width: 300px;
    min-width: 300px;
    background: #fff;
    border-radius: 33px;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    border: 24px solid #fff;
    transition: transform .35s ease, box-shadow .35s ease;
    z-index: 999
}

.casting-thumb {
    height: 340px;
    overflow: hidden;
    border-radius: 18px;
    /* background: #000; */
    position: relative
}

.casting-badge {
    position: absolute;
    left: 12px;
    bottom: 19px;
    background: #ff5b1c;
    color: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 6px 18px rgba(255, 91, 28, .18)
}

.casting-info {
    /* padding: 14px; */
    display: flex;
    flex-direction: column;
    gap: 10px
}

.casting-title {
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 42px;
    /* text-shadow: 0 2px 12px rgba(0, 0, 0, .5); */
}

.casting-actions {
    display: flex;
    margin-top: 10px;
    gap: 10px;
    align-items: center;
    justify-content: center
}

.casting-btn-ghost,
.casting-btn-outline {
    width: 100%;
    padding: 9px 12px;
    border-radius: 48px;
    background: #fff;
    font-weight: 800;
    cursor: pointer;
    font-size: 24px
}

.casting-btn-ghost {
    border: 2px solid rgba(27, 58, 104, .12);
    color: #123456
}

.casting-btn-outline {
    border: 0;
    font-size: 24, 5px;
    font-weight: 500;
    border: 3px solid var(--color-accent);
    color: var(--color-accent)
}

.casting-btn-disabled {
    background: #e9eef2;
    color: #98a6b6;
    border: 0;
    cursor: default;
    box-shadow: none
}

@media (max-width:1100px) {
    .casting-card {
        width: 260px;
        min-width: 260px
    }

    .casting-thumb {
        /* height: 360px; */
    }
}

@media (max-width:700px) {
    .castings-hero h2 {
        font-size: 28px
    }

    .castings-hero .subtitle {
        font-size: 14px
    }

    .castings-marquee .viewport {
        padding: 0 12px
    }
}

.hero__slider {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: visible
}

.hero__slides {
    width: 100%;
    height: 100%
}

.hero__arrow,
.hero__slide {
    display: flex;
    align-items: center;
    justify-content: center
}

.hero__slide {
    position: absolute;
    inset: 0;
    gap: 40px;
    padding: 40px;
    opacity: 0;
    transform: translateX(30px) scale(.995);
    pointer-events: none;
    backface-visibility: hidden
}

.hero__slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto
}

.hero__slide .features__container,
.hero__slide .hero__content,
.hero__slide .hero__image {
    transform: translateY(8px);
    transition: transform 900ms cubic-bezier(.2, .9, .25, 1), opacity 900ms cubic-bezier(.2, .9, .25, 1);
    opacity: .95
}

.hero__slide.is-active .hero__content {
    transform: translateY(0)
}

.hero__slide.is-active .hero__image img {
    transform-origin: center;
    transform: translateX(8px) scale(1.02);
    transition: transform 1200ms cubic-bezier(.2, .9, .25, 1)
}

.hero__arrow {
    z-index: 30;
    background: var(--color-white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(11, 32, 64, .08);
    transition: transform 200ms
}

.hero__arrow:active {
    transform: scale(.98)
}

.hero__dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -127px;
    display: flex;
    gap: 10px;
    z-index: 40;
    display: none
}

@media (max-width:1200px) {
    .hero__slide {
        flex-direction: column;
        gap: 20px;
        padding: 28px
    }

    .hero__image img {
        width: 420px;
        max-width: 100%
    }
}

@media (max-width:768px) {
    .hero__slide {
        padding: 18px
    }

    .hero__content {
        text-align: center;
        width: 100%
    }

    .hero__image img {
        width: 100%;
        max-width: 360px
    }
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999
}

.payment-success-title {
    font-size: 20px;
    margin-bottom: 20px
}

.payment-success-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 0;
    background: #ff5b1c;
    color: #fff;
    cursor: pointer
}

.doc-page {
    max-width: 1100px;
    margin: 120px auto 80px;
    background: #fff;
    border-radius: 20px;
    padding: 56px;
    box-shadow: 0 20px 60px rgba(11, 32, 64, .06)
}

.doc-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px
}

.doc-sub {
    color: #6b7280;
    margin-bottom: 28px;
    font-size: 16px
}

.doc-card h4,
.kicker {
    color: var(--color-accent)
}

.kicker {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-main);
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 14px
}

.section {
    margin-bottom: 28px;
    line-height: 1.6;
    color: var(--color-primary)
}

.small {
    font-size: 14px;
    color: #556170
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 18px
}

.doc-card {
    background: linear-gradient(180deg, #fff, #fffefc);
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e9edf2;
    box-shadow: 0 8px 30px rgba(11, 32, 64, .04)
}

.doc-card h4 {
    margin-bottom: 6px
}

.doc-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    gap: 14px
}

.doc-list-item {
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #eef3f7;
    background: linear-gradient(180deg, #fff, #fffefc)
}

.doc-list-item h4 {
    margin-bottom: 6px;
    color: var(--color-primary)
}

.doc-return {
    display: inline-block;
    margin-top: 24px;
    text-decoration: none;
    color: var(--color-accent);
    font-weight: 600
}

.catalog-menu {
    display: flex;
    gap: 12px;
    border-radius: 999px;
    width: fit-content
}

.catalog-pill {
    padding: 8px 20px;
    border-radius: 999px;
    border: 0;
    font-size: 16px;
    cursor: pointer;
    background: #e6eaef;
    color: #1b3a68;
    transition: background 180ms ease, transform 120ms ease, box-shadow 180ms ease
}

.catalog-pill:hover {
    background: #dde3ea
}

.catalog-pill:active {
    transform: scale(.96)
}

.catalog-pill.active {
    background: #2f4f7d;
    color: #fff;
    box-shadow: 0 6px 16px rgba(47, 79, 125, .25)
}

.catalog-results {
    margin-top: 30px;
    display: grid;
    gap: 16px
}

.catalog-card {
    padding: 18px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e6eaef;
    transition: transform 200ms ease, box-shadow 200ms ease
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .08)
}

.session-card--skeleton {
    pointer-events: none
}

.casting-skeleton {
    pointer-events: none;
    width: 255px;
    min-width: 255px;
    border-radius: 24px;
    overflow: hidden;
    background: #e6edf2;
}

#videosGrid .casting-skeleton {
    width: 100%;
    min-width: 0;
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #videosGrid .casting-skeleton {
        max-width: 100%;
    }
}

.casting-skeleton__thumb {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #dce3ea;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.casting-skeleton__title {
    width: 60%;
    height: 14px;
    margin: 14px 16px;
    border-radius: 6px;
    background: #dce3ea;
    position: relative;
    overflow: hidden;
}

.casting-skeleton__btn {
    width: 70%;
    height: 36px;
    margin: 0 16px 16px;
    border-radius: 12px;
    background: #dce3ea;
    position: relative;
    overflow: hidden;
}

.casting-skeleton__thumb::after,
.casting-skeleton__title::after,
.casting-skeleton__btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
    transform: translateX(-100%);
    animation: skeleton-shimmer 1.2s infinite
}

.session-card--skeleton {
    pointer-events: none
}

.skeleton-thumb,
.skeleton-title {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    background: #e6edf2;
    position: relative;
    overflow: hidden
}

.sessions__grid .skeleton-thumb,
.home-grid .skeleton-thumb {
    height: 360px;
}

.skeleton-title {
    width: 70%;
    height: 16px;
    margin: 12px 10px;
    border-radius: 6px
}

.skeleton-thumb::after,
.skeleton-title::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
    transform: translateX(-100%);
    animation: skeleton-shimmer 1.2s infinite
}

.personal-page {
    background: var(--bg-main);
    min-height: 100vh;
    padding: 28px 40px 80px;
    color: var(--color-primary)
}

.personal-banner {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto 26px;
    padding: 6px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0f4e8a, #136ab0);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .06)
}

.personal-banner__text {
    font-weight: 300;
    font-size: 19px;
    line-height: 1;
    padding-left: 12px
}

.personal-banner__actions {
    display: flex;
    gap: 12px;
    align-items: center
}

.personal-auth {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #1d90fb;
    color: var(--color-white);
    font-weight: 600;
    cursor: pointer
}

.personal-card {
    max-width: 1200px;
    margin: 20px auto 0;
    background: var(--color-white);
    border-radius: var(--radius-xl)
}

.personal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px
}

.personal-title {
    color: var(--color-primary)
}

.personal-avatar-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, #fff, #f6f9ff);
    border: 1px solid rgba(27, 58, 104, .06);
    box-shadow: 0 6px 16px rgba(11, 32, 64, .06);
    cursor: pointer
}

.personal-form {
    flex-direction: column
}

.personal-form,
.personal-row {
    display: flex;
    gap: 14px
}

.personal-input {
    flex: 1;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(27, 58, 104, .06);
    font-size: 14px;
    color: var(--color-primary);
    outline: 0;
    transition: box-shadow .15s ease, transform .08s ease, border-color .12s
}

.personal-input:disabled {
    background: var(--bg-light)
}

.personal-input::placeholder {
    color: #a7b0b8
}

.personal-input:focus {
    box-shadow: 0 6px 20px rgba(27, 58, 104, .06);
    transform: translateY(-1px);
    border-color: rgba(27, 58, 104, .16)
}

.personal-input--full {
    width: 100%
}

.personal-submit {
    margin-top: 8px;
    padding: 14px 18px;
    border-radius: 12px;
    background: linear-gradient(180deg, #e6eef8, #fff);
    border: 1px solid rgba(27, 58, 104, .08);
    color: var(--color-primary);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-2)
}

.personal-cta {
    background: linear-gradient(90deg, #1e6fb8, #2f86d1);
    color: var(--color-white);
    box-shadow: 0 12px 30px rgba(19, 106, 176, .14)
}

.personal-hint {
    font-size: 13px;
    color: #6b7280
}

.personal-subscription {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-1);
    border: 1px solid rgba(27, 58, 104, .04)
}

.personal-subscription .personal-head {
    margin-bottom: 4px
}

.personal-subscription .personal-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
    flex: 1
}

.personal-subscription .personal-status {
    flex-shrink: 0;
    margin-bottom: 0
}

.personal-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #fff0f0;
    color: var(--accent);
    font-weight: 600;
    white-space: nowrap
}

.personal-status--ok {
    background: #fff6ea;
    color: #ff7a3a
}

.personal-status--inactive {
    background: #f0f3f6;
    color: #93a0ad
}

.personal-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 6px 0 8px
}

.personal-subtitle {
    color: #000;
    margin-bottom: 18px
}

.personal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 18px
}

.personal-page-card {
    background: #f5f6f7;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: none;
    border: none;
    min-height: 135px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden
}

.personal-page-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4)
}

.personal-page-card__kicker {
    color: #000;
    font-weight: 600;
    margin-bottom: 6px
}

.personal-price {
    font-size: 34px;
    font-weight: 800;
    color: #000;
    margin: 6px 0
}

.personal-note {
    color: var(--muted);
    font-size: 14px
}

.personal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 22px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(27, 58, 104, .06);
    color: #000;
    cursor: pointer;
    font-weight: 400;
    width: 100%;
    transition: transform .12s ease, box-shadow .12s ease
}

.personal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(11, 32, 64, .06)
}

.personal-small {
    display: block;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff, #fbfbfb);
    border: 1px solid rgba(27, 58, 104, .03)
}

.personal-actionbar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 14px
}

.personal-cta {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 0;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.personal-subscription--active .personal-cta {
    box-shadow: none
}

.personal-subscription--active .personal-cta[disabled] {
    color: var(--muted);
    opacity: .6
}

.personal-subscription--active .personal-cta,
.personal-subscription--inactive .personal-cta {
    background: linear-gradient(90deg, #fff, #fff);
    color: var(--muted);
    border-radius: 12px;
    border: 1px solid rgba(27, 58, 104, .02)
}

.personal-subscription--no-sub .personal-cta {
    background: linear-gradient(180deg, #fff7f4, #fff0ec);
    color: var(--accent)
}

.personal-cta--cancel {
    background: linear-gradient(180deg, #ff5e1f, #ff4500) !important;
    color: #fff !important;
    border: none !important;
    font-size: 16px;
    padding: 16px;
    border-radius: 14px
}

.personal-cta--buy {
    background: linear-gradient(180deg, #fff7f4, #fff0ec) !important;
    color: var(--accent) !important;
    border: none !important;
    font-size: 16px;
    padding: 16px;
    border-radius: 14px
}

.personal-subscription--error .personal-actionbar .personal-cta {
    background: linear-gradient(90deg, #fff0ef, #fff0ef);
    color: var(--accent);
    border: 1px solid rgba(255, 91, 28, .06);
    box-shadow: none
}

.personal-page-card--error {
    border: 1px solid rgba(255, 91, 28, .1)
}

.personal-note--error {
    color: var(--accent);
    font-weight: 600
}

.personal-cta--restore {
    background: linear-gradient(180deg, #fff7f4, #fff0ec) !important;
    color: var(--accent) !important;
    border: none !important;
    font-size: 16px;
    padding: 16px;
    border-radius: 14px
}

/* ── sub-block (подписка) ─────────────────────────────── */

.sub-telegram-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 36px;
    padding: 8px 12px 8px 16px;
    margin: 0 0 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0a5fb8 0%, #0f66c6 42%, #1f74d8 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(16, 77, 145, .18)
}

.sub-telegram-banner > span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.15
}

.sub-telegram-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 165px;
    height: 32px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #2d95ff 0%, #1f86f3 100%);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0
}

.sub-telegram-banner__btn svg {
    flex: 0 0 auto
}

.sub-block {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 18px;
    /* box-shadow: 0 18px 36px rgba(47, 77, 102, .08); */
}

.sub-block__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 4px
}

.sub-block__title {
    font-size: 34px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.04em;
    color: #0b0d12
}

.sub-block__subtitle {
    margin: 10px 0 18px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    color: #2a4b79
}

.sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0
}

.sub-badge--ok {
    background: #ff9b6e;
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 155, 110, .22)
}

.sub-badge--inactive {
    background: #eef2f6;
    color: #8d98a6
}

.sub-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px
}

.sub-card {
    position: relative;
    overflow: hidden;
    min-height: 146px;
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: #f2f3f5
}

.sub-card--error {
    background: #f2f3f5
}

.sub-card__arrow {
    position: absolute;
    inset: 0 auto auto 0;
    width: 112%;
    pointer-events: none;
    z-index: 0;
    transform: translateY(-2px)
}

.sub-card__arrow svg {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.1;
}

.sub-card__content,
.sub-card__action {
    position: relative;
    z-index: 1
}

.sub-card__content {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.sub-card__action {
    margin-top: auto;
    padding-top: 14px
}

.sub-card__kicker {
    font-size: 16px;
    line-height: 1.15;
    font-weight: 500;
    color: #52575f;
    letter-spacing: -.02em
}

.sub-card__price {
    font-size: 35px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.06em;
    color: #0b0d12;
    margin-top: 2px
}

.sub-card__note {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 200;
    color: #a0a6ae;
    margin-top: 4px
}

.sub-card__note--error {
    color: #ff5a2f;
    font-weight: 600
}

.sub-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #20242b;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .02), inset 0 0 0 1px rgba(17, 24, 39, .04);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease
}

.sub-card__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(17, 24, 39, .08), inset 0 0 0 1px rgba(17, 24, 39, .04)
}

.sub-card__btn:active {
    transform: translateY(0);
    opacity: .96
}

.sub-btn {
    width: 100%;
    border: 0;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 700;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease
}

.sub-btn:hover {
    transform: translateY(-1px)
}

.sub-btn:active {
    transform: translateY(0);
    opacity: .98
}

.sub-btn--cancel {
    height: 54px;
    background: linear-gradient(180deg, #ff4d4d 0%, #ff3b3b 100%);
    color: #fff;
    font-size: 19px;
    letter-spacing: -.02em;
    box-shadow: 0 10px 22px rgba(255, 59, 59, .22)
}

.sub-btn--buy,
.sub-btn--restore {
    height: 54px;
    background: linear-gradient(180deg, #fff1ec 0%, #ffe8e0 100%);
    color: #ff5e1f;
    font-size: 16px;
    box-shadow: 0 10px 22px rgba(255, 94, 31, .09)
}

.sub-skeleton {
    padding: 26px 22px 24px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(47, 77, 102, .08)
}

.sub-skeleton__line {
    height: 16px;
    border-radius: 999px;
    background: #edf0f3;
    margin-bottom: 12px
}

.sub-skeleton__line--title {
    width: 260px;
    height: 32px;
    margin-bottom: 10px
}

.sub-skeleton__line--subtitle {
    width: 185px;
    height: 16px;
    margin-bottom: 20px
}

.sub-skeleton__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px
}

.sub-skeleton__card {
    height: 146px;
    border-radius: 18px;
    background: #edf0f3
}

.sub-skeleton__line--btn {
    width: 100%;
    height: 54px
}

.open-subscription,
.open-subscription-modal {
    cursor: pointer
}

.personal-footer {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted)
}

.personal-support {
    max-width: 1100px;
    margin: 0 auto
}

.personal-support__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px
}

.personal-support__text {
    font-size: 20px;
    color: #2c3742;
    margin-bottom: 20px
}

.personal-support__btn {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    background: #d7dde3;
    border: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1b3a68;
    cursor: pointer;
    transition: background .18s ease, transform .08s ease, box-shadow .18s ease
}

.personal-support__btn:hover {
    background: #cfd6dd
}

.personal-support__btn:active {
    transform: scale(.98)
}

.personal-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 9999
}

.personal-modal.active {
    opacity: 1;
    pointer-events: auto
}

.personal-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45)
}

.personal-modal__content {
    position: relative;
    width: 520px;
    max-width: 90%;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .3);
    z-index: 2;
    display: flex;
    flex-direction: column
}

.personal-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px
}

.personal-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary)
}

.personal-modal__close {
    border: 0;
    background: 0 0;
    font-size: 26px;
    cursor: pointer
}

.personal-modal__textarea {
    width: 100%;
    min-height: 160px;
    resize: none;
    border-radius: 12px;
    border: 1px solid #e4e7ea;
    padding: 14px;
    font-size: 14px;
    outline: 0;
    transition: border .15s ease
}

.personal-modal__textarea:focus {
    border-color: #1b3a68
}

.personal-modal__error {
    margin-top: 10px
}

.personal-modal__footer {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.personal-modal__counter {
    font-size: 13px;
    color: #7b8794
}

.personal-modal__send {
    background: #1b3a68
}

.personal-modal__send:disabled {
    opacity: .6;
    cursor: default
}

.personal-modal__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px
}

.personal-modal__error {
    color: #e53935;
    font-size: 14px;
    display: none
}

.personal-modal__send {
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    border-radius: 12px;
    border: 0;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform .08s ease, box-shadow .15s ease, background .15s ease
}

.personal-modal__send:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15)
}

.personal-modal__send:active {
    transform: scale(.97)
}

.personal-modal__send.loading {
    opacity: .7;
    pointer-events: none
}

.personal-modal__send.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-top-color: transparent;
    display: inline-block;
    animation: spin .7s linear infinite
}

.casting-participation-card {
    padding: 20px;
    border-radius: 16px
}

.casting-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.casting-form__group {
    width: 100%
}

.casting-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    transition: .2s
}

.casting-input:focus {
    border-color: #ff5b1c;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(255, 91, 28, .15)
}

.casting-file {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px dashed #ddd;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: .2s
}

.casting-file:hover {
    border-color: #ff5b1c;
    background: rgba(255, 91, 28, .04)
}

.casting-file input {
    display: none
}

.casting-file__btn {
    background: #ff5b1c;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap
}

.casting-file__name {
    font-size: 13px;
    color: #777;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.form-error {
    /* display: none; */
    font-size: 13px;
    color: #e53935
}

.casting-submit {
    margin-top: 6px;
    height: 46px;
    border: 0;
    border-radius: 10px;
    background: #ff5b1c;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: .2s
}

.casting-submit:hover {
    background: #e14e16
}

.casting-submit:disabled {
    opacity: .6;
    cursor: not-allowed
}

.casting-state-card {
    width: 100%;
    padding: 24px;
    border: 1px solid rgba(27, 58, 104, .1);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(27, 58, 104, .08);
    box-sizing: border-box;
}

.casting-state-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(27, 58, 104, .08);
    color: #1b3a68;
    font-size: 12px;
    font-weight: 700;
}

.casting-state-card__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2fa86f;
    box-shadow: 0 0 0 4px rgba(47, 168, 111, .12);
}

.casting-state-card__eyebrow--finished {
    background: rgba(255, 91, 28, .1);
    color: #d8450d;
}

.casting-state-card .subscription-title {
    margin: 0 0 6px;
    color: #1b3a68;
    font-size: clamp(23px, 2vw, 30px);
    line-height: 1.05;
}

.casting-state-card__lead {
    margin: 0 0 18px;
    color: #687385;
    font-size: 14px;
    line-height: 1.4;
}

.casting-modal__shell .video-modal__inner:has(.casting-subscription.is-participation) {
    align-items: stretch;
}

.casting-subscription.is-participation {
    display: flex;
}

.casting-subscription.is-participation .casting-participation-card {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.casting-subscription.is-participation .casting-form {
    flex: 1;
    justify-content: space-between;
}

.casting-form__person {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.casting-textarea {
    height: 66px;
    min-height: 66px;
    padding: 12px 14px;
    line-height: 1.35;
    resize: vertical;
}

.casting-state-card .casting-input {
    box-sizing: border-box;
    border-color: rgba(27, 58, 104, .2);
    background: #f7f9fb;
}

.casting-state-card .casting-file {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon button"
        "icon name";
    min-height: 86px;
    padding: 14px;
    gap: 2px 12px;
    border: 1.5px dashed rgba(27, 58, 104, .32);
    background: #f7f9fb;
    box-sizing: border-box;
}

.casting-file__icon {
    grid-area: icon;
    align-self: center;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1b3a68;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.casting-state-card .casting-file__btn {
    grid-area: button;
    align-self: end;
    padding: 0;
    background: transparent;
    color: #1b3a68;
    font-size: 14px;
    font-weight: 700;
}

.casting-state-card .casting-file__name {
    grid-area: name;
    align-self: start;
    color: #7b8794;
    font-size: 12px;
}

.casting-file__hint {
    margin-top: 6px;
    color: #9aa3af;
    font-size: 11px;
}

.casting-winners {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.casting-winner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(27, 58, 104, .1);
    border-radius: 14px;
    background: #f7f9fb;
}

.casting-winner__avatar {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1b3a68;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.casting-winner__copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.casting-winner__copy strong {
    overflow: hidden;
    color: #1b3a68;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.casting-winner__copy span {
    margin-top: 2px;
    overflow: hidden;
    color: #7b8794;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.casting-winner__mark {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff5b1c;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.casting-results-card__empty {
    padding: 16px;
    border-radius: 14px;
    background: #f7f9fb;
    color: #687385;
    font-size: 13px;
    line-height: 1.45;
}

.casting-results-card {
    min-height: 0;
}

.casting-results-view[hidden] {
    display: none;
}

.casting-results-view--all {
    display: flex;
    min-height: 0;
    max-height: 500px;
    flex-direction: column;
}

.casting-results-toggle,
.casting-results-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, background-color .2s ease;
}

.casting-results-toggle {
    width: 100%;
    margin-top: 12px;
    background: #1b3a68;
    color: #fff;
}

.casting-results-back {
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 0 14px;
    background: #edf2f5;
    color: #1b3a68;
}

.casting-results-toggle:hover,
.casting-results-back:hover {
    transform: translateY(-1px);
}

.casting-results-all__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.casting-results-all__head .subscription-title {
    margin: 0;
}

.casting-results-all__count {
    flex-shrink: 0;
    color: #7b8794;
    font-size: 12px;
    font-weight: 700;
}

.casting-winners--all {
    min-height: 0;
    padding-right: 5px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(27, 58, 104, .32) transparent;
}

.casting-winners--all::-webkit-scrollbar {
    width: 5px;
}

.casting-winners--all::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(27, 58, 104, .32);
}

.casting-modal__shell .video-modal__inner:has(.casting-subscription.is-results-all) {
    align-items: stretch;
}

.casting-subscription.is-results-all {
    display: flex;
}

.casting-subscription.is-results-all .casting-results-card {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.casting-subscription.is-results-all .casting-results-view--all {
    flex: 1;
}

.casting-disabled {
    padding: 20px;
    text-align: center
}

.casting-disabled__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px
}

.casting-disabled__text {
    font-size: 14px;
    color: #777
}

#vmLoader {
    display: none !important
}

.video-modal.loading #vmLoader {
    display: flex !important
}

.subscription_change_modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999
}

.subscription_change_modal.active {
    display: flex
}

.subscription_modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6)
}

.subscription_modal__content {
    position: relative;
    width: 420px;
    max-width: 95%;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    z-index: 2;
    animation: subFade .2s ease
}

.subscription_modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: 0;
    background: #f2f2f2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer
}

.subscription_modal__header {
    margin-bottom: 16px
}

.subscription_modal__title {
    font-size: 20px;
    font-weight: 700
}

.subscription_modal__subtitle {
    font-size: 14px;
    color: #666
}

.subscription_cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px
}

.subscription_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: .2s
}

.subscription_card:hover {
    border-color: #ff5b1c
}

.subscription_card.active {
    border-color: #ff5b1c;
    background: #fff4ef
}

.subscription_card__info {
    display: flex;
    flex-direction: column
}

.subscription_card__brand {
    font-weight: 700;
    font-size: 14px
}

.subscription_card__number {
    font-size: 13px;
    color: #777
}

.subscription_card__radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc
}

.subscription_card.active .subscription_card__radio {
    border-color: #ff5b1c;
    background: #ff5b1c
}

.subscription_card--new {
    justify-content: center;
    font-weight: 600;
    color: #ff5b1c
}

.subscription_pay_btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: 0;
    background: #ff5b1c;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: .2s
}

.subscription_pay_btn:hover {
    transform: translateY(-2px)
}

.catalog-casting-desc {
    font-size: .8em;
    color: #666;
    line-height: 1.4;
    max-height: 3em;
    overflow: hidden;
    transition: max-height .3s ease;
    cursor: pointer;
    position: relative;
}

.catalog-casting-desc.expanded {
    max-height: none;
}

.catalog-casting-desc-toggle {
    font-size: .75em;
    color: #ff5b1c;
    cursor: pointer;
    border: none;
    background: none;
    padding: 2px 0;
    font-weight: 600;
}

.catalog-casting-card {
    width: 255px;
    min-width: 259px;
    height: 480px;
    position: relative;
    border-radius: 28px;
    background: transparent;
    overflow: visible;
    cursor: pointer;
    transition: transform .3s ease;
    margin-bottom: 70px
}

.catalog-casting-inner {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    isolation: isolate;
    transition: transform .45s cubic-bezier(.2, .9, .25, 1), box-shadow .45s
}

.catalog-casting-card:hover {
    z-index: 50
}

.catalog-casting-card:hover .catalog-casting-inner {
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25)
}

.catalog-casting-thumb {
    width: 100%;
    height: 400px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    background: #000;
    z-index: 0
}

.catalog-casting-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms cubic-bezier(.2, .9, .25, 1)
}

.catalog-casting-card:hover .catalog-casting-thumb img {
    transform: scale(1.1)
}

.catalog-casting-badge {
    position: absolute;
    left: 12px;
    bottom: 16px;
    background: #ff5b1c;
    color: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 6px 18px rgba(255, 91, 28, .18);
    z-index: 2
}

.catalog-casting-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .3) 40%, transparent 70%);
    z-index: 1
}

.catalog-casting-info {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 16px;
    pointer-events: none;
    background: transparent
}

.catalog-casting-title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.15;
    /* text-shadow: 0 2px 12px rgba(0, 0, 0, .5); */
}

.catalog-casting-actions {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    padding: 0 4px;
    z-index: 3
}

.catalog-casting-btn {
    width: 100%;
    padding: 9px 12px;
    border-radius: 32px;
    background: #fff;
    font-weight: 800;
    font-size: 24px;
    border: 0;
    cursor: pointer;
    text-align: center
}

.catalog-casting-btn--primary {
    color: #ff5b1c;
    border: 3px solid var(--color-accent);
}

.catalog-casting-btn--disabled {
    background: #e9eef2;
    color: #98a6b6;
    cursor: default
}

.catalog-casting-btn--results {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #edf2f5;
    color: #173f75;
}

.catalog-casting-btn__arrow--results {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: #173f75;
    color: #fff;
}

.session-card__lock {
    color: #fff;
}

.session-card__lock--play {
    background: rgba(255, 91, 28, .88);
}

.session-materials {
    height: 100%;
    padding: 22px;
    box-sizing: border-box;
    border: 1px solid rgba(27, 58, 104, .12);
    border-radius: 18px;
    background: #f3f6f8;
    color: #173f75;
}

.session-materials__eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 91, 28, .1);
    color: #ff5b1c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.session-materials h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.05;
}

.session-materials__lead {
    margin: 10px 0 18px;
    color: #63748a;
    font-size: 13px;
    line-height: 1.35;
}

.session-materials__list {
    display: grid;
    gap: 10px;
}

.session-materials__item {
    display: grid;
    min-height: 76px;
    padding: 11px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(27, 58, 104, .16);
    border-radius: 14px;
    background: #fff;
    color: #173f75;
    text-decoration: none;
    transition: transform .2s, border-color .2s, box-shadow .2s;
}

.session-materials__item:hover {
    transform: translateY(-2px);
    border-color: rgba(27, 58, 104, .35);
    box-shadow: 0 8px 18px rgba(27, 58, 104, .08);
}

.session-materials__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: #173f75;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.session-materials__copy {
    min-width: 0;
}

.session-materials__copy strong,
.session-materials__copy span {
    display: block;
}

.session-materials__copy strong {
    font-size: 13px;
    line-height: 1.2;
}

.session-materials__copy span {
    margin-top: 4px;
    overflow: hidden;
    color: #7b8797;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.session-materials__download {
    color: #ff5b1c;
    font-size: 20px;
    font-weight: 700;
}

.videos-section {
    margin-bottom: 0
}

.videos-block {
    background: #fff;
    border-radius: 30px;
    padding: 28px;
    margin-bottom: 24px
}

.videos-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px
}

.videos-block__title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2
}

.videos-block__more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    background: #ff5b1c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: .2s ease;
    cursor: pointer;
    margin-top: 16px
}

.videos-block__more:hover {
    opacity: .9;
    transform: translateY(-1px)
}

.sessions__grid--compact {
    margin-top: 0
}

.sessions__grid--compact .catalog-casting-card {
    margin-bottom: 0
}

.videos-block__empty {
    padding: 20px 0;
    color: #7a7a7a;
    font-size: 14px
}

@media (max-width:768px) {
    .videos-block {
        padding: 20px 16px;
        border-radius: 20px
    }

    .videos-block__head {
        align-items: flex-start;
        flex-direction: column
    }

    .videos-block__more {
        width: 100%;
        padding: 12px;
        font-size: 15px
    }
}

.personal-auth {
    position: relative;
    min-width: 160px;
    height: 40px
}

.personal-auth.is-loading {
    pointer-events: none;
    opacity: .7
}

.loader {
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin .6s linear infinite
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.toast {
    min-width: 220px;
    padding: 12px 16px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    animation: fadeIn .2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.toast--error {
    background: #ff4d4f
}

.toast--success {
    background: #52c41a
}

.toast.hide {
    opacity: 0;
    transform: translateY(-10px);
    transition: all .3s ease
}

.hero {
    padding: 0px 0 31px;
}

.hero-card {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
    background-color: #fff;
    background-image: radial-gradient(circle, #f6f6f6 5.5px, transparent 5.5px);
    background-size: 53px 52px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    min-height: 520px
}

.fb-review__mobile-card {
    background-color: #fff !important;
    background-image: radial-gradient(circle, #f7f7f7 5.5px, transparent 5.5px) !important;
    background-size: 53px 52px !important;
    border-radius: 32px
}

.castings--nda__mobile {
    display: none;
}

.castings-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300%;
    height: 400px;
    background: url(../img/hero-pattern.svg)no-repeat;
    background-size: contain;
    opacity: 1;
    z-index: -1;
}


.hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 400px;
    background: url(../img/hero-pattern.svg)no-repeat;
    background-size: contain;
    opacity: 1
}

.hero-card__left {
    padding: 30px 0 60px 40px;
    z-index: 2;
    width: 100%
}

.hero-card__title {
    max-width: 610px;
    margin: 0 0 38px;
    color: #1b3a68;
    letter-spacing: -1px
}

.hero-card__title-brand {
    display: block;
    font-size: clamp(46px, 4.5vw, 64px);
    line-height: 1.05;
    font-weight: 700
}

.hero-card__title-descriptor {
    display: block;
    max-width: 540px;
    margin-top: 12px;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 0;
    font-weight: 400
}

.hero-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px
}

.hero-card__feature {
    display: inline-flex;
    align-items: center;
    width: 80%;
    padding: 7px 19px;
    border-radius: 999px;
    background: #1b3a68;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    transition: background-color .2s ease, transform .2s ease
}

@media (hover:hover) and (pointer:fine) {
    .hero-card__feature:hover {
        background: #244b84;
        transform: translateX(6px)
    }
}

.hero-card__button-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 18px
}

.hero-card__price {
    position: absolute;
    top: -29px;
    left: 100px;
    z-index: 1;
    padding: 8px 20px;
    border-radius: 150px;
    background: #1b3a68;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transform: rotate(15deg)
}

.hero-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 20px 40px;
    border-radius: 150px;
    background: #ff5b1c;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    border: 0;
    transition: background-color .2s ease, transform .2s ease
}

@media (hover:hover) and (pointer:fine) {
    .hero-card__button:hover {
        background: #e84c10;
        transform: translateY(-2px)
    }
}

.hero-card__button:active {
    transform: translateY(0) scale(.98)
}

.hero-card__button:focus-visible {
    outline: 3px solid rgba(255, 91, 28, .35);
    outline-offset: 4px
}

.hero-card__right {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: 100
}

.hero-card__right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right
}

@media (max-width:768px) {
    .hero-card::before {
        top: 0;
        right: 0;
        width: 300%;
        height: 300px
    }

    .castings--nda__mobile {
        display: block;
        margin-top: 17px;
    }

    .dub-card__border {
        border-radius: 20px !important;
    }

    .dub-card__btn--more {
        width: 80% !important;
    }

    .dub-card__btn--more::before {
        left: -30px !important;
    }

    .hero-card {
        min-height: auto;
        flex-direction: column
    }

    .hero-card__left {
        width: 100%;
        padding: 24px
    }

    .hero-card__title {
        font-size: 42px;
        text-align: center
    }

    .hero-card__description {
        font-size: 16px;
        text-align: center
    }

    .hero-card__feature {
        font-size: 14px;
        max-width: 220px
    }

    .hero-card__right {
        position: relative;
        width: 100%;
        height: 340px
    }

    .hero-card__button {
        width: 100%
    }
}

.hero-card__plane {
    position: absolute;
    background: url(/static/img/plane.svg)center/contain no-repeat;
    z-index: 3;
    pointer-events: none
}

.plane-1 {
    width: 56px;
    height: 55px;
    top: 75px;
    left: 53%;
    transform: rotate(2deg);
}

.plane-2 {
    width: 126px;
    height: 147px;
    right: 18px;
    top: 227px;
    transform: rotate(7deg)
}

.plane-3 {
    width: 80px;
    height: 75px;
    left: 42%;
    bottom: 107px;
    z-index: 150
}

.dubbing-showcase {
    background: #d7e2e8;
    padding: 80px 0 131px;
    overflow: hidden
}

.dubbing-showcase__title {
    text-align: center;
    font-size: 62px;
    font-weight: 900;
    color: #1b3a68;
    line-height: 1.05;
    margin: 0
}

.dubbing-showcase__subtitle {
    text-align: center;
    font-size: 22px;
    color: --color-primary;
    margin: 22px auto 0;
    /* max-width: 635px; */
}

.dubbing-showcase__carousel {
    max-width: 1200px;
    margin: 79px auto 0;
    padding: 0 20px;
    overflow: hidden;
    position: relative
}

.dubbing-showcase__track {
    display: flex;
    gap: 24px;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
    will-change: transform
}

.dub-card {
    position: relative;
    flex: 0 0 370px;
    height: 542px;
    border-radius: 42px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow .4s ease
}

.dub-card.is-open {
    box-shadow: none
}

.dub-card--skeleton {
    background: #1b3a68;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    gap: 16px
}

.dub-card__skeleton-btn,
.dub-card__skeleton-img,
.dub-card__skeleton-title {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .08) 25%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .08) 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite
}

.dub-card__skeleton-btn,
.dub-card__skeleton-title {
    width: 60%;
    height: 24px;
    border-radius: 6px;
    animation: skeleton-pulse 1.5s ease-in-out infinite .1s
}

.dub-card__skeleton-btn {
    width: 140px;
    height: 44px;
    border-radius: 999px;
    animation: skeleton-pulse 1.5s ease-in-out infinite .2s;
    margin-top: auto
}

.dub-card__bg,
.dub-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 0
}

.dub-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.dub-card.is-open .dub-card__bg img {
    transform: scale(1.08)
}

.dub-card__overlay {
    background: linear-gradient(180deg, rgba(10, 20, 50, .35)0, rgba(10, 20, 50, .75) 100%);
    z-index: 1;
    transition: background .4s ease, backdrop-filter .4s ease
}

.dub-card.is-open .dub-card__overlay {
    background: linear-gradient(180deg, rgba(10, 20, 50, .55)0, rgba(10, 20, 50, .9) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px)
}

.dub-card__border {
    position: absolute;
    inset: 0;
    border-radius: 44px;
    border: 7px solid #1b3a68;
    z-index: 5;
    pointer-events: none;
    transition: border-color .4s ease, box-shadow .4s ease
}

.dub-card.is-open .dub-card__border {
    border-color: #ff5b1c;
    box-shadow: 0 0 30px rgba(255, 91, 28, .35), inset 0 0 30px rgba(255, 91, 28, .08)
}

.dub-card__default {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    transition: opacity .3s ease
}

.dub-card.is-open .dub-card__default {
    opacity: 0;
    pointer-events: none
}

.dub-card__title {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 41px;
    width: 80%;
    margin: 0 auto;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
    z-index: 10;
    pointer-events: none;
    letter-spacing: 1px;
    line-height: 43px;
}

.dub-card__bottom {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.dub-card__btn {
    position: absolute;
    bottom: 12px;
    display: flex;
    align-items: center;
    gap: 25px;
    border-radius: 999px;
    background: #1b3a68;
    color: #fff;
    font-size: 22px;
    font-weight: 200;
    border: 0;
    cursor: pointer;
    height: 48px;
    overflow: hidden;
    width: 255px;
    height: 60px;
    min-width: 0;
    /* padding: 28px 66px; */
    padding-right: 0;
    transition: width .4s cubic-bezier(.4, 0, .2, 1), background .4s cubic-bezier(.4, 0, .2, 1), padding .4s cubic-bezier(.4, 0, .2, 1);
    justify-content: flex-start;
}

.dub-card.is-open .dub-card__btn {
    width: calc(100% - 4px);
    background: rgba(255, 255, 255, .95);
    padding: 0 8px 0 4px;
    /* max-width: 22px; */
}


.dub-card__btn-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-left: 7px;
    object-fit: cover;
    flex-shrink: 0;
    background: #ff5b1c;
    display: block;
    transition: border .3s ease;
    position: relative;
    z-index: 999;
}

.dub-card__btn--more::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    width: 74px;
    height: 74px;
    background: #FF5B1C;
    border-radius: 0%;
    transform: translateY(-50%);
}

.dub-card.is-open .dub-card__btn-avatar {
    border: 2px solid #ff5b1c;
}

.dub-card__btn-text {
    padding: 8px 20px 8px 10px;
    white-space: nowrap;
    display: block;
    width: 100%;
    text-align: center;
    transition: opacity .25s ease
}

.dub-card__btn-author {
    position: absolute;
    left: 42px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease .15s
}

.dub-card.is-open .dub-card__btn-author {
    opacity: 1;
    pointer-events: auto
}

.dub-card__btn-author-name {
    font-size: 14px;
    font-weight: 700;
    color: #1b3a68;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.dub-card__btn-close,
.dub-card__hover {
    position: absolute;
    display: flex;
    align-items: center;
    opacity: 0
}

.dub-card__btn-close {
    background: 0 0;
    transition: background .2s ease;
    flex-shrink: 0;
    right: -8px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    justify-content: center;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4, 0, .2, 1) .15s
}

.dub-card__btn-close:hover {
    background: rgba(27, 58, 104, .1)
}

.dub-card.is-open .dub-card__btn-avatar {
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden
}

.dub-card.is-open .dub-card__btn-text {
    padding: 0;
    font-size: 0;
    width: 0;
    overflow: hidden
}

.dub-card.is-open .dub-card__btn-close {
    transform: translateY(-50%) scale(1);
    opacity: 1
}

.dub-card__hover {
    inset: 0;
    z-index: 4;
    flex-direction: column;
    padding: 80px 20px 16px;
    transition: opacity .3s ease;
    pointer-events: none
}

.dub-card.is-open .dub-card__hover {
    opacity: 1;
    pointer-events: auto
}

.dub-card__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 54px;
    padding: 10px 40px;
    border-radius: 999px;
    /* background: rgba(255, 255, 255, .15); */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--color-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 200;
    cursor: pointer;
    transition: background .3s ease
}

.dub-card__contact-btn:hover {
    background: rgba(255, 255, 255, .25)
}

.dub-card__hover-title {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .4)
}

.dub-card__btn-contact-text {
    position: absolute;
    opacity: 0;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity .4s ease .1s;
    pointer-events: none
}

.dub-card.is-open .dub-card__btn-contact-text {
    opacity: 1
}



.dub-card.is-open .dub-card__btn-text {
    opacity: 0;
    transition: opacity .25s ease
}

.dub-card__desc {
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .88);
    width: 90%;
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
    text-align: left;
    margin: 0 auto;
    margin-top: 20px;
}

.dub-card__desc::-webkit-scrollbar {
    width: 3px
}

.dub-card__desc::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .3);
    border-radius: 3px
}

.dub-card__author {
    margin-top: auto;
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* padding: 6px 8px; */
    background: rgba(255, 255, 255, .95);
    border-radius: 999px;
    justify-content: center;
}

.dub-card__author-avatar {
    width: 48px;
    height: 48px;
    margin-left: 6px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 2px solid #ff5b1c; */
    flex-shrink: 0
}

.dub-card__author-name {
    font-size: 21px;
    font-weight: 200;
    color: #1b3a68;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.dub-card__close {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    border: 0;
    background: 0 0;
    color: #1b3a68;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
    margin-right: 10px;
    flex-shrink: 0
}

.dubbing-showcase__footer {
    max-width: 1200px;
    margin: 74px auto 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.dubbing-showcase__cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    border-radius: 999px;
    background: #ff5b1c;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 91, 28, .25);
    transition: background .3s ease, box-shadow .3s ease, transform .3s ease
}

.dubbing-showcase__cta:hover {
    background: #e84e12;
    box-shadow: 0 12px 32px rgba(255, 91, 28, .35);
    transform: translateY(-2px)
}

.dubbing-showcase__nav {
    display: flex;
    gap: 12px
}

.dubbing-showcase__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: #ff5b1c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
    box-shadow: 0 4px 16px rgba(255, 91, 28, .25)
}

.dubbing-showcase__arrow:hover {
    background: #e84e12;
    transform: scale(1.08)
}

.dubbing-showcase__arrow:active {
    transform: scale(.95)
}

/* 
@media (max-width:1200px) {
    .dubbing-showcase__title {
        font-size: 42px
    }

    .dub-card {
        flex: 0 0 230px;
        height: 340px
    }

    .dub-card__hover-title,
    .dub-card__title {
        font-size: 22px;
        top: 20px
    }
} */

@media (max-width:768px) {
    .dubbing-showcase {
        padding: 40px 0 30px
    }

    .dubbing-showcase__title {
        font-size: 30px
    }

    .dubbing-showcase__subtitle {
        font-size: 15px
    }

    .dubbing-showcase__carousel {
        margin-top: 30px
    }

    .dub-card {
        flex: 0 0 200px;
        height: 300px;
        border-radius: 18px
    }

    .dub-card__hover-title,
    .dub-card__title {
        font-size: 18px;
        top: 16px
    }

    .dub-card__hover {
        padding: 60px 16px 12px
    }

    .dub-card__desc {
        font-size: 12px
    }

    .dub-card__bottom,
    .dub-card__btn {
        height: 38px
    }

    .dub-card__btn-text {
        font-size: 13px;
        padding: 6px 16px 6px 10px
    }

    .dub-card__btn-avatar {
        width: 28px;
        height: 28px
    }

    .dub-card__author {
        padding: 4px 6px
    }

    .dub-card__author-avatar {
        width: 28px;
        height: 28px
    }

    .dub-card__author-name {
        font-size: 12px
    }

    .dub-card__close {
        width: 24px;
        height: 24px
    }

    .dubbing-showcase__footer {
        flex-direction: column;
        gap: 20px;
        align-items: stretch
    }

    .dubbing-showcase__cta {
        text-align: center;
        justify-content: center
    }

    .dubbing-showcase__nav {
        justify-content: center
    }
}

.dubbing-modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 10000;
    font-family: Roboto, Arial, sans-serif
}

.dubbing-modal[aria-hidden=false] {
    display: flex
}

.dubbing-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 1
}

.dubbing-modal__shell {
    position: relative;
    width: min(800px, calc(100% - 40px));
    border-radius: 22px;
    padding: 0;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
    overflow: hidden;
    z-index: 2;
    animation: dubbingModalIn .3s cubic-bezier(.4, 0, .2, 1)
}

.dubbing-modal__close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease
}

.dubbing-modal__close:hover {
    background: rgba(0, 0, 0, .6)
}

.dubbing-modal__content {
    display: flex;
    flex-direction: column
}

.dubbing-modal__image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative
}

.dubbing-modal__image img,
.plans-showcase__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.dubbing-modal__image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, #fff)
}

.dubbing-modal__info {
    padding: 24px 32px 32px
}

.dubbing-modal__title {
    font-size: 28px;
    font-weight: 800;
    color: #1b3a68;
    margin: 0;
    line-height: 1.2
}

.dubbing-modal__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px
}

.dubbing-modal__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff5b1c
}

.dubbing-modal__author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1b3a68
}

.dubbing-modal__desc {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568
}

.dubbing-modal__actions {
    display: flex;
    gap: 12px;
    margin-top: 28px
}

.dubbing-modal__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    transition: all .3s ease
}

.dubbing-modal__btn--primary {
    background: #1b3a68;
    color: #fff
}

.dubbing-modal__btn--primary:hover {
    background: #152d52
}

.dubbing-modal__btn--outline {
    background: 0 0;
    color: #1b3a68;
    border: 2px solid #1b3a68
}

.dubbing-modal__btn--outline:hover {
    background: #1b3a68;
    color: #fff
}

@media (max-width:768px) {
    .dubbing-modal__shell {
        width: calc(100% - 20px);
        border-radius: 18px
    }

    .dubbing-modal__image {
        height: 220px
    }

    .dubbing-modal__info {
        padding: 20px 20px 24px
    }

    .dubbing-modal__title {
        font-size: 22px
    }

    .dubbing-modal__actions {
        flex-direction: column
    }

    .dubbing-modal__btn {
        justify-content: center
    }
}

.plans-section {
    background: #d7e2e8;
    padding: 18px 0 0
}

.plans-section__title {
    margin: 0 0 8px;
    text-align: center;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -.03em;
    color: #1b3a68
}

.plans-section__subtitle {
    margin: 15px 0 71px;
    text-align: center;
    font-size: 22px;
    line-height: 1.35;
    color: #1b3a68
}

.plans-showcase {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.plans-showcase__card {
    position: relative;
    overflow: hidden;
    height: 741px;
    border-radius: 28px;
    background: #0b0b0d;
    box-shadow: 0 20px 48px rgba(11, 32, 64, .16)
}

.plan-card::after,
.plans-showcase__bg,
.plans-showcase__overlay {
    position: absolute;
    inset: 0
}

.plans-showcase__bg img {
    object-position: center right;
    display: block
}

.plans-showcase__overlay {
    z-index: 1;
    background: radial-gradient(circle at 48% 44%, rgba(255, 91, 28, .12)0, rgba(255, 91, 28, 0) 24%), linear-gradient(90deg, rgba(0, 0, 0, .94)0, rgba(0, 0, 0, .88) 23%, rgba(0, 0, 0, .34) 58%, transparent 100%)
}

.plans-showcase__arrow-bg {
    position: absolute;
    z-index: 2;
    right: -34px;
    top: -44px;
    width: 560px;
    opacity: .76;
    pointer-events: none;
    mix-blend-mode: screen
}

.plans-showcase__arrow-bg svg {
    width: 100%;
    height: auto;
    display: block
}

.plans-showcase__content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 27px 24px 22px 30px
}

.plans-showcase__feature {
    margin: 20px;
    max-width: 393px;
    color: #fff;
    font-size: 73px;
    line-height: .95;
    font-weight: 700;
    letter-spacing: -.04em
}

.plans-showcase__nav {
    position: absolute;
    left: 50px;
    top: 260px;
    display: flex;
    gap: 8px
}

.plans-showcase__arrow {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    background: #ff5b1c;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(255, 91, 28, .28)
}

.plans-showcase__arrow svg {
    width: 20px;
    height: 20px
}

.plans-cards {
    max-width: 1140px;
    margin: -251px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: relative;
    z-index: 5
}

.plan-card {
    position: relative;
    overflow: hidden;
    min-height: 251px;
    width: 375px;
    padding: 14px 14px 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 16px 30px rgba(11, 32, 64, .1);
    backdrop-filter: blur(10px)
}

.plan-card::after {
    content: "";
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0)0, rgba(255, 91, 28, .05) 100%);
    pointer-events: none
}

.plan-card__arrow-bg {
    position: absolute;
    left: -2px;
    top: -1px;
    pointer-events: none;
    z-index: 22
}

.plan-card__arrow-bg svg {
    height: auto;
    z-index: 99999;
    display: block
}

.plan-card__btn,
.plan-card__period,
.plan-card__price {
    position: relative;
    z-index: 1
}

.plan-card__badge {
    z-index: 1
}

.plan-card__period {
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    color: rgba(27, 58, 104, .24);
    margin-bottom: 10px;
    margin-top: 10px
}

.plan-card__original {
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
    color: rgba(27, 58, 104, .4);
    text-decoration: line-through;
    margin-bottom: 4px
}

.plan-card__price {
    font-size: 65px;
    line-height: 1;
    font-weight: 700;
    color: #ff5b1c;
    letter-spacing: -.03em;
    margin-bottom: 32px
}

.plan-card__btn {
    width: 100%;
    height: 66px;
    border-radius: 999px;
    border: 1px solid #ff5b1c;
    background: #fff;
    color: #ff5b1c;
    font-size: 22px;
    font-weight: 500
}

.plan-card--popular {
    background: #ff5b1c;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(255, 91, 28, .36), 0 0 40px rgba(255, 91, 28, .14)
}

.plan-card--popular::after {
    background: linear-gradient(145deg, rgba(255, 255, 255, .02)0, rgba(255, 255, 255, .07) 100%)
}

.plan-card--popular .plan-card__period {
    color: rgba(255, 255, 255, .72)
}

.plan-card--popular .plan-card__original {
    color: rgba(255, 255, 255, .5)
}

.plan-card--popular .plan-card__price {
    color: #fff
}

.plan-card--popular .plan-card__btn {
    background: #fff;
    border-color: #fff;
    color: #ff5b1c
}

.plan-card__badge {
    position: absolute;
    top: 28px;
    right: 10px;
    padding: 4px 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .62);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    backdrop-filter: blur(6px)
}

.plan-card--popular .plan-card__arrow-bg {
    opacity: .12
}

@media (max-width:900px) {

    .plans-cards,
    .plans-showcase {
        //max-width: calc(100% - 24px)
    }
}

@media (max-width:768px) {
    .plans-section {
        padding-top: 18px
    }

    .plans-section__title {
        font-size: 32px
    }

    .plans-showcase__card {
        height: 340px
    }

    .plans-showcase__feature {
        font-size: 34px;
        max-width: 230px
    }

    .plans-showcase__nav {
        bottom: 100px
    }

    .plans-cards {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 12px
    }

    .plan-card {
        min-height: 126px
    }

    .plan-card--popular {
        transform: none
    }
}

.site-footer {
    background: #d7e2e8;
    padding: 24px 32px 28px
}

.site-footer__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    padding: 42px 46px;
    grid-template-columns: minmax(300px, 1.1fr) minmax(420px, .9fr);
    gap: clamp(48px, 8vw, 110px);
    border: 1px solid rgba(27, 58, 104, .07);
    border-radius: 32px;
    background-color: #fff;
    background-image: radial-gradient(circle, rgba(27, 58, 104, .07) 2px, transparent 2.5px);
    background-position: 8px 8px;
    background-size: 42px 42px;
    box-sizing: border-box
}

.site-footer__brand {
    min-width: 0
}

.site-footer__logo {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 12px
}

.site-footer__logo img {
    width: 58px;
    height: 44px;
    object-fit: contain
}

.site-footer__logo-icon {
    flex-shrink: 0
}

.site-footer__logo-text {
    font-size: 22px;
    white-space: nowrap;
    font-weight: 800;
    color: #1b3a68
}

.site-footer__desc {
    max-width: 340px;
    margin: 22px 0 0;
    font-size: 17px;
    line-height: 1.4;
    color: #1b3a68
}

.site-footer__cta {
    display: inline-flex;
    min-height: 44px;
    margin-top: 24px;
    padding: 0 22px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 999px;
    background: #ff5b1c;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .25s ease, background .25s ease
}

.site-footer__cta:hover {
    transform: translateY(-2px);
    background: #e84e12
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px
}

.site-footer__col-title {
    font-size: 17px;
    font-weight: 800;
    color: #1b3a68;
    margin: 0 0 18px
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0
}

.site-footer__list li {
    margin-bottom: 12px
}

.site-footer__list a {
    font-size: 15px;
    color: #1b3a68;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease
}

.site-footer__list a:hover,
.site-footer__legal a:hover {
    color: #ff5b1c
}

.site-footer__bottom {
    display: flex;
    max-width: 1180px;
    margin: 12px auto 0;
    padding: 14px 24px 0;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box
}

.site-footer__bottom p {
    font-size: 13px;
    color: #1b3a68;
    margin: 0
}

.site-footer__legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px
}

.site-footer__legal a {
    color: #1b3a68;
    font-size: 12px;
    text-decoration: none;
    transition: color .2s ease
}

.hero-card__button-wrapper-mobile {
    display: none
}

.castings-hero .pill[data-object=b] {
}

@media (max-width: 768px) {
    .casting-thumb {
        /* max-height: 345px; */
    }
}

@media (max-width: 390px) and (max-height: 700px) {
    .casting-thumb {
        height: 120px;
    }
}

.home-track:first {
    height: 5200px;

}




@media (max-width:768px) {
    .site-footer {
        display: flex;
        width: 100%;
        height: 100%;
        min-height: 0;
        padding: 12px 10px 16px;
        flex-direction: column;
        justify-content: flex-start;
        gap: 12px;
        box-sizing: border-box
    }

    .site-footer__inner {
        width: 100%;
        min-height: 0;
        margin: 0 auto;
        padding: clamp(24px, 4.2svh, 38px) 18px;
        flex: 1 1 auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        align-content: space-between;
        gap: clamp(28px, 5svh, 48px);
        border-radius: 26px
    }

    .site-footer__brand {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        align-self: start;
        gap: 10px 14px
    }

    .site-footer__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-self: end;
        gap: 18px
    }

    .site-footer__col {
        min-width: 0
    }

    .site-footer__logo {
        grid-column: 1 / -1
    }

    .site-footer__logo img {
        width: 46px;
        height: 34px
    }

    .site-footer__logo-text {
        font-size: 19px
    }

    .site-footer__desc {
        margin: 10px 0 0;
        font-size: 13px;
        line-height: 1.35
    }

    .site-footer__cta {
        min-height: 38px;
        margin: 0;
        padding: 0 15px;
        font-size: 12px
    }

    .site-footer__col-title {
        margin-bottom: 10px;
        font-size: 14px
    }

    .site-footer__list li {
        margin-bottom: 7px
    }

    .site-footer__list a {
        font-size: 12px
    }

    .site-footer__bottom {
        width: 100%;
        margin: 0 auto;
        padding: 4px 8px 0;
        flex: 0 0 auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px
    }

    .site-footer__legal {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 6px 14px
    }

    .site-footer__legal a {
        font-size: 10px
    }

    .hero-card {
        width: 96vw;
        max-width: calc(100vw - 20px);
        height: auto;
        min-height: 0;
        padding: 0;
        justify-content: flex-start;
        position: relative
    }

    .hero-card__title {
        max-width: none;
        margin: 0 0 28px;
        letter-spacing: -1px;
        text-align: center
    }

    .hero-card__title-brand {
        font-size: clamp(2.15rem, 7vw, 3rem)
    }

    .hero-card__title-descriptor {
        max-width: 520px;
        margin: 10px auto 0;
        font-size: clamp(14px, 3vw, 18px);
        line-height: 1.4;
        text-align: center
    }

    .hero-card__left {
        width: 100%;
        padding: 28px 24px 0
    }

    .hero-card .plane-1,
    .hero-card .plane-2 {
        top: 18%;
        right: 15%;
        left: auto;
        width: 40px;
        transform: rotate(2deg)
    }

    .hero-card .plane-2 {
        top: 26%;
        left: 6%;
        right: auto;
        width: 80px
    }

    .hero-card .plane-3 {
        bottom: 21%;
        right: 12%;
        left: auto;
        width: 35px;
        transform: rotate(2deg)
    }

    .hero-card__features {
        gap: 14px;
        margin-bottom: 32px
    }

    .hero-card__feature {
        width: min(92%, 620px);
        max-width: none;
        padding: 8px 18px;
        font-size: clamp(14px, 2.6vw, 18px)
    }

    .hero-card__feature:nth-child(1) {
        align-self: flex-end
    }

    .hero-card__feature:nth-child(2) {
        align-self: flex-start
    }

    .hero-card__feature:nth-child(3) {
        align-self: flex-end
    }

    .hero-card__right {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 360px;
        min-height: 0;
        flex: 0 0 360px
    }

    .hero-card__right img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: right bottom;
        transform: translateY(18px) scale(1.06);
        transform-origin: center bottom
    }

    .hero-card__button-wrapper-mobile {
        position: absolute;
        display: block;
        left: 50%;
        bottom: 24px;
        transform: translateX(-50%);
        width: calc(100% - 48px);
        max-width: 420px;
        margin: 0;
        padding: 0;
        z-index: 101;
    }

    .hero-card__button-wrapper-mobile .hero-card__price {
        right: 12px;
        left: auto
    }

    .hero-card__button-wrapper-mobile .hero-card__button {
        width: 100%;
        display: flex;
        justify-content: center
    }

    .hide_mobile {
        display: none
    }

    .castings-hero {
        /* padding: 20px 16px 0; */
    }

    .castings-hero h2 {
        font-size: 4.5svh;
        line-height: 1;
        margin-bottom: 1svh;
        flex-shrink: 0;
    }

    .castings-hero .subtitle {
        font-size: 2.5svh;
        line-height: 1.15;
        max-width: 87%;
        margin: 0 auto;
        flex-shrink: 0;
    }

    .castings--nda {
        margin-top: 0.5svh;
        background: 0 0;
        width: auto;
        padding: 0;
        font-size: 1.5svh;
        font-weight: 600
    }

    .castings-hero .filters {
        position: relative;
        height: 18svh;
        margin-top: 1svh;
        display: block;
        overflow: visible;
        width: 100%;
    }

    .castings-hero .pill {
        position: absolute;
        font-size: 2.9svh;
        padding: 1.2svh 6vw;
        border-radius: 999px;
        background: #1f4278;
        border: 2px solid #1f4278;
        color: #fff;
        transition: all 0.2s;
    }

    .castings-hero .pill.active {
        background: transparent;
        color: #1f4278;
        border-color: #1f4278;
    }

    .castings-hero .pill:nth-child(1) {
    }

    .castings-hero .pill[data-category=games] {
        left: -1%;
        top: 1%;
        transform: rotate(12deg);
    }

    .castings-hero .pill[data-category=anime] {
        right: -1%;
        top: 1%;
        transform: rotate(-8deg);
    }

    .castings-hero .pill[data-object=a] {
        left: 50%;
        top: 31%;
        transform: translateX(-50%)
    }

    .castings-hero .pill[data-object=b] {
        left: 0;
        top: 64%;
        transform: rotate(-14deg);
    }

    .castings-hero .pill[data-category=series] {
        right: 1%;
        top: 64%;
        transform: rotate(10deg);
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .site-header {
        padding-inline: 20px
    }

    .site-header .header__logo {
        display: flex !important
    }

    .site-header .header__nav {
        display: flex !important;
        gap: 14px
    }

    .site-header .header__mobile {
        display: none !important
    }

    .site-header .header__link {
        font-size: 12px
    }

    .site-header .header__btn {
        padding-inline: 16px;
        font-size: 13px
    }
}

@media (max-width:380px) {
    .snap-section--castings {
        height: 91svh;
    }

    .snap-section--castings .dubbing-showcase,
    .snap-section--castings .plans-showcase {
        height: 91svh;
    }

    .castings-hero h2 {
        font-size: 4svh;
        margin-bottom: 0.5svh;
    }

    .castings-hero .subtitle {
        font-size: 2.2svh;
    }

    .castings--nda {
        margin-top: 0.2svh;
    }

    .castings-hero .filters {
        height: 15svh;
        margin-top: 0.5svh;
    }

    .castings-hero .pill {
        font-size: 3.4svh;
        padding: 1svh 4.5vw;
    }

    .snap-section--castings .castings-hero {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .snap-section--castings .hide_mobile {
        padding-top: 10px;
    }

    .snap-section--castings .btn-primary {
        min-height: 5svh;
        font-size: 2.2svh;
    }
}

@media (max-width:690px) {
    .castings-marquee {
        padding: 0 0 32px
    }

    .viewport {
        margin-top: 20px;
        padding: 0 16px;
        overflow: hidden;
        scrollbar-width: none
    }

    .viewport::-webkit-scrollbar {
        display: none
    }

    #castingTrack {
        gap: 10px;
        width: max-content;
        padding: 2px 0;
        height: 100%;
        align-items: stretch;
    }

    .casting-card {
        width: auto;
        height: 100%;
        aspect-ratio: 180 / 293;
        border: 8px solid #fff;
        border-radius: 24px
    }

    .casting-thumb {
        height: 100%;
    }

    .casting-title {
        top: 27px;
        left: 16px;
        right: 16px;
        /* width: 90%; */
        /* margin: 0 auto; */
        font-size: 24px;
        line-height: 1
    }

    .casting-badge {
        left: 12px;
        bottom: 14px
    }

    .casting-info {
        padding: 0;
    }

    .casting-btn-ghost,
    .casting-btn-outline {
        font-size: 18px;
        min-height: 36px;
        padding: 0 10px
    }

    .btn-primary {
        display: block;
        width: calc(100% - 40px);
        margin: 0 auto;
        min-height: 58px;
        font-size: 28px;
        font-weight: 700
    }

    .snap-section--castings .hide_mobile {
        display: block;
    }

    .snap-section--castings .btn-primary {
        min-height: 42px;
        font-size: 18px;
        border-radius: 12px;
        padding: 0;
    }
}

.fb-review__quotes svg {
    display: block;
    width: 100%;
    height: 100%
}

@media (max-width:768px) {
    .fb-review {
        padding: 10px 8px;
        background: #d7e2e8
    }

    .fb-review__card {
        width: min(312px, calc(100vw - 16px));
        height: 629px;
        min-height: 629px;
        margin: 0 auto;
        border-radius: 14px;
        overflow: hidden;
        background: linear-gradient(270deg, #f1f1f1 0, #fff 100%)
    }

    .fb-review__bg {
        right: -74px;
        top: 112px;
        width: 170%;
        opacity: .65
    }

    .fb-review__content {
        position: absolute;
        inset: 0;
        width: 100%;
        padding: 14px 12px 0;
        z-index: 6;
        text-align: center
    }

    .fb-review__title {
        margin: 0;
        font-size: 22px;
        line-height: .98;
        white-space: normal;
        letter-spacing: -.02em;
        color: #1b3a68;
        font-weight: 800
    }

    .fb-review__subtitle {
        margin-top: 8px;
        font-size: 12px;
        line-height: 1.1;
        color: #ff5b1c;
        font-weight: 800
    }

    .fb-review__text {
        margin: 8px auto 0;
        max-width: 224px;
        color: #1b3a68;
        font-size: 12px;
        line-height: 1.25
    }

    .fb-review__text span {
        color: #ff5b1c;
        font-weight: 700
    }

    .fb-review__bubble {
        position: absolute;
        left: 50%;
        bottom: 86px;
        transform: translateX(-50%);
        width: 180px;
        min-height: 60px;
        margin: 0;
        padding: 8px 12px;
        border-radius: 14px;
        background: #e5e7eb;
        color: #6a7890;
        font-size: 10px;
        line-height: 1.25;
        display: flex;
        align-items: center;
        text-align: left;
        z-index: 8
    }

    .fb-review__button {
        position: absolute;
        left: 13px;
        right: 13px;
        bottom: 13px;
        margin: 0;
        min-height: 42px;
        padding: 0 16px;
        border-radius: 999px;
        font-size: 14px;
        line-height: 1;
        z-index: 9;
        box-shadow: 0 8px 18px rgba(255, 91, 28, .22)
    }

    .fb-review__image {
        position: absolute;
        left: 14px;
        top: 180px;
        bottom: 14px;
        width: auto;
        height: auto;
        right: auto;
        z-index: 2;
        overflow: hidden;
        border-radius: 0 0 12px 12px;
        transform: none
    }

    .fb-review__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 14%;
        transform: none
    }

    .fb-review__quotes {
        z-index: 7
    }

    .fb-review__quotes--1 {
        left: 46px;
        top: 286px;
        width: 42px;
        height: 39px;
        transform: rotate(16deg)
    }

    .fb-review__quotes--2 {
        right: 20px;
        left: auto;
        bottom: 84px;
        top: auto;
        width: 30px;
        height: 28px;
        transform: rotate(-14deg)
    }

    .fb-review__quotes--3 {
        left: 50px;
        bottom: 87px;
        top: auto;
        width: 30px;
        height: 28px;
        transform: rotate(10deg)
    }
}

.fb-review {
    background: #d7e2e8;
    padding: 26px 0 36px
}

.fb-review__desktop {
    display: block
}

.fb-review__mobile {
    display: none
}

.fb-review__card {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
    min-height: 618px;
    background: linear-gradient(270deg, #f1f1f1 0, #fff 100%);
    border-radius: 33px;
    overflow: hidden
}

.fb-review__bg,
.fb-review__quotes {
    position: absolute;
    pointer-events: none
}

.fb-review__bg {
    right: -8px;
    top: -22px;
    width: 86%;
    height: auto;
    z-index: 1
}

.fb-review__quotes {
    z-index: 4
}

.fb-review__quotes--1 {
    left: 81px;
    top: 202px;
    width: 90px;
    height: 84px;
    transform: rotate(46deg)
}

.fb-review__quotes--2 {
    left: 579px;
    top: 121px;
    width: 55px;
    height: 50px;
    transform: rotate(-2deg);
}

.fb-review__quotes--3 {
    left: 536px;
    top: 282px;
    width: 140px;
    height: 130px;
    transform: rotate(-5deg)
}

.fb-review__content {
    position: absolute;
    left: 45px;
    top: 35px;
    width: 520px;
    z-index: 3
}

.fb-review__title {
    font-size: 62px;
    line-height: .95;
    white-space: nowrap
}

.fb-review__subtitle {
    margin-top: 12px;
    color: #ff5b1c;
    font-size: 39px;
    line-height: 1.05;
    font-weight: 800
}

.fb-review__bubble {
    margin-top: 54px;
    margin-left: 176px;
    width: 445px;
    min-height: 101px;
    padding: 14px 24px;
    border-radius: 22px;
    background: #e5e7eb;
    color: #1b3a68;
    font-size: 22px;
    line-height: 1.45;
    display: flex;
    align-items: center;
    font-weight: 300
}

.fb-review__text {
    margin: 29px 0 0;
    max-width: 372px;
    color: #1b3a68;
    font-size: 23px;
    line-height: 1.3;
}

.fb-review__text span {
    color: #ff5b1c
}

.fb-review__button {
    margin-top: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 20px 40px;
    border-radius: 999px;
    background: #ff5b1c;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(255, 91, 28, .18)
}

.fb-review__image {
    position: absolute;
    right: -327px;
    width: 68%;
    bottom: -203px;
    height: 105%;
    z-index: 4
}

.fb-review__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.4);
    transform-origin: right center
}

@media (max-width:768px) {
    .fb-review {
        padding: 0 8px;
    }

    .fb-review__desktop {
        display: none
    }

    .fb-review__mobile {
        display: block;
        height: 100%;
        /* margin-top: 40px; */
    }

    .fb-review__mobile-card {
        position: relative;
        height: 91svh;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 14px;
        background: linear-gradient(270deg, #f1f1f1 0, #fff 100%)
    }

    .fb-review__mobile-bg {
        position: absolute;
        right: -1px;
        top: 126px;
        width: 196%;
        height: auto;
        z-index: 1;
        pointer-events: none;
        opacity: .7
    }

    .fb-review__mobile-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 6;
        padding: 14px 14px 0;
        text-align: center
    }

    .fb-review__mobile-title {
        margin: 0;
        color: #1b3a68;
        font-size: 32px;
        line-height: 1.03;
        font-weight: 800;
        letter-spacing: -.02em
    }

    .fb-review__mobile-subtitle {
        margin-top: 7px;
        color: #ff5b1c;
        font-size: 24px;
        line-height: 1.15;
        font-weight: 800
    }

    .fb-review__mobile-text {
        margin: 8px auto 0;
        color: #1b3a68;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 400
    }

    .fb-review__mobile-text span {
        color: #ff5b1c;
        font-weight: 700
    }

    .fb-review__mobile-image {
        position: absolute;
        left: 0;
        right: 14px;
        width: 105%;
        top: 192px;
        bottom: -70px;
        z-index: 2;
        overflow: hidden;
        border-radius: 14px
    }

    .fb-review__mobile-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 12%;
        transform: none
    }

    .fb-review__mobile-bubble {
        position: absolute;
        left: auto;
        right: -180px;
        bottom: 131px;
        transform: translateX(-50%);
        width: 355px;
        min-height: 61px;
        padding: 11px 15px;
        border-radius: 14px;
        background: #e5e7eb;
        color: #6a7890;
        font-size: 20px;
        line-height: 1.25;
        z-index: 8;
        display: flex;
        align-items: center;
        text-align: left
    }

    .fb-review__mobile-button {
        position: absolute;
        left: 13px;
        right: 13px;
        bottom: 13px;
        min-height: 42px;
        border-radius: 999px;
        background: #ff5b1c;
        color: #fff;
        font-size: 18px;
        line-height: 1;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9;
        padding: 20px 0;
        box-shadow: 0 8px 18px rgba(255, 91, 28, .22)
    }

    .fb-review__mobile-quotes {
        position: absolute;
        z-index: 7;
        pointer-events: none
    }

    .fb-review__mobile-quotes svg {
        display: block;
        width: 100%;
        height: 100%
    }

    .fb-review__mobile-quotes--1 {
        left: 30px;
        top: 218px;
        width: 100px;
        height: 100px;
        transform: rotate(36deg)
    }

    .fb-review__mobile-quotes--2 {
        right: 20px;
        bottom: 203px;
        width: 54px;
        height: 56px;
        transform: rotate(-14deg);
        z-index: 99
    }

    .fb-review__mobile-quotes--3 {
        left: 73px;
        bottom: 80px;
        width: 80px;
        height: 60px;
        transform: rotate(-11deg);
        z-index: 99
    }

    .castings--nda {
        display: none
    }

    .castings-hero {
        position: relative;
        background-color: #fff !important;
        background-image: radial-gradient(circle, #f7f7f7 5.5px, transparent 5.5px) !important;
        background-size: 53px 52px !important;
        border-radius: 32px;
        width: 96vw;
        margin: 0 auto
    }

    .dubbing-showcase {
        background-color: #fff !important;
        background-image: radial-gradient(circle, #f7f7f7 5.5px, transparent 5.5px) !important;
        background-size: 53px 52px !important;
        border-radius: 32px;
        width: 96vw;
        margin: 0 auto;
        margin-top: 20px;
        height: 91svh
    }

    .plans-section {
        background-color: #fff !important;
        background-image: radial-gradient(circle, #f7f7f7 5.5px, transparent 5.5px) !important;
        background-size: 53px 52px !important;
        border-radius: 32px;
        width: 96vw;
        margin: 0 auto;
        margin-top: 20px;
        height: 91svh
    }

    .plans-showcase {
        max-width: auto;
    }

    .dubbing-showcase {
        margin-top: 20px;
        position: relative;
    }

    section h2 {
        z-index: 333333;
    }

    .castings-hero,
    .dubbing-showcase {
        position: relative;
        isolation: isolate;
    }

    .castings-hero::before,
    .dubbing-showcase,
    .dubbing-showcase::before {
        /* content: ""; */
        /* position: absolute; */
        /* top: 0; */
        /* right: 0; */
        /* width: 300%; */
        /* height: 400px; */
        /* background: url(/static/img/hero-pattern.svg) no-repeat; */
        /* background-size: contain; */
        /* opacity: .75; */
        /* z-index: -1; */
    }

    .casting-empty__card {

        min-height: auto;
    }

    .dubbing-showcase__nav {
        display: none;
    }

    .dubbing-showcase__title {
        width: 80%;
        margin: 0 auto;
    }

    .dubbing-showcase__subtitle {
        font-size: 20px;
        /* width: 90%; */
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 50px;
    }
}

@media (max-width:768px) {

    .dubbing-showcase {
        height: 91svh;
        padding: 16px 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .dubbing-showcase__title {
        font-size: 29px;
        line-height: 1.1;
        padding: 0 16px;
        flex-shrink: 0;
    }

    .dubbing-showcase__subtitle {
        font-size: 18px;
        width: 90%;
        margin-top: 18px;
        margin: 0 auto;
        margin-top: 21px;
        margin-bottom: 52px;
        padding: 0 16px;
        flex-shrink: 0;
    }

    .dubbing-showcase__carousel {
        flex: 1;
        margin-top: 16px;
        padding: 0 12px;
        display: flex;
        align-items: stretch;
        overflow: hidden;
    }

    .dubbing-showcase__track {
        height: 100%;
        gap: 12px;
        align-items: stretch;
        min-width: max-content;
    }

    .dub-card {
        height: 100%;
        border-radius: 24px;
        min-width: 225px;
        flex: 0 0 150px;
    }

    .dub-card__hover-title,
    .dub-card__title {
        font-size: 22px;
        top: 21px;
        padding: 0 16px;
        line-height: normal;
    }

    .dub-card__hover {
        padding: 70px 16px 16px;
    }

    .dub-card__desc {
        font-size: 13px;
        line-height: 1.45;
    }

    .dub-card__btn {
        height: 42px;
    }

    .dub-card__btn-avatar {
        width: 34px;
        height: 34px;
    }

    .dub-card__btn-text {
        font-size: 14px;
    }

    .dub-card__author {
        min-height: 46px;
    }

    .dub-card__author-avatar {
        width: 30px;
        height: 30px;
    }

    .dub-card__author-name {
        font-size: 13px;
    }

    .dubbing-showcase__footer {
        margin-top: 12px;
        padding: 0 12px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .dubbing-showcase__cta {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    .dubbing-showcase__nav {
        justify-content: center;
    }

    .dubbing-showcase__arrow {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 768px) {
    .plans-section {
        width: 96vw;
        height: 91svh;
        margin: 20px auto 0;
        padding: 14px 0 16px;
        border-radius: 32px;
        overflow: hidden;
        background: #fff !important;
        background-image: radial-gradient(circle, #f5f5f5 5.5px, transparent 5.5px) !important;
        background-size: 53px 52px !important;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .plans-section__title {
        margin: 11px 0 8px;
        padding: 0 16px;
        font-size: 37px;
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: -.03em;
        color: #1b3a68;
        text-align: center;
    }

    .plans-section__subtitle {
        margin: 0 0 49px;
        padding: 0 22px;
        font-size: 20px;
        line-height: 1.25;
        color: #1b3a68;
        text-align: center;
    }

    .plans-showcase {
        flex: 1;
        min-height: 0;
        width: 100%;
        padding: 0 12px;
        position: relative;
        z-index: 1;
    }

    .plans-showcase__card {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 0;
        border-radius: 24px;
        overflow: hidden;
        background: #0b0b0d;
        box-shadow: 0 20px 48px rgba(11, 32, 64, .16);
    }

    .plans-showcase__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 65% center;
        transform: scale(1.34);
    }

    .plans-showcase__overlay {
        background:
            radial-gradient(circle at 44% 40%, rgba(255, 91, 28, .12) 0, rgba(255, 91, 28, 0) 24%),
            linear-gradient(90deg, rgba(0, 0, 0, .96) 0, rgba(0, 0, 0, .88) 22%, rgba(0, 0, 0, .34) 58%, transparent 100%);
    }

    .plans-showcase__arrow-bg {
        z-index: 2;
        width: 185%;
        height: auto;
        left: auto;
        right: -52%;
        top: 50%;
        transform: translateY(-50%);
        opacity: .82;
        pointer-events: none;
        mix-blend-mode: normal;
    }

    .plans-showcase__content {
        position: relative;
        z-index: 3;
        height: 100%;
        padding: 16px 14px 14px;
    }

    .plans-showcase__feature {
        margin: 8px auto 0;
        max-width: 240px;
        font-size: 44px;
        line-height: 1.02;
        font-weight: 700;
        letter-spacing: -.04em;
        color: #fff;
        text-align: center;
    }

    .plans-showcase__nav {
        display: none;
    }

    .plans-cards {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 5;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        overflow-y: visible;
        margin: 0;
        padding: 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .plans-cards::-webkit-scrollbar {
        display: none;
    }

    .plan-card {
        flex: 0 0 178px;
        width: 178px;
        min-width: 248px;
        min-height: 184px;
        padding: 12px 12px 10px;
        border-radius: 24px;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 16px 30px rgba(11, 32, 64, .1);
        scroll-snap-align: start;
        position: relative;
        overflow: hidden;
    }

    .plan-card--popular {
        transform: none;
    }

    .plan-card__badge {
        top: 10px;
        right: 10px;
        padding: 3px 10px;
        font-size: 11px;
        line-height: 16px;
    }

    .plan-card__period {
        margin: 6px 0 6px;
        font-size: 18px;
        line-height: 1;
        font-weight: 700;
        color: rgba(27, 58, 104, .25);
    }

    .plan-card__original {
        font-size: 16px;
        line-height: 1;
        font-weight: 500;
        color: rgba(27, 58, 104, .4);
        text-decoration: line-through;
        margin-bottom: 4px
    }

    .plan-card__price {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: -.03em;
        color: #ff5b1c;
    }

    .plan-card__btn {
        width: 100%;
        height: 56px;
        border-radius: 999px;
        border: 1px solid #ff5b1c;
        background: #fff;
        color: #ff5b1c;
        font-size: 18px;
        font-weight: 500;
    }

    .plan-card__arrow-bg {
        left: -2px;
        top: -1px;
        width: 104%;
        opacity: 1;
        pointer-events: none;
    }

    .plan-card--popular {
        background: #ff5b1c;
        box-shadow: 0 18px 34px rgba(255, 91, 28, .36), 0 0 40px rgba(255, 91, 28, .14);
    }

    .plan-card--popular .plan-card__period {
        color: rgba(255, 255, 255, .72);
    }

    .plan-card--popular .plan-card__original {
        color: rgba(255, 255, 255, .5);
    }

    .plan-card--popular .plan-card__price {
        color: #fff;
    }

    .plan-card--popular .plan-card__btn {
        background: #fff;
        border-color: #fff;
        color: #ff5b1c;
    }

    .plan-card--popular .plan-card__arrow-bg {
        opacity: .12;
    }
}

@media (max-width: 420px) {
    .plans-section__title {
        font-size: 29px;
    }

    .plans-section__subtitle {
        font-size: 14px;
    }

    .plans-showcase__feature {
        font-size: 24px;
        max-width: 230px;
    }

    .plan-card {
        flex-basis: 172px;
        width: 172px;
        min-width: 172px;
        min-height: 211px;
    }
}


/* ============================================================
   MOBILE TIKTOK SCROLL — только для телефонной ширины
   ============================================================ */
@media (max-width: 600px) {

    /* Корневой контейнер прокрутки */
    html,
    body {
        overflow: hidden;
        height: 100%;
        height: 100svh;
    }

    body:has(.sessions) {
        overflow: auto;
    }

    /* Scroll-контейнер */
    #mobile-snap-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: scroll;
        overflow-x: hidden;
        scroll-snap-type: y mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
        scrollbar-width: none;
        z-index: 1;
    }

    #mobile-snap-container::-webkit-scrollbar {
        display: none;
    }

    /* Navbar — всегда поверх */
    .header__mobile {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 99999 !important;
    }

    /* Все snap-секции */
    .snap-section {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        /* height: 100svh; */
        /* min-height: 100svh; */
        /* max-height: 100svh; */
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    /* Первая секция — Hero */
    .snap-section--hero {
        /* Учитываем высоту мобильного navbar (~64px) */
        /* height: 100svh; */
        padding-top: 0;
        display: flex;
        align-items: stretch;
    }

    .snap-section--hero .hero {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: stretch;
    }

    .snap-section--hero .hero-card {
        width: 96vw;
        max-width: none;
        margin: 12px auto 0;
        /* высота: весь экран минус navbar минус отступ */
        height: calc(100svh - 76px);
        min-height: calc(100svh - 76px);
        border-radius: 28px;
    }

    /* Секция кастинги */
    .snap-section--castings {
        background-color: #fff;
        background-image: radial-gradient(circle, #f7f7f7 5.5px, transparent 5.5px);
        background-size: 53px 52px;
        border-radius: 32px;
        width: 96vw;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        height: 93svh;
    }

    .snap-section--castings .castings-hero {
        width: 100%;
        padding-top: 8px;
        padding-bottom: 8px;
        box-sizing: border-box;
        height: 100%;
        margin: 0;
        border-radius: 32px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .snap-section--castings .viewport {
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

    .snap-section--castings .hide_mobile {
        display: block;
        padding-top: 20px;
        flex-shrink: 0;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .snap-section--castings .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 6svh;
        margin: 0 auto;
        font-size: 2.5svh;
        border-radius: 999px;
        padding: 0;
        flex-shrink: 0;
        text-decoration: none;
    }

    .snap-section--castings .btn-primary {
        /* margin-top: auto; */
    }

    /* fb-review (персональный разбор) */
    .snap-section--review {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .snap-section--review .fb-review {
        width: 100%;
        height: 91svh;
        /* padding: 8px; */
        display: flex;
        align-items: center;
        justify-content: center;
        background: #d7e2e8;
    }

    .snap-section--review .fb-review__mobile-card {
        width: 96vw;
        /* height: calc(100svh - 16px); */
        min-height: unset;
        max-height: calc(100svh - 16px);
        margin: 0 auto;
        border-radius: 28px;
    }

    /* Дублинг-шоукейс */
    .snap-section--dubbing {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .snap-section--dubbing .dubbing-showcase {
        width: 96vw;
        height: 93svh;
        margin: 0 auto;
        border-radius: 32px;
    }

    /* Планы */
    .snap-section--plans {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .snap-section--plans .plans-section {
        width: 96vw;
        height: 91svh;
        margin: 0 auto;
    }

    /* Футер — своя snap-секция, скроллится внутри себя если нужно */
    .snap-section--footer {
        height: calc(100svh - 64px);
        min-height: calc(100svh - 64px);
        overflow: hidden;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    /* ---- Swipe hint (TikTok nudge) ---- */
    @keyframes mobile-nudge-hint {
        0% {
            transform: translateY(0);
        }

        30% {
            transform: translateY(-28px);
        }

        60% {
            transform: translateY(-6px);
        }

        80% {
            transform: translateY(-14px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .snap-nudge-active {
        animation: mobile-nudge-hint 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    /* Иконка-подсказка "свайпни вверх" */
    #swipe-hint-icon {
        position: absolute;
        bottom: 28px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    #swipe-hint-icon.visible {
        opacity: 1;
    }

    #swipe-hint-icon svg {
        animation: swipe-arrow-bounce 1.2s ease-in-out infinite;
    }

    #swipe-hint-icon span {
        font-size: 11px;
        font-weight: 600;
        color: rgba(27, 58, 104, 0.55);
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    @keyframes swipe-arrow-bounce {

        0%,
        100% {
            transform: translateY(0);
            opacity: 0.5;
        }

        50% {
            transform: translateY(-6px);
            opacity: 1;
        }
    }
}

/* Casting cards */
.castings-hero > .viewport {
    width: min(1160px, calc(100% - 40px));
    margin: 10px auto 0;
    overflow: hidden;
}

#castingTrack {
    height: auto;
    align-items: stretch;
    gap: 16px;
    padding: 14px 2px 30px;
}

.casting-card {
    display: flex;
    width: 340px;
    min-width: 340px;
    height: auto;
    min-height: 398px;
    aspect-ratio: auto;
    padding: 9px;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid rgba(27, 58, 104, .14);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(27, 58, 104, .08);
    cursor: pointer;
    z-index: 1;
    transition:
        transform .32s cubic-bezier(.2, .8, .2, 1),
        box-shadow .32s ease,
        border-color .32s ease;
}

.casting-card:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 58, 104, .3);
    box-shadow: 0 18px 42px rgba(27, 58, 104, .15);
}

.casting-thumb {
    position: relative;
    height: 210px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: #1b3a68;
}

.casting-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .65s cubic-bezier(.2, .8, .2, 1);
}

.casting-card:hover .casting-thumb img,
.casting-card:focus-within .casting-thumb img,
.casting-card.is-touch .casting-thumb img {
    transform: scale(1.055);
}

.casting-thumb__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 31, 60, .56) 0%, rgba(10, 31, 60, 0) 42%),
        linear-gradient(0deg, rgba(10, 31, 60, .2) 0%, rgba(10, 31, 60, 0) 38%);
    pointer-events: none;
}

.casting-card__topline {
    position: absolute;
    top: 12px;
    right: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.casting-category,
.casting-badge {
    display: inline-flex;
    min-height: 31px;
    align-items: center;
    box-sizing: border-box;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.casting-category {
    padding: 7px 12px;
    background: rgba(255, 255, 255, .94);
    color: #1b3a68;
    text-transform: lowercase;
    backdrop-filter: blur(8px);
}

.casting-badge {
    position: static;
    padding: 7px 11px;
    background: #ff5b1c;
    color: #fff;
    box-shadow: none;
}

.casting-badge--finished {
    background: rgba(27, 58, 104, .82);
}

.casting-info {
    display: flex;
    flex: 1 1 auto;
    padding: 17px 10px 7px;
    flex-direction: column;
    gap: 0;
    text-align: left;
}

.casting-meta {
    margin-bottom: 7px;
    color: rgba(27, 58, 104, .62);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.casting-title {
    position: static;
    margin: 0;
    color: #1b3a68;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.12;
    text-align: left;
}

.casting-actions {
    width: 100%;
    margin-top: auto;
    padding-top: 18px;
}

.casting-btn-ghost,
.casting-btn-outline {
    display: flex;
    width: 100%;
    min-height: 50px;
    padding: 11px 15px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.casting-btn-outline {
    background: #1b3a68;
    color: #fff;
    transition: background .25s ease, transform .25s ease;
}

.casting-card:hover .casting-btn-outline {
    background: #244b82;
}

.casting-btn-outline__arrow {
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff5b1c;
    color: #fff;
    font-size: 17px;
    transition: transform .25s ease;
}

.casting-card:hover .casting-btn-outline__arrow {
    transform: translateX(3px);
}

.casting-btn-disabled {
    background: #edf2f5;
    color: rgba(27, 58, 104, .48);
}

.casting-card.is-finished {
    box-shadow: 0 8px 24px rgba(27, 58, 104, .05);
}

.casting-card.is-finished .casting-thumb img {
    filter: grayscale(.35);
    opacity: .78;
}

@media (max-width: 900px) {
    .casting-card {
        width: 300px;
        min-width: 300px;
    }
}

@media (max-width: 600px) {
    .castings-hero > .viewport {
        width: 100%;
        margin-top: 4px;
        padding: 0 0 0 14px;
        box-sizing: border-box;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-padding-left: 14px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .castings-hero > .viewport::-webkit-scrollbar {
        display: none;
    }

    #castingTrack {
        width: max-content;
        height: auto;
        gap: 12px;
        padding: 6px 42px 18px 0;
        transform: none !important;
        touch-action: pan-x pan-y !important;
        cursor: grab;
    }

    .casting-card {
        width: min(318px, calc(100vw - 64px));
        min-width: min(318px, calc(100vw - 64px));
        height: auto;
        min-height: 330px;
        aspect-ratio: auto;
        padding: 7px;
        border-radius: 23px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        box-shadow: 0 9px 24px rgba(27, 58, 104, .09);
    }

    .casting-card:hover {
        transform: none;
        box-shadow: 0 9px 24px rgba(27, 58, 104, .09);
    }

    .casting-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9.8;
        border-radius: 17px;
    }

    .casting-card__topline {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .casting-category,
    .casting-badge {
        min-height: 27px;
        padding: 6px 9px;
        font-size: 11px;
    }

    .casting-info {
        padding: 13px 8px 5px;
    }

    .casting-meta {
        margin-bottom: 5px;
        font-size: 11px;
    }

    .casting-title {
        font-size: clamp(20px, 6vw, 23px);
    }

    .casting-actions {
        padding-top: 13px;
    }

    .casting-btn-ghost,
    .casting-btn-outline {
        min-height: 44px;
        padding: 9px 13px;
        font-size: 15px;
    }

    .casting-btn-outline__arrow {
        width: 23px;
        height: 23px;
        font-size: 15px;
    }
}

/* Узкое окно компьютера и планшет: обычная прокрутка, без snap-режима */
@media (min-width: 601px) and (max-width: 768px) {
    .snap-section--hero {
        padding-top: 72px;
    }
}

/* Обновлённое вступление блока «Кастинги» */
.castings-hero {
    padding-top: 56px;
}

.castings-hero__intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 48px;
    width: calc(100% - 40px);
    max-width: 1160px;
    margin: 0 auto 30px;
    padding: 54px 52px 38px;
    overflow: visible;
    border: 1px solid rgba(27, 58, 104, .08);
    border-radius: 32px;
    background-color: #fff;
    background-image: radial-gradient(circle, #f3f5f6 4px, transparent 4px);
    background-size: 42px 42px;
    text-align: left;
}

.castings-hero__transition {
    position: absolute;
    top: -32px;
    left: 50%;
    z-index: 4;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 8px solid #d7e2e8;
    border-radius: 50%;
    background: #1b3a68;
    transform: translateX(-50%);
}

.castings-hero__transition::before {
    content: "";
    position: absolute;
    top: -20px;
    width: 3px;
    height: 16px;
    border-radius: 99px;
    background: #ff5b1c;
}

.castings-hero__transition span {
    width: 11px;
    height: 11px;
    margin-top: -5px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: castings-transition-float 2.4s ease-in-out infinite;
}

@keyframes castings-transition-float {
    0%,
    100% {
        transform: translateY(-2px) rotate(45deg);
    }

    50% {
        transform: translateY(3px) rotate(45deg);
    }
}

.castings-hero__copy h2 {
    margin: 0;
    color: #1b3a68;
    font-size: clamp(48px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -1.5px;
}

.castings-hero__copy .subtitle {
    max-width: 470px;
    margin: 18px 0 0;
    color: #1b3a68;
    font-size: clamp(25px, 2.4vw, 32px);
    line-height: 1.2;
}

.castings-hero__controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.castings-hero__intro .filters {
    position: static;
    display: flex;
    width: 100%;
    height: auto;
    margin: 0;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
}

.castings-hero__intro .pill {
    position: static;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1.5px solid rgba(27, 58, 104, .38);
    border-radius: 999px;
    background: rgba(215, 226, 232, .42);
    color: #1b3a68;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    transform: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.castings-hero__intro .pill.active {
    border-color: #1b3a68;
    background: #1b3a68;
    color: #fff;
    font-weight: 600;
}

.castings-hero__intro .pill.active::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #ff5b1c;
}

@media (hover:hover) and (pointer:fine) {
    .castings-hero__intro .pill:hover {
        border-color: #1b3a68;
        background: #eef3f6;
        transform: translateY(-2px);
    }

    .castings-hero__intro .pill.active:hover {
        background: #244b84;
        color: #fff;
    }
}

.castings-hero__intro .pill:focus-visible {
    outline: 3px solid rgba(255, 91, 28, .3);
    outline-offset: 3px;
}

.castings-hero__intro .castings--nda {
    display: inline-flex;
    width: auto;
    align-items: center;
    margin: 18px 0 0;
    padding: 7px 13px;
    border: 1px solid rgba(27, 58, 104, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: rgba(27, 58, 104, .7);
    font-size: 13px;
    font-weight: 500;
}

.castings-hero__intro .castings--nda::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: #ff5b1c;
}

@media (max-width: 900px) {
    .castings-hero__intro {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 50px 28px 30px;
    }

    .castings-hero__copy,
    .castings-hero__copy .subtitle {
        max-width: none;
        text-align: center;
    }

    .castings-hero__copy .subtitle {
        margin-right: auto;
        margin-left: auto;
    }

    .castings-hero__controls {
        align-items: center;
    }

    .castings-hero__intro .filters {
        justify-content: center;
    }

    .castings-hero__intro .castings--nda {
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 600px) {
    .castings-hero {
        padding-top: 0;
    }

    .castings-hero__intro {
        display: block;
        width: 100%;
        margin: 0;
        padding: 34px 12px 12px;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .castings-hero__transition {
        top: -18px;
        width: 36px;
        height: 36px;
        border-width: 6px;
    }

    .castings-hero__transition::before {
        top: -14px;
        height: 11px;
    }

    .castings-hero__transition span {
        width: 9px;
        height: 9px;
    }

    .castings-hero__copy h2 {
        font-size: clamp(31px, 4.7svh, 40px);
        letter-spacing: -.8px;
    }

    .castings-hero__copy .subtitle {
        margin-top: 8px;
        font-size: clamp(17px, 2.45svh, 22px);
        line-height: 1.15;
    }

    .castings-hero__controls {
        margin-top: 14px;
    }

    .castings-hero__intro .filters {
        gap: 7px;
    }

    .castings-hero__intro .pill {
        min-height: 34px;
        padding: 7px 12px;
        border-width: 1px;
        font-size: clamp(12px, 1.85svh, 15px);
    }

    .castings-hero__intro .pill.active::before {
        width: 5px;
        height: 5px;
        margin-right: 6px;
    }

    .castings-hero__intro .castings--nda {
        display: inline-flex !important;
        margin-top: 10px;
        padding: 5px 10px;
        font-size: clamp(9px, 1.25svh, 11px);
    }
}

@keyframes tiktokSwipeHint {

    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-24px);
    }

    55% {
        transform: translateY(-24px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ============================================================
   MOBILE MODALS — above header, centered, not fullscreen
   ============================================================ */
@media (max-width: 768px) {

    .modal,
    .sub-modal,
    .video-modal,
    .payment-modal,
    .dubbing-modal {
        z-index: 100001 !important;
    }

    .modal {
        align-items: center;
    }

    .modal__overlay {
        background: rgba(0, 0, 0, .6);
    }

    .modal__content {
        width: 90%;
        max-width: 400px;
        max-height: 85vh;
        overflow-y: auto;
    }

    .sub-modal {
        align-items: center;
    }

    .sub-modal__overlay {
        background: rgba(0, 0, 0, .6);
    }

    .sub-modal__content {
        width: 92%;
        max-width: 420px;
        height: auto;
        max-height: 85vh;
        border-radius: 22px;
        overflow-y: auto;
    }

    .video-modal {
        align-items: stretch;
    }

    .video-modal__overlay {
        background: #000;
    }

    .video-modal__shell {
        width: 100%;
        max-width: none;
        height: 100%;
        max-height: none;
        border-radius: 0;
        border: 0;
        box-shadow: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        background: #fff;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .casting-modal__shell {
        width: 100%;
    }

    .video-modal__inner {
        flex-direction: column;
        gap: 0;
    }

    .video-modal__left {
        min-width: 0;
        gap: 0;
    }

    .video-preview {
        height: auto;
        aspect-ratio: 16 / 9;
        border-radius: 0;
        box-shadow: none;
        flex-shrink: 0;
    }

    .video-description {
        padding: 14px 16px;
        border-radius: 0;
    }

    .video-description h3 {
        font-size: 18px;
        line-height: 1.3;
        margin: 0 0 8px;
    }

    .video-description p {
        font-size: 14px;
    }

    .video-description__text-wrap {
        max-height: 80px;
    }

    .video-description__text-wrap.clipped::after {
        background: linear-gradient(transparent, #f3f4f6);
    }

    .subscription-widget .sub-plans {
        width: 100%;
    }

    .video-modal__sidebar {
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
        background: #f3f4f6;
        border-radius: 0;
    }

    .video-box {
        width: 100%;
        min-height: auto;
        padding: 16px;
    }

    .video-box h4 {
        margin: 0 0 6px;
        font-size: 16px;
    }

    .video-box ul li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .video-price {
        font-size: 22px;
    }

    .video-full-btn {
        margin: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        flex-shrink: 0;
    }

    .casting-subscription {
        width: 100%;
        padding: 16px;
        box-sizing: border-box;
    }

    .video-modal__shell {
        position: relative;
    }

    .video-modal__close {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 100;
        font-size: 20px;
        color: #333;
        background: #fff;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
        border: none;
        cursor: pointer;
        line-height: 1;
    }

    .payment-modal {
        display: none;
        align-items: center;
    }

    .payment-modal.active {
        display: flex;
    }

    .payment-modal__overlay {
        background: rgba(0, 0, 0, .6);
    }

    .payment-modal__content {
        width: 92%;
        max-width: 420px;
        height: auto;
        max-height: 85vh;
        margin: 0;
        overflow-y: auto;
    }

    .dubbing-modal__shell {
        width: 92%;
        max-width: 500px;
        max-height: 85vh;
        overflow-y: auto;
    }

    .dubbing-modal__overlay {
        background: rgba(0, 0, 0, .6);
    }
}


@media (min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .content {
        padding-bottom: 120px;
    }

    .sessions__sidebar {
        display: none !important;
    }

    body[style*="overflow: hidden"] .mobile-bottom-nav,
    body.modal-open .mobile-bottom-nav {
        display: none !important;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 18px;
        right: 18px;
        bottom: calc(14px + env(safe-area-inset-bottom));
        /* height: 78px; */
        background: #fff;
        border-radius: 999px;
        box-shadow: 0 10px 28px rgba(16, 24, 40, 0.10);
        z-index: 99999999;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px 12px;
        box-sizing: border-box;
        border: 1px solid rgba(228, 232, 240, 0.95);
    }

    .mobile-nav__item {
        flex: 1 1 0;
        min-width: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #b0b0b0;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    .mobile-nav__icon-wrap {
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        margin-bottom: 5px;
        transition: transform 0.18s ease, background-color 0.18s ease;
    }

    .mobile-nav__icon {
        width: 33px;
        height: 33px;
        display: block;
        color: #b7b7b7;
        transition: color 0.18s ease, transform 0.18s ease;
    }

    .mobile-nav__icon svg {
        color: #b7b7b7;
    }

    .mobile-nav__icon path,
    .mobile-nav__icon circle,
    .mobile-nav__icon rect,
    .mobile-nav__icon line,
    .mobile-nav__icon polyline,
    .mobile-nav__icon polygon {
        stroke: currentColor !important;
        fill: none;
    }

    .mobile-nav__label {
        margin: 0;
        font-size: 13px;
        line-height: 1;
        font-weight: 500;
        color: currentColor;
        transition: color 0.18s ease;
        white-space: nowrap;
    }

    .mobile-nav__item:hover .mobile-nav__icon-wrap {
        transform: translateY(-1px);
    }

    .mobile-nav__item.active {
        color: #ff5e1f;
    }

    .mobile-nav__item.active .mobile-nav__icon svg {
        color: #ff5e1f;
    }

    .mobile-nav__item.active .mobile-nav__label svg {
        color: #ff5e1f;
    }

    .mobile-nav__item.active .mobile-nav__icon-wrap svg {
        transform: translateY(-1px);
    }

    .mobile-nav__item:not(.active):active .mobile-nav__icon-wrap {
        transform: scale(0.96);
    }
}

@media (max-width: 420px) {
    .mobile-bottom-nav {
        left: 12px;
        right: 12px;
        /* height: 74px; */
        padding: 9px 10px 11px;
    }

    .mobile-nav__icon {
        width: 31px;
        height: 31px;
    }

    .mobile-nav__label {
        font-size: 12px;
    }
}

.sessions__sidebar {
    min-width: 215px;
    background: #e7edf4;
    border-radius: 36px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 96px;
    align-self: flex-start;
    box-sizing: border-box;
}

.sessions__sidebar-inner {
    background: #fff;
    border-radius: 36px;
    padding: 14px 12px 14px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.sidebar-item {
    height: 45px;
    padding: 0 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #b7b7bd;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    box-sizing: border-box;
}

.sidebar-item svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.sidebar-item svg * {
    stroke: currentColor !important;
}

.sidebar-item.active {
    background: #ff5b1c;
    color: #fff;
}

.sidebar-item+.sidebar-item {
    margin-top: 3px;
}

.sessions__sidebar-footer {
    padding: 18px 18px 18px 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

.unlock-btn {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1f4376;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.unlock-btn svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.unlock-btn svg * {
    stroke: currentColor !important;
}

.unlock-btn-blue {
    background: #1f4376;
    color: #fff;
}

.sessions__sidebar-footer>.unlock-btn {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    justify-content: center;
    border-radius: 999px;
    font-size: 14px;
    white-space: nowrap;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.sessions__sidebar-footer>.unlock-btn:hover {
    transform: translateY(-2px);
}

.unlock-btn-orange {
    background: #ff5b1c;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 91, 28, .18);
}

.unlock-btn-orange:hover {
    background: #e84e12;
}

.header__mobile-subscribe {
    appearance: none;
    border: 0;
    background: #ff5b1c;
    cursor: pointer;
}

.site-footer__cta:is(button) {
    appearance: none;
    border: 0;
    cursor: pointer;
}

.catalog-footer-shell {
    display: grid;
    width: 100%;
    max-width: 1240px;
    margin: -16px auto 40px;
    padding: 0 20px;
    grid-template-columns: 215px minmax(0, 1fr);
    gap: 24px;
    box-sizing: border-box;
}

.catalog-footer-shell .site-footer--catalog {
    min-width: 0;
    padding: 0;
    grid-column: 2;
    background: transparent;
}

.catalog-footer-shell .site-footer--catalog .site-footer__inner,
.catalog-footer-shell .site-footer--catalog .site-footer__bottom {
    width: 100%;
    max-width: none;
}

.personal-footer-shell {
    display: grid;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto 36px;
    grid-template-columns: 215px minmax(0, 1fr);
    gap: 24px;
    box-sizing: border-box;
}

.site-footer--personal {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    grid-column: 2;
    background: transparent;
    box-sizing: border-box;
}

.site-footer--personal .site-footer__inner,
.site-footer--personal .site-footer__bottom {
    width: 100%;
    max-width: none;
}

@media (min-width: 769px) and (max-width: 1199px) {
    .site-footer--personal .site-footer__inner {
        padding: 34px 38px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer--personal .site-footer__links {
        max-width: 640px;
        gap: 32px;
    }

    .site-footer--personal .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .site-footer--personal .site-footer__legal {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .catalog-footer-shell .site-footer--catalog .site-footer__inner {
        padding: 34px 38px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .catalog-footer-shell .site-footer--catalog .site-footer__links {
        max-width: 640px;
        gap: 32px;
    }

    .catalog-footer-shell .site-footer--catalog .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .catalog-footer-shell .site-footer--catalog .site-footer__legal {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    body:has(.site-footer--catalog) .content {
        padding-bottom: 0;
    }

    body:has(.site-footer--catalog) .sessions {
        padding-bottom: 12px;
    }

    .catalog-footer-shell .site-footer--catalog {
        min-height: auto;
        padding-bottom: 104px;
    }

    .site-footer--personal {
        width: 100%;
        min-height: auto;
        margin: 0;
        padding: 12px 10px 110px;
        background: #d7e2e8;
    }

    .personal-footer-shell {
        display: block;
        width: 100%;
        margin: 0;
    }

    .site-header--personal .header__logo,
    .site-header--personal .header__nav {
        display: none !important;
    }

    .site-header--personal .header__mobile {
        display: flex !important;
    }

    .catalog-footer-shell {
        display: block;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .session-materials {
        padding: 16px;
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .sessions__sidebar {
        display: none !important;
    }
}

.sessions__intro {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 28px;
    padding: 32px 40px;
    min-height: 110px;
}

.sessions__intro-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sessions__intro-bg svg {
    position: absolute;
    right: -120px;
    top: -60px;
    width: 900px;
    height: auto;
    opacity: .6;
}

.sessions__intro h1,
.sessions__intro p,
.sessions__intro * {
    position: relative;
    z-index: 1;
}

/* ── Home page mobile ── */
@media (max-width: 768px) {

    .sessions__content,
    .sessions__intro {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .sessions__container {
        flex-direction: column;
        gap: 12px;
    }

    .sessions {
        padding: 12px;
    }

    body:has(.sessions) .header__mobile {
        position: sticky !important;
    }
}

/* ── Catalog grid: 2 columns ── */
.sessions__grid .session-card {
    width: auto;
    min-width: 0;
    height: auto;
    max-width: none;
    flex-shrink: 1;
}

.sessions__grid .catalog-casting-card {
    width: auto;
    min-width: 0;
    height: auto;
    margin-bottom: 0;
}

.sessions__grid .catalog-casting-card .catalog-casting-thumb {
    height: auto;
    aspect-ratio: 3 / 4;
}

.sessions__grid .catalog-casting-actions {
    position: static;
    margin-top: 8px;
    padding: 0;
}

.session-card {
    width: auto;
    min-width: 0;
    max-width: none;
    height: auto;
    margin-bottom: 0;
    border-radius: 0;
    overflow: visible;
    height: 360px;
    background: none;
    flex-shrink: 1;
    padding: 0;
    border: none;
    box-shadow: none;
}

.session-card:hover {
    transform: none;
    box-shadow: none;
}

.session-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 31px;
    transition: transform .3s ease;
}

.session-card:hover img {
    transform: scale(1.03);
}

.session-card__title {
    padding: 8px 0 0;
    font-size: 26px;
    font-weight: 500;
    width: 95%;
    margin: 0 auto;
    line-height: 1.3;
    line-height: 1.3;
    word-wrap: break-word;
}
.sessions__content h2 {
    font-size: 40px !important;
}
@media (max-width: 768px) {
    .sessions__content h2 {
    font-size: 24px !important;
}
.sessions__content {
    padding:20px;
    border-radius: 20px;
}
.session-card {
    width: auto;
    min-width: 0;
    max-width: none;
    height: auto;
    margin-bottom: 0;
    border-radius: 0;
    overflow: visible;
    height: 360px;
    background: none;
    flex-shrink: 1;
    padding: 0;
    border: none;
    box-shadow: none;
}

.session-card:hover {
    transform: none;
    box-shadow: none;
}

.session-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform .3s ease;
}

.session-card:hover img {
    transform: scale(1.03);
}

.session-card__title {
    padding: 0px 0 0;
    font-size: 11px;
    font-weight: 500;
    width: 95%;
    margin: 0 auto;
    line-height: 1.3;
    line-height: 1.3;
    word-wrap: break-word;
}

}

@media (max-width: 768px) {
    .sessions__grid {
        grid-template-columns: 1fr;
    }

    .sessions__grid .catalog-casting-card {
        height: auto;
    }

    .sessions__grid .catalog-casting-card .catalog-casting-thumb {
        height: auto;
        aspect-ratio: 3 / 4;
    }
}

.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 16px;
    z-index: 9990;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #1b3a68;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(27,58,104,.35);
    transition: opacity .3s, transform .3s;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:active {
    transform: scale(.9);
}

/* Первый экран на телефонах: один экран, без обрезания контента */
@media (max-width: 600px) {
    .hero-card {
        flex-direction: column;
        justify-content: flex-start;
        min-height: 0;
    }

    .hero-card__left {
        display: flex;
        flex: 1 1 auto;
        min-height: 0;
        flex-direction: column;
        padding: 12px 0 0;
    }

    .hero-card__title {
        margin: 0 14px 14px;
        text-align: center;
    }

    .hero-card__title-brand {
        font-size: clamp(1.65rem, 8vw, 2.15rem);
    }

    .hero-card__title-descriptor {
        max-width: 350px;
        margin-top: 6px;
        padding: 0 8px;
        font-size: clamp(11px, 3.2vw, 14px);
        line-height: 1.3;
    }

    .hero-card__features {
        gap: clamp(9px, 1.5svh, 13px);
        margin: auto 0 6px;
        position: relative;
        z-index: 4;
        overflow: visible;
    }

    .hero-card .plane-2 {
        top: 20%;
        width: 70px;
        z-index: 1;
    }

    .hero-card__feature {
        width: 94%;
        min-height: 36px;
        padding: 8px 18px;
        font-size: clamp(12px, 3.45vw, 15px);
        line-height: 1.2;
    }

    .hero-card__feature:nth-child(1),
    .hero-card__feature:nth-child(3) {
        align-self: flex-end;
        transform: none;
    }

    .hero-card__feature:nth-child(2) {
        align-self: flex-start;
        transform: none;
    }

    .hero-card__right {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 736 / 618;
        flex: 0 0 auto;
        overflow: visible;
        line-height: 0;
    }

    .hero-card__right img {
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: center bottom;
        transform: none;
    }

    .hero-card__button-wrapper-mobile {
        position: absolute;
        left: 50%;
        bottom: 16px;
        width: calc(100% - 32px);
        max-width: 420px;
        margin: 0;
        padding: 0;
        transform: translateX(-50%);
    }

    .hero-card__button-wrapper-mobile .hero-card__price {
        top: -25px;
        right: 10px;
        left: auto;
        padding: 6px 14px;
        font-size: 11px;
    }

    .hero-card__button-wrapper-mobile .hero-card__button {
        width: 100%;
        height: 54px;
        padding: 14px 24px;
        font-size: 18px;
    }
}

@media (max-width: 600px) and (max-height: 650px) {
    .castings-hero__intro {
        padding: 20px 8px 5px;
    }

    .castings-hero__transition {
        top: -15px;
        width: 32px;
        height: 32px;
        border-width: 5px;
    }

    .castings-hero__copy h2 {
        font-size: 27px;
    }

    .castings-hero__copy .subtitle {
        margin-top: 4px;
        font-size: 14px;
        line-height: 1.1;
    }

    .castings-hero__controls {
        margin-top: 8px;
    }

    .castings-hero__intro .filters {
        gap: 5px;
    }

    .castings-hero__intro .pill {
        min-height: 28px;
        padding: 5px 9px;
        font-size: 11px;
    }

    .castings-hero__intro .castings--nda {
        margin-top: 5px;
        padding: 3px 8px;
        font-size: 8px;
    }

    .castings-hero > .viewport {
        margin-top: 0;
        padding-left: 10px;
        scroll-padding-left: 10px;
    }

    #castingTrack {
        gap: 10px;
        padding: 3px 34px 8px 0;
    }

    .casting-card {
        width: min(266px, calc(100vw - 54px));
        min-width: min(266px, calc(100vw - 54px));
        min-height: 0;
        padding: 6px;
        border-radius: 20px;
    }

    .casting-thumb {
        aspect-ratio: 16 / 8.5;
        border-radius: 15px;
    }

    .casting-card__topline {
        top: 8px;
        right: 8px;
        left: 8px;
    }

    .casting-category,
    .casting-badge {
        min-height: 24px;
        padding: 5px 8px;
        font-size: 10px;
    }

    .casting-info {
        padding: 8px 6px 3px;
    }

    .casting-meta {
        margin-bottom: 3px;
        font-size: 9px;
    }

    .casting-title {
        font-size: 18px;
    }

    .casting-actions {
        padding-top: 8px;
    }

    .casting-btn-ghost,
    .casting-btn-outline {
        min-height: 38px;
        padding: 7px 11px;
        font-size: 13px;
    }

    .casting-btn-outline__arrow {
        width: 21px;
        height: 21px;
        font-size: 13px;
    }
}

/* Casting cards: keep the original poster format */
#castingTrack {
    gap: 14px;
}

.casting-card {
    width: 250px;
    min-width: 250px;
    min-height: 0;
    padding: 7px;
    border-radius: 24px;
}

/* Catalog pages render this same approved card component. */
.casting-card.catalog-casting-card {
    height: auto;
    margin-bottom: 0;
}

.casting-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
}

.casting-thumb__shade {
    background:
        linear-gradient(180deg, rgba(10, 31, 60, .48) 0%, rgba(10, 31, 60, 0) 35%),
        linear-gradient(0deg, rgba(10, 31, 60, .82) 0%, rgba(10, 31, 60, 0) 50%);
}

.casting-title {
    position: absolute;
    top: auto;
    right: 16px;
    bottom: 17px;
    left: 16px;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.03;
    text-align: left;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .34);
}

.casting-info {
    flex: 0 0 auto;
    padding: 7px 2px 2px;
}

.casting-actions {
    margin: 0;
    padding: 0;
}

.casting-btn-ghost,
.casting-btn-outline {
    min-height: 46px;
    font-size: 15px;
}

.castings-see-all {
    display: flex;
    width: 100%;
    margin: 2px 0 34px;
    justify-content: center;
}

.castings-see-all__link {
    display: inline-flex;
    min-width: 210px;
    min-height: 48px;
    padding: 10px 18px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(27, 58, 104, .3);
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
    color: #1b3a68;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.castings-see-all__link:hover {
    transform: translateY(-2px);
    border-color: #1b3a68;
    background: #fff;
}

.castings-see-all__arrow {
    color: #ff5b1c;
    font-size: 20px;
    transition: transform .25s ease;
}

.castings-see-all__link:hover .castings-see-all__arrow {
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .casting-card {
        width: 238px;
        min-width: 238px;
    }
}

@media (max-width: 600px) {
    #castingTrack {
        gap: 12px;
    }

    .casting-card {
        width: min(286px, calc(100vw - 76px));
        min-width: min(286px, calc(100vw - 76px));
        padding: 7px;
        border-radius: 22px;
    }

    .casting-thumb {
        aspect-ratio: 3 / 4;
        border-radius: 16px;
    }

    .casting-title {
        right: 14px;
        bottom: 14px;
        left: 14px;
        font-size: 25px;
    }

    .casting-info {
        padding: 7px 2px 2px;
    }

    .casting-btn-ghost,
    .casting-btn-outline {
        min-height: 44px;
        font-size: 14px;
    }

    .castings-see-all {
        margin: 0 0 10px;
    }

    .castings-see-all__link {
        min-width: 180px;
        min-height: 42px;
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 600px) and (max-height: 650px) {
    #castingTrack {
        padding-bottom: 2px;
    }

    .castings-see-all {
        position: relative;
        top: -10px;
        margin-top: -8px;
    }

    .casting-card {
        width: 220px;
        min-width: 220px;
        padding: 6px;
        border-radius: 19px;
    }

    .casting-thumb {
        aspect-ratio: 4 / 5;
        border-radius: 14px;
    }

    .casting-title {
        right: 12px;
        bottom: 11px;
        left: 12px;
        font-size: 20px;
    }

    .casting-btn-ghost,
    .casting-btn-outline {
        min-height: 38px;
        font-size: 12px;
    }

    .castings-see-all__link {
        min-height: 34px;
        font-size: 12px;
    }
}

/* Keep profile composition above the legacy personal-page rules. */
body .personal-card--profile {
    max-width: none;
    margin: 0;
    padding: 30px;
}

body .personal-head--profile {
    align-items: center;
    margin-bottom: 24px;
}

body .personal-row--profile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* Personal account: subscription dashboard. */
#subscription-root.personal-card {
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.sub-dashboard {
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    color: #1b3a68;
    box-shadow: 0 14px 34px rgba(27, 58, 104, .06);
}

.sub-dashboard__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.sub-dashboard__title {
    margin: 0;
    color: #111;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.035em;
}

.sub-dashboard__lead {
    max-width: 630px;
    margin: 7px 0 0;
    color: #687487;
    font-size: 15px;
    line-height: 1.45;
}

.sub-dashboard .sub-badge {
    min-height: 28px;
    height: auto;
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 700;
}

.sub-dashboard .sub-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.sub-dashboard .sub-badge--ok {
    background: #eef8ee;
    color: #338144;
    box-shadow: none;
}

.sub-badge--paused {
    background: #fff3ed;
    color: #d94d17;
}

.sub-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.sub-info-card {
    min-height: 142px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    background: #f3f6f8;
}

.sub-info-card__label {
    color: #6c7b8e;
    font-size: 13px;
    line-height: 1.3;
}

.sub-info-card__value {
    margin-top: 14px;
    color: #111;
    font-size: 23px;
    line-height: 1.12;
    font-weight: 800;
}

.sub-info-card__meta {
    margin-top: auto;
    padding-top: 12px;
    color: #718095;
    font-size: 13px;
    line-height: 1.35;
}

.sub-info-card__button {
    width: 100%;
    min-height: 34px;
    margin-top: auto;
    padding: 8px 12px;
    border: 1px solid rgba(27, 58, 104, .2);
    border-radius: 999px;
    background: #fff;
    color: #1b3a68;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.sub-info-card__button:hover {
    transform: translateY(-1px);
    border-color: rgba(27, 58, 104, .42);
    box-shadow: 0 7px 16px rgba(27, 58, 104, .08);
}

.sub-change-dialog {
    position: fixed;
    inset: 0;
    z-index: 100002;
    display: none;
    place-items: center;
    padding: 18px;
}

.sub-change-dialog.is-open {
    display: grid;
}

.sub-change-dialog__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 16, 31, .66);
}

.sub-change-dialog__body {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    padding: 26px;
    border-radius: 22px;
    background: #fff;
    color: #1b3a68;
    box-shadow: 0 24px 70px rgba(5, 16, 31, .28);
}

.sub-change-dialog__body h2 {
    margin: 0 38px 12px 0;
    color: #111;
    font-size: 24px;
}

.sub-change-dialog__body p {
    margin: 0;
    color: #58687d;
    font-size: 15px;
    line-height: 1.5;
}

.sub-change-dialog__body .sub-change-dialog__note {
    margin-top: 10px;
    color: #1b3a68;
    font-weight: 700;
}

.sub-change-dialog__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef2f5;
    color: #1b3a68;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
}

.sub-change-dialog__button {
    width: 100%;
    min-height: 46px;
    margin-top: 20px;
    border-radius: 999px;
    background: #ff5b1c;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.sub-cancel-panel {
    margin-top: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid rgba(255, 91, 28, .22);
    border-radius: 18px;
    background: #fff7f3;
}

.sub-cancel-panel strong {
    display: block;
    color: #1b3a68;
    font-size: 16px;
}

.sub-cancel-panel p {
    margin: 5px 0 0;
    color: #647287;
    font-size: 13px;
    line-height: 1.4;
}

.sub-cancel-panel .sub-btn--cancel {
    width: auto;
    min-width: 222px;
    height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #ff5b1c;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 8px 18px rgba(255, 91, 28, .18);
}

.sub-cancel-panel .sub-btn--cancel:hover {
    background: #e94e14;
    box-shadow: 0 10px 22px rgba(255, 91, 28, .24);
}

.sub-cancel-panel .sub-btn--cancel:disabled {
    cursor: wait;
    opacity: .65;
}

.sub-cancel-panel--complete {
    border-color: rgba(27, 58, 104, .12);
    background: #f3f6f8;
}

.sub-empty {
    padding: 32px;
    border-radius: 20px;
    background: #f3f6f8;
    text-align: center;
}

.sub-empty strong {
    color: #1b3a68;
    font-size: 21px;
}

.sub-empty p {
    margin: 8px auto 20px;
    max-width: 520px;
    color: #687487;
    font-size: 14px;
    line-height: 1.45;
}

.sub-empty .sub-btn--buy {
    max-width: 310px;
    margin: 0 auto;
    background: #ff5b1c;
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 91, 28, .18);
}

.sub-dashboard--loading .sub-skeleton__cards {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .sub-dashboard__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sub-info-card {
        min-height: 118px;
    }
}

@media (max-width: 768px) {
    #subscription-root.personal-card {
        margin: 0 14px;
    }

    .sub-dashboard {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .sub-dashboard__head {
        display: block;
        margin-bottom: 18px;
    }

    .sub-dashboard__title {
        font-size: 25px;
    }

    .sub-dashboard__lead {
        margin-top: 5px;
        font-size: 13px;
    }

    .sub-dashboard .sub-badge {
        margin-top: 12px;
    }

    .sub-dashboard__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sub-info-card {
        min-height: 104px;
        padding: 15px 16px;
    }

    .sub-info-card__value {
        margin-top: 8px;
        font-size: 20px;
    }

    .sub-info-card__meta {
        padding-top: 7px;
    }

    .sub-cancel-panel {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .sub-cancel-panel .sub-btn--cancel {
        width: 100%;
        min-width: 0;
    }

    .sub-empty {
        padding: 26px 18px;
    }
}

@media (max-width: 768px) {
    body .personal-card--profile {
        margin: 0 14px;
        padding: 20px 16px;
    }

    body .personal-head--profile {
        align-items: flex-start;
        margin-bottom: 18px;
    }

    body .personal-row--profile {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 600px) and (min-height: 651px) and (max-height: 760px) {
    #castingTrack {
        padding-bottom: 3px;
    }

    .casting-card {
        width: 240px;
        min-width: 240px;
        padding: 6px;
        border-radius: 20px;
    }

    .casting-thumb {
        aspect-ratio: 4 / 5;
        border-radius: 15px;
    }

    .casting-title {
        right: 12px;
        bottom: 12px;
        left: 12px;
        font-size: 22px;
    }

    .casting-btn-ghost,
    .casting-btn-outline {
        min-height: 40px;
        font-size: 13px;
    }

    .castings-see-all {
        position: relative;
        top: -5px;
        margin-top: -5px;
        margin-bottom: 4px;
    }

    .castings-see-all__link {
        min-height: 36px;
        font-size: 12px;
    }
}

/* Compact, connected casting section header */
@media (min-width: 901px) {
    .castings-hero {
        padding-top: 34px;
    }

    .castings-hero__intro {
        grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
        gap: 34px;
        margin-bottom: 6px;
        padding: 30px 20px 22px;
        align-items: center;
        border-radius: 28px 28px 18px 18px;
    }

    .castings-hero__copy h2 {
        font-size: clamp(48px, 4.7vw, 58px);
        line-height: .98;
    }

    .castings-hero__copy .subtitle {
        margin-top: 13px;
        font-size: clamp(24px, 2.25vw, 29px);
        line-height: 1.14;
    }

    .castings-hero > .viewport {
        margin-top: -2px;
    }

    #castingTrack {
        padding-top: 8px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .castings-hero {
        padding-top: 28px;
    }

    .castings-hero__intro {
        grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
        gap: 20px;
        margin-bottom: 6px;
        padding: 25px 24px 19px;
        align-items: center;
        border-radius: 26px 26px 16px 16px;
    }

    .castings-hero__copy,
    .castings-hero__copy .subtitle {
        text-align: left;
    }

    .castings-hero__copy h2 {
        font-size: clamp(39px, 5.5vw, 46px);
        line-height: 1;
    }

    .castings-hero__copy .subtitle {
        margin-top: 9px;
        font-size: clamp(19px, 2.8vw, 23px);
        line-height: 1.12;
    }

    .castings-hero__controls {
        margin-top: 0;
        align-items: flex-start;
    }

    .castings-hero__intro .filters {
        gap: 6px;
        justify-content: flex-start;
    }

    .castings-hero__intro .pill {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 14px;
    }

    .castings-hero__intro .castings--nda {
        margin: 9px 0 0;
    }

    .castings-hero > .viewport {
        margin-top: -2px;
    }

    #castingTrack {
        padding-top: 8px;
    }
}

.castings-hero__intro .castings--nda {
    color: rgba(27, 58, 104, .68);
    text-decoration: none;
    cursor: pointer;
    transition:
        color .22s ease,
        background .22s ease,
        border-color .22s ease,
        transform .22s ease;
}

.castings-hero__intro .castings--nda::after {
    content: "↗";
    margin-left: 6px;
    color: #ff5b1c;
    font-size: 12px;
    font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
    .castings-hero__intro .castings--nda:hover {
        transform: translateY(-1px);
        border-color: rgba(27, 58, 104, .25);
        background: #fff;
        color: #1b3a68;
    }
}

.castings-hero__intro .castings--nda:focus-visible {
    outline: 3px solid rgba(255, 91, 28, .28);
    outline-offset: 3px;
}

@media (min-width: 601px) {
    #castingTrack {
        padding-bottom: 14px;
    }

    .castings-see-all {
        margin: -6px 0 26px;
    }
}

@media (min-width: 1101px) {
    .casting-card {
        width: 268px;
        min-width: 268px;
    }

    .castings-hero > .viewport {
        width: 1118px;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .castings-hero > .viewport {
        width: min(780px, calc(100% - 40px));
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .castings-hero > .viewport {
        width: min(744px, calc(100% - 40px));
    }
}

/* Casting modal: keep controls visible on tablets and narrow laptops. */
@media (min-width: 769px) and (max-width: 1100px) {
    .casting-modal__shell {
        max-height: calc(100dvh - 24px);
        overflow-y: auto;
    }

    .casting-modal__shell .video-modal__close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #fff;
        color: #1b3a68;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
        font-size: 20px;
        line-height: 1;
    }
}

/* A casting preview always keeps its native 16:9 frame. */
.casting-modal__shell .video-preview {
    height: auto;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
}

.casting-modal.loading .video-preview {
    background: linear-gradient(100deg, #e8edf1 20%, #f7f9fb 40%, #e8edf1 60%);
    background-size: 220% 100%;
    animation: castingPreviewLoading 1.1s ease-in-out infinite;
}

.casting-modal.loading .video-preview__play {
    opacity: 0;
    pointer-events: none;
}

@keyframes castingPreviewLoading {
    to { background-position-x: -220%; }
}

.casting-results-card--loading {
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #284a78;
    font-weight: 700;
}

.casting-results-loading__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5b1c;
    box-shadow: 0 0 0 0 rgba(255, 91, 28, .35);
    animation: castingResultsPulse 1.15s ease-out infinite;
}

@keyframes castingResultsPulse {
    70% { box-shadow: 0 0 0 10px rgba(255, 91, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 91, 28, 0); }
}

/* Casting modal: centered mobile composition with an expandable description. */
@media (max-width: 600px) {
    .casting-modal__shell {
        overflow-y: hidden;
    }

    .casting-modal__shell:has(.video-description__text-wrap.expanded) {
        overflow-y: auto;
    }

    .casting-modal__shell .video-modal__inner {
        min-height: 100%;
        justify-content: flex-start;
        align-items: center;
    }

    .casting-modal__shell .video-modal__left {
        width: 100%;
        max-width: none;
        flex: 0 0 auto;
        box-sizing: border-box;
        margin-inline: auto;
    }

    .casting-modal__shell .casting-subscription {
        width: 100%;
        max-width: 420px;
        box-sizing: border-box;
        margin-inline: auto;
    }

    .casting-modal__shell .video-preview {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 0;
        margin-inline: 0;
        aspect-ratio: 16 / 9;
        border-radius: 0;
        background: #101820;
    }

    .casting-modal__shell .video-preview__img {
        object-fit: contain;
        background: #101820;
    }

    .casting-modal__shell .video-description {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        padding: 6px 17px;
        box-sizing: border-box;
        border-radius: 0;
    }

    .casting-modal__shell .video-description h3 {
        margin: 0 0 2px;
        padding: 0;
        font-size: 15px;
        line-height: 1.15;
    }

    .casting-modal__shell .video-description__text-wrap.clipped:not(.expanded) {
        max-height: 22px !important;
        overflow: hidden;
    }

    .casting-modal__shell .video-description__text-wrap.clipped.expanded {
        max-height: 140px !important;
        overflow-y: auto;
    }

    .casting-modal__shell .video-description p {
        margin: 0;
        padding-right: 74px;
        font-size: 11px;
        line-height: 1.25;
    }

    .casting-modal__shell .video-description__toggle {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 2px 0 2px 8px;
        background: #f3f4f6;
        color: #ff5b1c;
        font-size: 11px;
        font-weight: 700;
        line-height: 1.2;
    }

    .casting-modal__shell .casting-details-link {
        margin-top: 5px;
        font-size: 11px;
    }

    .casting-modal__shell .video-description__text-wrap.clipped .video-description__toggle {
        display: block !important;
    }

    .casting-modal__shell .casting-subscription {
        padding-inline: 17px;
    }

    .casting-modal__shell .subscription-widget,
    .casting-modal__shell .subscription-widget .sub-step {
        width: 100%;
        box-sizing: border-box;
    }

    .casting-modal__shell .subscription-widget .promo-row {
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }

    .casting-modal__shell .subscription-widget .promo-box {
        width: 100%;
        box-sizing: border-box;
    }

    .casting-modal__shell .subscription-widget .consent {
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }

    .casting-modal__shell .casting-state-card {
        padding: 12px 0 6px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .casting-modal__shell .casting-state-card__eyebrow {
        margin-bottom: 6px;
        padding: 4px 8px;
        font-size: 10px;
    }

    .casting-modal__shell .casting-state-card .subscription-title {
        margin-bottom: 3px;
        font-size: 20px;
    }

    .casting-modal__shell .casting-state-card__lead {
        margin-bottom: 9px;
        font-size: 11px;
    }

    .casting-modal__shell .casting-form {
        gap: 7px;
    }

    .casting-modal__shell .casting-form__person {
        gap: 7px;
    }

    .casting-modal__shell .casting-state-card .casting-input {
        height: 38px;
        padding: 0 11px;
        font-size: 12px;
    }

    .casting-modal__shell .casting-state-card .casting-textarea {
        height: 44px;
        min-height: 44px;
        padding: 8px 11px;
        resize: none;
    }

    .casting-modal__shell .casting-state-card .casting-file {
        min-height: 62px;
        padding: 8px 10px;
    }

    .casting-modal__shell .casting-file__icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
        font-size: 18px;
    }

    .casting-modal__shell .casting-file__hint {
        margin-top: 3px;
        font-size: 9px;
    }

    .casting-modal__shell .casting-submit {
        height: 40px;
        margin-top: 1px;
        font-size: 13px;
    }

    .casting-modal__shell .casting-subscription.is-participation {
        display: flex;
        flex: 1 1 auto;
        align-items: stretch;
    }

    .casting-modal__shell .casting-subscription.is-participation .casting-state-card {
        height: 100%;
    }

    .casting-modal__shell .casting-subscription.is-participation .casting-form {
        gap: 5px;
    }

    .casting-modal__shell .casting-winners {
        gap: 6px;
    }

    .casting-modal__shell .casting-winner {
        gap: 9px;
        padding: 8px;
    }

    .casting-modal__shell .casting-winner__avatar {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 11px;
    }

    .casting-modal__shell:has(.casting-subscription.is-results-all) .video-modal__left {
        display: none;
    }

    .casting-modal__shell:has(.casting-subscription.is-results-all) .video-modal__inner {
        height: 100%;
    }

    .casting-modal__shell .casting-subscription.is-results-all {
        width: 100%;
        max-width: none;
        min-height: 100%;
        padding: 16px;
    }

    .casting-modal__shell .casting-subscription.is-results-all .casting-results-card {
        height: 100%;
        padding: 0;
    }

    .casting-modal__shell .casting-results-view--all {
        max-height: none;
    }

    .casting-modal__shell .casting-results-back {
        min-height: 38px;
        margin-bottom: 12px;
        font-size: 12px;
    }

    .casting-modal__shell .casting-results-all__head {
        margin-bottom: 10px;
    }

    .casting-modal__shell .casting-winners--all {
        flex: 1;
        padding-bottom: 12px;
    }
}

/* Short phones: retain the same composition, only tighten the form rhythm. */
@media (max-width: 600px) and (max-height: 760px) {
    .casting-modal__shell .video-description {
        padding: 4px 17px;
    }

    .casting-modal__shell .video-description h3 {
        margin-bottom: 1px;
        font-size: 14px;
    }

    .casting-modal__shell .video-description__text-wrap.clipped:not(.expanded) {
        max-height: 18px !important;
    }

    .casting-modal__shell .video-description p {
        font-size: 10px;
        line-height: 1.2;
    }

    .casting-modal__shell .casting-subscription {
        padding: 1px 17px 6px;
    }

    .casting-modal__shell .casting-subscription.is-participation .casting-state-card .subscription-title {
        font-size: 18px;
    }

    .casting-modal__shell .casting-subscription.is-participation .casting-form {
        gap: 4px;
    }

    .casting-modal__shell .casting-subscription.is-participation .casting-input {
        height: 34px;
    }

    .casting-modal__shell .casting-subscription.is-participation .casting-textarea {
        height: 38px;
        min-height: 38px;
        padding-top: 7px;
    }

    .casting-modal__shell .casting-subscription.is-participation .casting-file {
        min-height: 54px;
        padding-block: 6px;
    }

    .casting-modal__shell .casting-subscription.is-participation .casting-submit {
        height: 38px;
    }

    .casting-modal__shell .subscription-widget {
        font-size: 12px !important;
    }

    .casting-modal__shell .subscription-widget .sub-title {
        margin-bottom: 2px;
        line-height: 1.15;
    }

    .casting-modal__shell .subscription-widget .sub-plans {
        gap: 3px;
        margin-bottom: 3px;
    }

    .casting-modal__shell .subscription-widget .submodal-plan-card {
        padding: 2px 10px;
        border-radius: 12px;
    }

    .casting-modal__shell .subscription-widget .promo-box {
        margin: 2px 0;
    }

    .casting-modal__shell .subscription-widget .consent {
        margin-top: 2px;
        margin-bottom: 2px;
    }

    .casting-modal__shell .subscription-widget .consent__hint {
        height: 28px;
        box-sizing: border-box;
        gap: 8px;
        padding: 1px 2px;
    }

    .casting-modal__shell .subscription-widget .consent__label {
        padding: 2px 0;
    }

    .casting-modal__shell .subscription-widget .sub_input {
        margin-bottom: 3px;
        padding: 6px;
    }

    .casting-modal__shell .subscription-widget .promoInput,
    .casting-modal__shell .subscription-widget .promoApplyBtn {
        height: 32px;
        box-sizing: border-box;
        margin-bottom: 0;
        padding: 5px 8px;
    }

    .casting-modal__shell .subscription-widget .sub-next-plan {
        padding: 6px;
    }
}

/* Mobile casting/session checkout must remain scrollable to the final CTA. */
@media (max-width: 600px) {
    .casting-modal__shell,
    .casting-modal__shell:has(.video-description__text-wrap.expanded) {
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior-y: contain;
        scroll-padding-bottom: calc(28px + env(safe-area-inset-bottom));
        -webkit-overflow-scrolling: touch;
    }

    .casting-modal__shell .casting-subscription {
        padding-bottom: calc(26px + env(safe-area-inset-bottom));
    }

    .casting-modal__shell .subscription-widget .sub-next-plan,
    .casting-modal__shell .casting-submit {
        margin-bottom: 4px;
        flex-shrink: 0;
    }

    #castingModal[aria-hidden="false"] .casting-subscription:has(.subscription-widget) {
        padding-bottom: calc(82px + env(safe-area-inset-bottom));
    }

    #castingModal[aria-hidden="false"] .subscription-widget .sub-next-plan {
        position: fixed;
        right: 24px;
        bottom: calc(10px + env(safe-area-inset-bottom));
        left: 24px;
        z-index: 100020;
        width: auto;
        min-height: 48px;
        margin: 0;
        border: 0;
        border-radius: 14px;
        box-shadow: 0 8px 24px rgba(18, 52, 86, .22);
    }
}

/* Final phone composition: a compact header, fully visible cards and a separate CTA row. */
@media (max-width: 600px) {
    .snap-section--castings {
        height: calc(100svh - 64px);
        min-height: 0;
        overflow: hidden;
    }

    .snap-section--castings .castings-hero {
        display: flex;
        height: 100%;
        min-height: 0;
        padding: 0;
        flex-direction: column;
        overflow: hidden;
    }

    .castings-hero__intro {
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 20px 12px 11px;
        flex: 0 0 auto;
        border-radius: 0 0 22px 22px;
        box-sizing: border-box;
    }

    .castings-hero__copy h2 {
        font-size: clamp(35px, 6.2svh, 43px);
        line-height: .98;
    }

    .castings-hero__copy .subtitle {
        margin-top: 7px;
        font-size: clamp(16px, 2.65svh, 19px);
        line-height: 1.1;
    }

    .castings-hero__controls {
        margin-top: 8px;
    }

    .castings-hero__intro .filters {
        width: 100%;
        gap: 4px;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .castings-hero__intro .pill {
        min-height: 28px;
        padding: 5px 8px;
        flex: 0 0 auto;
        font-size: 11px;
        white-space: nowrap;
    }

    .castings-hero__intro .pill.active::before {
        width: 5px;
        height: 5px;
        margin-right: 5px;
    }

    .castings-hero__intro .castings--nda {
        min-height: 22px;
        margin: 5px 0 0;
        padding: 3px 9px;
        font-size: 8.5px;
    }

    .snap-section--castings .castings-hero > .viewport {
        display: flex;
        width: 100%;
        height: auto;
        min-height: 0;
        margin: 0;
        padding-left: 12px;
        flex: 1 1 auto;
        align-items: center;
        box-sizing: border-box;
    }

    #castingTrack {
        height: auto;
        gap: 12px;
        padding: 7px 42px 7px 0;
        align-items: center;
    }

    .casting-card {
        width: min(280px, calc(100vw - 76px));
        min-width: min(280px, calc(100vw - 76px));
        padding: 8px;
        border-radius: 23px;
    }

    .casting-thumb {
        aspect-ratio: 3 / 4;
        border-radius: 17px;
    }

    .casting-title {
        right: 15px;
        bottom: 15px;
        left: 15px;
        font-size: 25px;
    }

    .casting-btn-ghost,
    .casting-btn-outline {
        min-height: 46px;
        font-size: 15px;
    }

    .castings-see-all {
        position: static;
        top: auto;
        margin: 5px 0 16px;
        flex: 0 0 auto;
    }

    .castings-see-all__link {
        min-width: 210px;
        min-height: 48px;
        padding: 9px 17px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .castings-hero__intro {
        padding-inline: 7px;
    }

    .castings-hero__intro .filters {
        gap: 3px;
    }

    .castings-hero__intro .pill {
        padding-inline: 6px;
        font-size: 10px;
    }

    .casting-card {
        width: min(250px, calc(100vw - 58px));
        min-width: min(250px, calc(100vw - 58px));
    }
}

@media (max-width: 600px) and (max-height: 600px) {
    .castings-hero__intro {
        padding-top: 10px;
        padding-bottom: 5px;
    }

    .castings-hero__copy h2 {
        font-size: 28px;
    }

    .castings-hero__copy .subtitle {
        margin-top: 3px;
        font-size: 13px;
    }

    .castings-hero__controls {
        margin-top: 6px;
    }

    .castings-hero__intro .pill {
        min-height: 25px;
        padding-block: 3px;
    }

    .castings-hero__intro .castings--nda {
        min-height: 19px;
        margin-top: 4px;
        padding-block: 2px;
    }

    .casting-card {
        width: 190px;
        min-width: 190px;
    }

    .casting-thumb {
        aspect-ratio: 4 / 5;
    }

    .casting-title {
        font-size: 18px;
    }

    .casting-btn-ghost,
    .casting-btn-outline {
        min-height: 32px;
        font-size: 11px;
    }

    .castings-see-all {
        margin-bottom: 5px;
    }

    .castings-see-all__link {
        min-height: 34px;
        font-size: 12px;
    }
}

/* Session modal: approved subscription/materials composition. */
#videoModal .video-preview {
    height: auto;
    aspect-ratio: 16 / 9;
}

.session-modal__shell .video-description__text-wrap {
    max-height: none;
}

.session-access-note {
    margin-top: 10px;
    color: #75808d;
    font-size: 13px;
    line-height: 1.3;
}

.session-subscription {
    width: 300px;
    flex: 0 0 300px;
}

.session-subscription.video-modal__sidebar {
    padding: 0;
    border-radius: 0;
    background: transparent;
    font-weight: 400;
}

.session-subscription .subscription-widget {
    width: 100%;
    font-size: 14px;
}

.session-modal__shell.is-session-member-without-materials {
    width: min(780px, calc(100% - 40px));
}

.session-modal__shell.is-session-member-without-materials .video-modal__left {
    min-width: 0;
}

@media (max-width: 768px) {
    .session-modal__shell .video-modal__inner {
        min-height: 100%;
    }

    .session-modal__shell .video-description {
        padding: 8px 17px 6px;
    }

    .session-modal__shell .video-description h3 {
        margin-bottom: 4px;
        font-size: clamp(15px, 2.2svh, 18px);
        line-height: 1.15;
    }

    .session-modal__shell .video-description__text-wrap.clipped:not(.expanded) {
        max-height: 34px;
    }

    .session-modal__shell .video-description p {
        font-size: clamp(11px, 1.75svh, 14px);
        line-height: 1.25;
    }

    .session-modal__shell .video-description__toggle {
        font-size: 11px;
    }

    .session-modal__shell .session-access-note {
        margin-top: 4px;
        font-size: 10px;
    }

    .session-subscription,
    .session-subscription.video-modal__sidebar {
        width: 100%;
        height: auto;
        min-height: 0;
        flex: 0 0 auto;
        align-self: stretch;
        padding: 6px 17px calc(14px + env(safe-area-inset-bottom));
        box-sizing: border-box;
        background: #fff;
    }

    .session-modal__shell .subscription-widget {
        width: 100%;
        max-width: none;
        min-height: 0;
        font-size: clamp(10.5px, 1.55svh, 13px);
    }

    .session-modal__shell .subscription-widget .sub-step {
        width: 100%;
        min-height: 0;
        box-sizing: border-box;
    }

    .session-modal__shell .subscription-widget .sub-title {
        margin: 2px 0 5px;
        line-height: 1.12;
    }

    .session-modal__shell .subscription-widget .sub-plans {
        gap: 4px;
        margin-bottom: 5px;
    }

    .session-modal__shell .subscription-widget .submodal-plan-card {
        padding: 3px 10px;
        border-radius: 12px;
    }

    .session-modal__shell .subscription-widget .submodal-plan-price {
        margin-top: 0;
        font-size: 1.8em;
    }

    .session-modal__shell .subscription-widget .promo-box,
    .session-modal__shell .subscription-widget .consent {
        margin-block: 3px;
    }

    .session-modal__shell .subscription-widget .info_consent {
        display: none;
    }

    .session-modal__shell .subscription-widget .consent__hint {
        min-height: 28px;
        padding: 2px 5px;
    }

    .session-modal__shell .subscription-widget .sub_input {
        height: 30px;
        margin-bottom: 4px;
        padding: 5px 8px;
    }

    .session-modal__shell .subscription-widget .promoInput,
    .session-modal__shell .subscription-widget .promoApplyBtn {
        height: 32px;
        padding: 5px 8px;
    }

    .session-modal__shell .subscription-widget .sub-next-plan {
        position: static;
        width: 100%;
        min-height: 40px;
        margin: 4px 0 0;
        padding: 7px;
        flex: 0 0 auto;
    }

    .session-modal__shell.is-session-member-without-materials {
        width: 100%;
    }
}

@media (max-width: 600px) and (max-height: 700px) {
    .session-modal__shell .video-description {
        padding-block: 4px 3px;
    }

    .session-modal__shell .video-description h3 {
        font-size: 14px;
    }

    .session-modal__shell .video-description__text-wrap.clipped:not(.expanded) {
        max-height: 16px;
    }

    .session-modal__shell .session-access-note {
        margin-top: 1px;
        font-size: 8.5px;
    }

    .session-modal__shell .subscription-widget {
        font-size: 10.5px;
    }
}

/* ==================== ГЛАВНАЯ: СЕССИИ ==================== */
.sessions-preview {
    min-height: 520px;
    padding: 30px 0 36px;
    overflow: hidden;
    box-sizing: border-box;
    background: #d7e2e8;
    color: #1b3a68;
}

.sessions-preview__head {
    display: grid;
    width: min(1118px, calc(100% - 40px));
    min-height: 0;
    margin: 0 auto 14px;
    padding: 26px 42px 24px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    border: 1px solid rgba(27, 58, 104, .06);
    border-radius: 30px;
    background-color: #fff;
    background-image: radial-gradient(circle, rgba(27, 58, 104, .07) 2px, transparent 2.5px);
    background-position: 8px 8px;
    background-size: 42px 42px;
    box-sizing: border-box;
}

.sessions-preview__title {
    margin: 0;
    color: #1b3a68;
    font-size: clamp(42px, 4.6vw, 58px);
    font-weight: 800;
    line-height: .95;
}

.sessions-preview__details {
    min-width: 0;
}

.sessions-preview__subtitle {
    max-width: 780px;
    margin: 0;
    color: #1b3a68;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 700;
    line-height: 1.22;
}

.sessions-preview__subtitle strong {
    color: #ff5b1c;
    font-weight: 800;
}

.sessions-preview__cadence {
    display: inline-flex;
    margin-top: 12px;
    padding: 9px 14px;
    align-items: center;
    border-radius: 999px;
    background: rgba(27, 58, 104, .08);
    color: #1b3a68;
    font-size: 13px;
    font-weight: 700;
}

.sessions-preview__cadence::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #ff5b1c;
}

.sessions-preview__viewport {
    width: min(1118px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 12px;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.sessions-preview__viewport.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.sessions-preview__viewport::-webkit-scrollbar {
    display: none;
}

.sessions-preview__track {
    display: flex;
    width: max-content;
    gap: 18px;
}

.sessions-preview .session-card {
    display: flex;
    width: 266px;
    min-width: 266px;
    height: 222px;
    padding: 10px;
    gap: 10px;
    overflow: hidden;
    flex: 0 0 266px;
    flex-direction: column;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(27, 58, 104, .08);
    box-sizing: border-box;
    cursor: pointer;
    scroll-snap-align: start;
}

.sessions-preview .session-card__thumb {
    position: relative;
    width: 100%;
    height: 146px;
    border-radius: 12px;
    overflow: hidden;
}

.sessions-preview .session-card__thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.sessions-preview .session-card__title {
    width: 100%;
    margin: 0;
    padding: 0 4px;
    color: #1b3a68;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    box-sizing: border-box;
}

.sessions-preview .session-card__lock {
    width: 58px;
    height: 58px;
}

.sessions-preview .session-card__lock svg {
    width: 30px;
    height: 30px;
}

.sessions-preview__footer {
    position: static;
    top: auto;
    margin: 0 0 2px;
}

/* ==================== ГЛАВНАЯ: ИСТОРИИ УЧАСТНИКОВ ==================== */
.trust-preview {
    min-height: 620px;
    padding: 30px 0 28px;
    overflow: hidden;
    box-sizing: border-box;
    background: #d7e2e8;
    color: #1b3a68;
}

.trust-preview__head {
    display: grid;
    width: min(1118px, calc(100% - 40px));
    min-height: 0;
    margin: 0 auto 14px;
    padding: 26px 42px 24px;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    box-sizing: border-box;
    border: 1px solid rgba(27, 58, 104, .06);
    border-radius: 30px;
    background-color: #fff;
    background-image: radial-gradient(circle, rgba(27, 58, 104, .07) 2px, transparent 2.5px);
    background-position: 8px 8px;
    background-size: 42px 42px;
}

.trust-preview__title {
    margin: 0;
    color: #1b3a68;
    font-size: clamp(38px, 3.7vw, 52px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.035em;
}

.trust-preview__subtitle {
    max-width: 820px;
    margin: 0;
    color: #1b3a68;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 700;
    line-height: 1.22;
}

.trust-preview__subtitle strong {
    color: #ff5b1c;
    font-weight: 800;
}

.trust-preview__viewport {
    width: min(1118px, 100%);
    margin: 0 auto;
    padding: 0 0 8px;
    overflow-x: auto;
    overflow-y: hidden;
    box-sizing: border-box;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

@media (min-width: 601px) {
    .trust-preview__viewport {
        cursor: grab;
        overflow-x: hidden;
        scroll-snap-type: none;
    }

    .trust-preview__track {
        will-change: transform;
        user-select: none;
        touch-action: pan-y;
    }
}

.trust-preview__viewport.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.trust-preview__viewport::-webkit-scrollbar {
    display: none;
}

.trust-preview__track {
    display: flex;
    width: max-content;
    gap: 18px;
}

.trust-preview .dub-card {
    position: relative;
    width: 266px;
    min-width: 266px;
    height: 360px;
    padding: 0;
    flex: 0 0 266px;
    overflow: hidden;
    border: 7px solid #fff;
    border-radius: 24px;
    box-sizing: border-box;
    background: #1b3a68;
    box-shadow: 0 10px 24px rgba(27, 58, 104, .1);
    cursor: pointer;
    scroll-snap-align: start;
}

.trust-preview .dub-card__bg,
.trust-preview .dub-card__shade,
.trust-preview .dub-card__default,
.trust-preview .dub-card__details {
    position: absolute;
    inset: 0;
}

.trust-preview .dub-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .35s ease;
}

.trust-preview .dub-card__shade {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(10, 30, 58, .12) 0%, rgba(10, 30, 58, 0) 38%),
        linear-gradient(0deg, rgba(10, 30, 58, .92) 0%, rgba(10, 30, 58, .08) 62%);
    transition: background .3s ease, backdrop-filter .3s ease;
}

.trust-preview .dub-card__default,
.trust-preview .dub-card__details {
    z-index: 2;
    display: flex;
    padding: 18px;
    flex-direction: column;
    box-sizing: border-box;
    transition: opacity .25s ease, transform .3s ease;
}

.trust-preview .dub-card__default {
    justify-content: flex-end;
}

.trust-preview .dub-card__project {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.02;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .3);
}

.trust-preview .dub-card__person {
    margin-top: 7px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 500;
}

.trust-preview .dub-card__more {
    display: inline-flex;
    min-height: 38px;
    margin-top: 14px;
    padding: 0 15px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: #1b3a68;
    font-size: 12px;
    font-weight: 700;
}

.trust-preview .dub-card__details {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
}

.trust-preview .dub-card__details-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.trust-preview .dub-card__details-title {
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.05;
}

.trust-preview .dub-card__close {
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    flex: 0 0 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
}

.trust-preview .dub-card__details-person {
    margin-top: 8px;
    color: #ffb090;
    font-size: 12px;
    font-weight: 700;
}

.trust-preview .dub-card__desc {
    margin: 16px 0 0;
    padding: 0;
    overflow-y: auto;
    flex: 1;
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    line-height: 1.42;
}

.trust-preview .dub-card__contact-btn {
    display: inline-flex;
    min-height: 42px;
    margin-top: 14px;
    padding: 0 15px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    background: #ff5b1c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.trust-preview .dub-card.is-open .dub-card__bg img {
    transform: scale(1.06);
    filter: brightness(.66);
}

.trust-preview .dub-card.is-open .dub-card__shade {
    background: rgba(14, 38, 73, .78);
    backdrop-filter: blur(4px);
}

.trust-preview .dub-card.is-open .dub-card__default {
    opacity: 0;
    pointer-events: none;
}

.trust-preview .dub-card.is-open .dub-card__details {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.trust-preview .dub-card--skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, #eef2f5 25%, #f8fafb 40%, #eef2f5 55%);
    background-size: 220% 100%;
    animation: skeletonShimmer 1.2s linear infinite;
}

@keyframes skeletonShimmer {
    from { background-position: 200% 0; }
    to { background-position: -20% 0; }
}

.trust-preview__empty {
    display: grid;
    width: min(1118px, calc(100vw - 40px));
    min-height: 180px;
    place-items: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, .72);
    color: #365477;
    font-size: 15px;
    text-align: center;
}

.trust-preview__footer {
    display: flex;
    width: min(1118px, calc(100% - 40px));
    margin: 4px auto 0;
    align-items: center;
    justify-content: center;
}

.trust-preview__cta {
    display: inline-flex;
    min-width: 230px;
    min-height: 42px;
    padding: 8px 18px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    border: 1px solid #ff5b1c;
    border-radius: 999px;
    background: #ff5b1c;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.trust-preview__cta:hover {
    transform: translateY(-2px);
    border-color: #e84e12;
    background: #e84e12;
}

.trust-preview__cta-arrow {
    color: #fff;
    font-size: 19px;
    transition: transform .25s ease;
}

.trust-preview__cta:hover .trust-preview__cta-arrow {
    transform: translateX(3px);
}

@media (min-width: 901px) and (max-width: 1100px) {
    .sessions-preview__head,
    .sessions-preview__viewport,
    .trust-preview__head,
    .trust-preview__footer {
        width: min(780px, calc(100% - 40px));
    }

    .sessions-preview .session-card,
    .trust-preview .dub-card {
        width: 248px;
        min-width: 248px;
        flex-basis: 248px;
    }

    .trust-preview__head {
        grid-template-columns: minmax(0, 1fr);
        padding-inline: 28px;
        gap: 12px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .sessions-preview__head,
    .sessions-preview__viewport,
    .trust-preview__head,
    .trust-preview__footer {
        width: min(744px, calc(100% - 40px));
    }

    .sessions-preview__head,
    .trust-preview__head {
        padding-inline: 28px;
    }

    .sessions-preview .session-card,
    .trust-preview .dub-card {
        width: 236px;
        min-width: 236px;
        flex-basis: 236px;
    }
}

@media (max-width: 600px) {
    .snap-section--sessions,
    .snap-section--trust {
        height: calc(100svh - 64px);
        min-height: calc(100svh - 64px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .sessions-preview,
    .trust-preview {
        display: flex;
        height: 100%;
        min-height: 0;
        padding: 14px 0 14px;
        flex-direction: column;
    }

    .sessions-preview__head,
    .trust-preview__head {
        display: grid;
        width: calc(100% - 24px);
        min-height: 0;
        margin-bottom: 12px;
        padding: 20px 18px 17px;
        grid-template-columns: 1fr;
        gap: 9px;
        border-radius: 27px;
        text-align: center;
    }

    .sessions-preview__title {
        font-size: clamp(40px, 6.6svh, 50px);
    }

    .sessions-preview__subtitle {
        max-width: 350px;
        margin-inline: auto;
        font-size: clamp(14px, 2.15svh, 16px);
        line-height: 1.3;
    }

    .sessions-preview__cadence {
        margin-top: 9px;
        padding: 7px 12px;
        font-size: 10.5px;
    }

    .sessions-preview__viewport,
    .trust-preview__viewport {
        display: flex;
        width: 100%;
        min-height: 0;
        margin: 0;
        padding-bottom: 8px;
        flex: 1 1 auto;
        align-items: center;
        box-sizing: border-box;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-padding-left: 16px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        touch-action: pan-x pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .sessions-preview__track,
    .trust-preview__track {
        gap: 12px;
        padding: 8px 42px 8px 16px;
        align-items: center;
        touch-action: pan-x pan-y;
    }

    .sessions-preview .session-card {
        width: calc(100vw - 48px);
        min-width: calc(100vw - 48px);
        height: auto;
        min-height: 0;
        aspect-ratio: auto;
        flex-basis: calc(100vw - 48px);
        padding: 11px;
        gap: 12px;
        border-radius: 22px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .sessions-preview .session-card__thumb {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .sessions-preview .session-card__title {
        min-height: 52px;
        padding: 2px 7px 7px;
        font-size: 19px;
        line-height: 1.25;
    }

    .sessions-preview__footer {
        position: static;
        top: auto;
        margin: 5px 0 14px;
        flex: 0 0 auto;
    }

    .sessions-preview__footer .castings-see-all__link {
        min-width: 210px;
        min-height: 48px;
        padding: 9px 17px;
        font-size: 15px;
    }

    .trust-preview {
        padding: 12px 0 14px;
    }

    .trust-preview__head {
        width: calc(100% - 32px);
        margin-bottom: 10px;
        padding: 14px 16px 12px;
        gap: 7px;
        border-radius: 24px;
    }

    .trust-preview__viewport {
        width: 100%;
        margin: 0;
        padding: 0 0 6px 14px;
        flex: 1 1 auto;
        align-items: center;
        scroll-padding-left: 14px;
    }

    .trust-preview__track {
        gap: 12px;
        padding: 6px 42px 18px 0;
        align-items: center;
    }

    .trust-preview__title {
        font-size: clamp(28px, 4.8svh, 34px);
        line-height: 1;
    }

    .trust-preview__subtitle {
        max-width: 310px;
        margin-inline: auto;
        font-size: clamp(11px, 1.7svh, 13px);
        line-height: 1.22;
    }

    .trust-preview .dub-card {
        width: min(318px, calc(100vw - 64px));
        min-width: min(318px, calc(100vw - 64px));
        height: auto;
        min-height: 0;
        aspect-ratio: 266 / 360;
        flex-basis: min(318px, calc(100vw - 64px));
        border-width: 7px;
        border-radius: 23px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .trust-preview .dub-card__default,
    .trust-preview .dub-card__details {
        padding: 16px;
    }

    .trust-preview .dub-card__project {
        font-size: 25px;
    }

    .trust-preview .dub-card__details-title {
        font-size: 22px;
    }

    .trust-preview__footer {
        width: calc(100% - 32px);
        margin: 4px auto 10px;
        flex: 0 0 auto;
        justify-content: center;
    }

    .trust-preview__cta {
        width: auto;
        min-width: min(318px, calc(100vw - 64px));
        min-height: 46px;
        padding-inline: 18px;
        font-size: 14px;
    }
}

@media (max-width: 600px) and (max-height: 600px) {
    .sessions-preview__head,
    .trust-preview__head {
        padding-block: 10px 9px;
    }

    .sessions-preview__title,
    .trust-preview__title {
        font-size: 27px;
    }

    .sessions-preview__subtitle,
    .trust-preview__subtitle {
        font-size: 10.5px;
    }

    .sessions-preview__cadence {
        margin-top: 5px;
        padding-block: 4px;
    }

    .sessions-preview .session-card {
        max-height: 315px;
    }

    .trust-preview .dub-card {
        width: min(240px, calc(100vw - 84px));
        min-width: min(240px, calc(100vw - 84px));
        height: auto;
        min-height: 0;
        aspect-ratio: 266 / 360;
        flex-basis: min(240px, calc(100vw - 84px));
    }

    .trust-preview__cta {
        min-height: 36px;
        font-size: 12px;
    }
}

/* Main page: simplified casting header and one shared content width. */
.castings-hero__intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}

.castings-hero__controls {
    min-width: 0;
    justify-content: center;
}

.castings-hero__intro .castings--nda {
    display: inline-flex;
    min-height: 0;
    margin: 8px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(27, 58, 104, .68);
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
}

.castings-hero__intro .castings--nda::before {
    display: none;
}

.castings-hero__intro .castings--nda::after {
    content: "↗";
    margin-left: 6px;
    color: #ff5b1c;
    font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
    .castings-hero__intro .castings--nda:hover {
        border: 0;
        background: transparent;
        color: #1b3a68;
        transform: translateY(-1px);
    }
}

.castings-hero > .viewport {
    width: min(1160px, calc(100% - 40px));
    max-width: none;
}

@media (min-width: 601px) and (max-width: 1100px) {
    .castings-hero > .viewport {
        width: min(1160px, calc(100% - 40px));
    }
}

@media (min-width: 601px) and (max-width: 680px) {
    .casting-card {
        width: calc((100% - 14px) / 2);
        min-width: calc((100% - 14px) / 2);
    }
}

@media (min-width: 681px) and (max-width: 979px) {
    .casting-card {
        width: calc((100% - 28px) / 3);
        min-width: calc((100% - 28px) / 3);
    }
}

@media (min-width: 980px) {
    .casting-card {
        width: calc((100% - 42px) / 4);
        min-width: calc((100% - 42px) / 4);
    }
}

@media (max-width: 760px) {
    .castings-hero__intro {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .castings-hero__copy,
    .castings-hero__copy .subtitle {
        text-align: center;
    }

    .castings-hero__controls {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .castings-hero__controls {
        margin-top: 6px;
    }

    .castings-hero__intro .castings--nda {
        margin: 4px 0 0;
        padding: 0;
        font-size: 9.5px;
    }

    .snap-section--castings .castings-hero > .viewport {
        width: 100%;
    }
}

/* Catalog: approved shared card system and responsive composition. */
@media (min-width: 769px) and (max-width: 1199px) {
    .sessions__container {
        width: 100%;
        align-items: flex-start;
    }

    .sessions__container > .content {
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
    }

    .sessions__container > .content .sessions__intro,
    .sessions__container > .content .sessions__content {
        width: 100%;
        min-width: 0;
        max-width: none;
        box-sizing: border-box;
    }

    .catalog-footer-shell {
        width: 100%;
    }
}

/* Catalog home: only complete cards are shown at desktop and tablet widths. */
@media (min-width: 1020px) {
    .catalog-home .home-track .catalog-casting-card,
    .catalog-home .home-grid .session-card {
        width: calc((100% - 32px) / 3) !important;
        min-width: calc((100% - 32px) / 3) !important;
        flex-basis: calc((100% - 32px) / 3) !important;
    }
}

@media (min-width: 769px) and (max-width: 1019px) {
    .catalog-home .home-track .catalog-casting-card,
    .catalog-home .home-grid .session-card {
        width: min(320px, calc((100% - 16px) / 2)) !important;
        min-width: min(320px, calc((100% - 16px) / 2)) !important;
        flex-basis: min(320px, calc((100% - 16px) / 2)) !important;
    }
}

/* Dedicated casting page uses the same poster cards as the catalog home. */
#videosGrid .catalog-casting-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 7px;
    overflow: hidden;
    border: 1px solid #d4e0e8;
    border-radius: 22px;
    background: #fff;
    box-sizing: border-box;
}

#videosGrid .catalog-casting-inner {
    overflow: hidden;
    border-radius: 16px;
    background: #1b3a68;
}

#videosGrid .catalog-casting-thumb {
    height: auto;
    aspect-ratio: 3 / 4;
}

#videosGrid .catalog-casting-topline {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

#videosGrid .catalog-casting-kind {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #1b3a68;
    font-size: 11px;
    font-weight: 700;
}

#videosGrid .catalog-casting-badge {
    position: static;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 11px;
    box-shadow: none;
}

#videosGrid .catalog-casting-info {
    align-items: flex-start;
    justify-content: flex-end;
    padding: 18px 14px;
}

#videosGrid .catalog-casting-title {
    max-width: 100%;
    color: #fff;
    font-size: 23px;
    line-height: 1.02;
    text-align: left;
}

#videosGrid .catalog-casting-actions {
    position: static;
    margin: 7px 0 0;
    padding: 0;
}

#videosGrid .catalog-casting-btn {
    display: flex;
    min-height: 42px;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    background: #1b3a68;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-sizing: border-box;
}

#videosGrid .catalog-casting-btn--primary {
    border: 0;
    background: #1b3a68;
    color: #fff;
}

#videosGrid .catalog-casting-btn--results {
    background: #edf2f5;
    color: #173f75;
}

#videosGrid .catalog-casting-btn__arrow {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ff5b1c;
    color: #fff;
    font-size: 16px;
}

#videosGrid .catalog-casting-btn__arrow--results {
    background: #173f75;
}

/* Dedicated sessions page: the same clean horizontal previews, always 16:9. */
.sessions-page-description {
    max-width: 760px;
    margin: 14px 0 0 !important;
    color: #1b3a68 !important;
    font-size: 17px !important;
    line-height: 1.45 !important;
}

.sessions__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 20px;
}

.sessions__grid .session-card {
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: none;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 8px;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid #d4e0e8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(27, 58, 104, .08);
    box-sizing: border-box;
}

.sessions__grid .session-card__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
}

.sessions__grid .session-card__thumb img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto !important;
    object-fit: cover;
    border-radius: 0;
}

.sessions__grid .session-card__title {
    width: auto;
    margin: 0;
    padding: 10px 4px 5px;
    color: #1b3a68;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.sessions__grid .session-card__lock {
    width: 48px;
    height: 48px;
}

@media (min-width: 769px) and (max-width: 1019px) {
    #videosGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .sessions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .sessions__intro {
        min-height: 0;
        padding: 20px 18px !important;
    }

    .sessions__intro h1 {
        margin: 0;
        font-size: clamp(32px, 10vw, 36px) !important;
        line-height: 1.05;
    }

    .sessions-page-description {
        max-width: none;
        margin: 8px 0 0 !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
    }

    #videosGrid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #videosGrid .catalog-casting-card {
        width: min(78vw, 280px);
        max-width: 280px;
        margin: 0 auto;
    }

    .sessions__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Sessions and castings: one expandable grid instead of numbered pages. */
.catalog-expandable-grid:not(.is-expanded) > :nth-child(n + 4) {
    display: none !important;
}

.catalog-expandable-grid.is-expanded > :nth-child(n + 4) {
    animation: catalog-list-reveal .24s ease both;
}

.catalog-list-toggle {
    display: flex;
    width: max-content;
    min-width: 210px;
    min-height: 44px;
    margin: 10px auto 0;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #b5c6d7;
    border-radius: 999px;
    background: #fff;
    color: #1b3a68;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-sizing: border-box;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.catalog-list-toggle[hidden] {
    display: none !important;
}

.catalog-list-toggle:hover {
    border-color: #1b3a68;
    transform: translateY(-2px);
}

.catalog-expandable-grid + .catalog-list-toggle + .pagination {
    display: none !important;
}

@keyframes catalog-list-reveal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .catalog-list-toggle {
        min-width: 190px;
        min-height: 40px;
        margin-top: 8px;
        font-size: 12px;
    }
}

/* Dedicated castings page: compact two-column mobile poster grid. */
@media (max-width: 768px) {
    .sessions__content:has(#videosGrid) {
        padding: 12px !important;
    }

    .content:has(#videosGrid) .sessions__intro {
        padding: 16px 18px !important;
    }

    .content:has(#videosGrid) .sessions__intro h1 {
        font-size: clamp(32px, 10vw, 38px) !important;
    }

    body .sessions__content #videosGrid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        min-width: 0;
    }

    body .sessions__content #videosGrid .catalog-casting-card {
        width: 100%;
        min-width: 0;
        max-width: none;
        margin: 0;
        padding: 5px;
        overflow: hidden;
        border-radius: 16px;
        box-sizing: border-box;
    }

    body .sessions__content #videosGrid .catalog-casting-inner {
        border-radius: 12px;
    }

    body .sessions__content #videosGrid .catalog-casting-thumb {
        height: auto;
        aspect-ratio: 3 / 4;
    }

    body .sessions__content #videosGrid .catalog-casting-topline {
        top: 7px;
        right: 7px;
        left: 7px;
        gap: 4px;
    }

    body .sessions__content #videosGrid .catalog-casting-kind,
    body .sessions__content #videosGrid .catalog-casting-badge {
        padding: 4px 6px;
        font-size: 9px;
        line-height: 1;
        white-space: nowrap;
    }

    body .sessions__content #videosGrid .catalog-casting-badge--finished {
        background: rgba(255, 255, 255, .9);
        color: #6f7d8c;
    }

    body .sessions__content #videosGrid .catalog-casting-info {
        padding: 12px 10px;
    }

    body .sessions__content #videosGrid .catalog-casting-title {
        font-size: clamp(14px, 4vw, 17px);
        line-height: 1.08;
    }

    body .sessions__content #videosGrid .catalog-casting-actions {
        display: none;
    }

    body .sessions__content #videosGrid .catalog-casting-card--finished .catalog-casting-thumb img {
        filter: saturate(.72) brightness(.8);
    }

    body .sessions__content #videosGrid:not(.is-expanded) > :nth-child(4) {
        display: block !important;
    }

    .content:has(#videosGrid) .catalog-list-toggle {
        margin-top: 12px;
    }
}

@media (max-width: 340px) {
    body .sessions__content #videosGrid {
        gap: 8px;
    }

    body .sessions__content #videosGrid .catalog-casting-card {
        padding: 4px;
        border-radius: 14px;
    }

    body .sessions__content #videosGrid .catalog-casting-kind,
    body .sessions__content #videosGrid .catalog-casting-badge {
        padding: 3px 5px;
        font-size: 8px;
    }

    body .sessions__content #videosGrid .catalog-casting-title {
        font-size: 13px;
    }
}

/* Keep casting names compact and consistent in every card layout. */
.casting-card .casting-title,
.catalog-casting-card .catalog-casting-title {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
