/**
 * Стили лендинга "Актёрская сессия"
 * Точная копия дизайна из Figma
 */

/* ============================
   CSS Variables
   ============================ */
:root {
    --bg-main: #D7E2E8;
    --bg-light: #F5F8FA;
    --color-primary: #1B3A68;
    --color-accent: #FF5B1C;
    --color-white: #FFFFFF;
    --font-family: 'Roboto', sans-serif;
}

/* ============================
   Reset
   ============================ */
*,
*::before,
*::after {
    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: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ============================
   БЛОК 1: HERO
   ============================ */
.hero {
    width: 100%;
    min-height: 100%;
    background: var(--bg-main);
    position: relative;
    padding: 52px 140px 60px;
}

/* Header */
.header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 293px;
    margin-bottom: 94px;
}

.header__logo img {
    width: 60px;
    height: 44px;
    object-fit: contain;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 48px;
}

.header--registration {
    padding-top: 52px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 140px;
    padding-right: 140px;
    justify-content: space-between;
    gap: 0;
}

.header__link {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 500;
    transition: opacity 0.3s;
    min-width: 200px;
}

.header__link:hover {
    opacity: 0.7;
}

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

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

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

/* Hero Container */
.hero__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1160px;
    margin: 0 auto;
}

.container__block {
    max-width: 1200px;
    margin: 0 auto;
}

.container__block {
    background-color: #fff !important;
    border-radius: 40px;
    box-sizing: border-box;
    padding: 50px;
}

/* Hero Content (left side) */
.hero__content {
    width: 581px;
    flex-shrink: 0;
}

.hero__title {
    font-size: 68.74px;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.1;
}

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

/* Feature box with vertical line */
.hero__feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.hero__feature-line {
    width: 8px;
    height: 105px;
    background: var(--color-primary);
    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;
    color: var(--color-primary);
}

/* Hero Button */
.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 0.3s, box-shadow 0.3s;
}

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

/* Hero Image */
.hero__image {
    flex-shrink: 0;
}

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

/* Hero Arrows (sides of entire block) */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 23px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    z-index: 10;
}

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

.hero__arrow--prev {
    left: 40px;
}

.hero__arrow--next {
    right: 40px;
}

/* ============================
   БЛОК 2: FEATURES
   ============================ */
.features {
    background: var(--bg-main);
    /* padding: 52px 140px 80px; */
    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: flex-start;
    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 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 22px 44px;
    background: var(--color-white);
    border-radius: 143px;
    color: var(--color-accent);
    font-size: 26px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-orange-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 22px 44px;
    background: var(--color-white);
    border-radius: 143px;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 26px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-orange-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 17px 35px;
    background: var(--color-accent);
    border-radius: 100px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

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

/* ============================
   DIVIDER WITH SVG WAVE
   ============================ */
.divider {
    position: relative;
    padding: 0;
    overflow: hidden;
    width: 100%;
    z-index: 10;
    margin-bottom: -60px;
}

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

.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);
    text-transform: lowercase;
}

/* ============================
   БЛОК 3: PERSONAL
   ============================ */
.personal {
    background: var(--bg-light);
    padding: 100px 140px 80px;
    position: relative;
}

.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;
}

.personal__image {
    flex-shrink: 0;
}

.personal__image img {
    width: 240px;
    height: 240px;
    border-radius: 24px;
    object-fit: cover;
    border: 4px solid var(--color-primary);
}

.personal__info {
    max-width: 420px;
}

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

.personal__quote {
    padding-left: 20px;
    border-left: 4px solid var(--color-accent);
    margin-bottom: 32px;
}

.personal__quote p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.5;
    color: var(--color-primary);
}

/* ============================
   БЛОК 4: TESTIMONIALS
   ============================ */
.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;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); */
    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-size: 12px;
    font-weight: 500;
    color: #1B3A68;
    white-space: nowrap;
    text-align: center;
    font-size: 0.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: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: grid-template-rows 0.45s cubic-bezier(.4, 0, .2, 1);
    grid-template-rows: 1fr;
    cursor: pointer;
}

.testimonial__text>span {
    overflow: hidden;
}

.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 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 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, 0.2);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

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

.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 0.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);
    font-size: 16px;
    color: var(--color-primary);
    transition: border-color 0.3s;
}

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

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

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

.modal__btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 91, 28, 0.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;
}

/* ============================
   RESPONSIVE
   ============================ */
@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;
    }

    .features,
    .personal,
    .testimonials,
    .cta,
    .footer {
        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 {
        width: 100%;
        font-size: 16px;
        line-height: 1.5;
    }

    .hero__feature-box p {
        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;
    }

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

    .features__title,
    .personal__title,
    .testimonials__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: -40px;
    }

    .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: 0px;
        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 {
    padding-top: 100px;
    padding-right: 20px;
    padding-bottom: 100px;
    padding-left: 20px;

    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    /* Adjust to account for header */
}

.registration__container {
    width: 600px;
    height: 400px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    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 Section
   ============================ */
.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, 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, 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: none;
    border-radius: 50px;
    color: var(--color-white);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    /* видео растягивается на всю ширину контейнера */
    max-width: 720px;
    /* максимум для десктопа */
    margin: 0 auto;
    /* центрируем на странице */
}

.video-wrapper video {
    width: 100%;
    /* видео занимает всю ширину родителя */
    height: 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: bold;
    /* жирный текст */
    text-align: center;
    /* выравнивание текста по центру */
    margin: 20px auto;
    /* отступ сверху и снизу + центрирование по горизонтали */
    max-width: 600px;
    /* ограничение ширины блока */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* лёгкая тень для объёма */
}


/* ================= MODAL ================= */

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

.sub-modal.active {
    display: flex
}

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

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

/* Источник: :contentReference[oaicite:0]{index=0} */

/* ========== MODAL / CLOSE ========== */
.sub-modal__close {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer
}

/* ========== STEPS ========== */
.sub-step {
    animation: fade .35s ease
}

.sub-title {
    font-size: 22px;
    margin-bottom: 20px
}

.sub-desc {
    font-size: 14px;
    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: none;
    border-radius: 14px;
    background: #FF5B1C;
    color: #fff;
    cursor: pointer
}

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

.sub-back:hover {
    color: #FF5B1C
}

.form-error {
    color: #ff3b30;
    font-size: 13px;
    text-align: left;
    margin-bottom: 10px;
    min-height: 16px
}

/* ========== PLANS ========== */
.sub-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px
}

.plan-card {
    border: 2px solid #eee;
    padding: 18px;
    border-radius: 16px;
    cursor: pointer;
    transition: .25s;
    overflow:visible;
}

.plan-card.active {
    border-color: #FF5B1C;
    background: #fff4ef
}

.plan-name {
    font-weight: 600
}

.plan-price {
    font-size: 22px;
    font-weight: 700;
    margin-top: 4px
}

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

/* ========== LOADER ========== */
.loader-wrap {
    text-align: center;
    padding: 60px 0
}

.loader {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid #eee;
    border-top-color: #FF5B1C;
    margin: auto;
    animation: spin 1s linear infinite
}

/* ========== IFRAME ========== */
.sub-iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 14px
}

/* ========== RESUME BUTTON ========== */
.resume-payment {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FF5B1C;
    color: #fff;
    padding: 14px 22px;
    border-radius: 40px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    animation: resumePulse 2.4s infinite, resumeNudge 6s infinite
}

/* ========== MOBILE ========== */
@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 {
        width: 100%;
        height: 100%;
        max-width: none;
        border-radius: 0;
        padding: 24px 18px 28px;
        display: flex;
        flex-direction: column;
        overflow: auto;
        animation: modalUp .28s ease
    }

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

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

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

        to {
            transform: translateY(0)
        }
    }
}

/* ========== CONSENT / SUPPORT ========== */
.consent {
    margin: 12px 0 8px;
    text-align: left;
    font-size: 14px
}

.consent__label {
    display: block;
    cursor: pointer;
    line-height: 1.3
}

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

.consent__hint {
    margin-top: 8px;
    background: #fff6f1;
    border: 1px solid #ffe6d9;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    color: #6b5b50
}

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

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

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

#step2Error {
    min-height: 18px;
    margin-top: 8px;
    color: #ff3b30;
    font-size: 13px;
    text-align: left
}

/* ========== SUCCESS ICON ========== */
.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    animation: successPop .35s ease
}

/* ========== PROMO ========== */
.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: none;
    border-radius: 10px;
    background: #111;
    color: #fff;
    cursor: pointer;
    height: 40px
}

.promo-status {
    font-size: 13px;
    margin-top: 6px;
    min-height: 18px
}

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

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

/* ========== SUBSCRIBE LK ========== */
.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: #ffffff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: min-content
}

.sidebar-item {
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    font-weight: 400
}

.sidebar-item.active {
    background: #e7edf2
}

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

.unlock-btn {
    margin-top: auto;
    background: #ff5b1c;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: bold
}

/* ========== SESSIONS / CARDS ========== */
.sessions__content,
.sessions__intro {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 30px
}

.sessions__intro {
    margin-bottom: 20px
}

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

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

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

.session-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
    background: #ffffff;
    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:hover img {
    transform: scale(1.06)
}

.session-card__title {
    padding: 12px;
    font-size: 14px
}

.pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px
}

/* ========== VIDEO MODAL ========== */
.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    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)
}

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

.video-modal__close {
    position: fixed;
    right: 40px;
    top: 40px;
    background: transparent;
    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 {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: #efefef;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6)
}

.video-preview__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center;
    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 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.95);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    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: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    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 h3 {
    color: #000;
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px
}

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

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

/* ========== VIDEO SIDEBAR / BOXES ========== */
.video-modal__sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #f3f4f6;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 14px;
    font-weight: bold
}

.video-box {
    cursor: pointer;
    border-radius: 14px;
    padding: 14px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 200px;
    box-sizing: border-box
}

.video-box h4 {
    margin: 15px 0 8px;
    font-size: 14px;
    text-align: center;
    color: #fff
}

.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 {
    position: relative;
    padding-left: 12px;
    margin-bottom: 8px;
    font-size: 12px
}

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

.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)
}

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px
}

.page-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef1f3;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: .25s
}

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

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

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

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

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

/* ========== LK ALERT ========== */
.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 0;
    font-size: 18px;
    font-weight: 600;
    color: #ff5b1c
}

.lk-alert__text {
    margin: 0 0 8px 0;
    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 ========== */
.subscription-card {
    background: linear-gradient(180deg, #ffffff, #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: none;
    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 ========== */
.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 ========== */
.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
}

/* ========== KEYFRAMES / ANIMATIONS ========== */
@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes fade {
    from {
        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 rgba(255, 91, 28, 0)
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 91, 28, 0)
    }
}

@keyframes resumeNudge {

    0%,
    90%,
    100% {
        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
    }

    100% {
        opacity: 0
    }
}

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

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

.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) {
    .sessions__sidebar {
        display: none !important
    }

    .header__nav {
        display: none !important
    }

    .content {
        padding-bottom: 88px
    }
}


.mobile-nav__item.active .mobile-nav__icon path {
    fill: #1B3A68;
    stroke: #1B3A68;
}

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

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

/* трек — флекс ряд, будет смещаться по X */
.sessions-track {
    margin-top: 60px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    cursor: grab;
    will-change: transform;
    transition: box-shadow .2s;
}

/* карточка */
.session-card {
    min-width: 220px;
    height: 200px;
    width: 220px;
    background: var(--card-bg);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(11, 24, 40, 0.06);
    overflow: hidden;
    flex-shrink: 0;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* превью */
.session-card__thumb {
    width: 100%;
    height: 120px;
    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 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center;
    transition: transform .6s ease;
}

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

/* заголовок и подпись */
.session-card__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

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

.session-card__lock{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);

  width:54px;
  height:54px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(27,58,104,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border:1px solid rgba(255,255,255,0.25);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.35);

  z-index:3;
}

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

/* плавный отступ сверху у обёртки */
.sessions-marquee__wrap::after {
    content: '';
    display: block;
    height: 10px;
}

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

    .session-card__thumb {
        height: 100px;
    }
}

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

/* боковые fade-зоны */
.sessions-marquee__wrap::before,
.sessions-marquee__wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    /* ширина размытия */
    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, 0.95) 25%,
            rgba(215, 226, 232, 0.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, 0.95) 25%,
            rgba(215, 226, 232, 0.6) 55%,
            rgba(215, 226, 232, 0) 100%);
}

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

.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{
    position:relative;
    width:300px;
    background:#f3f3f3;
    border-radius:26px;
    padding-top:50px;
    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{
    margin-bottom:12px;
    padding-left:24px;
    position:relative;
    font-size:14px;
}

.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{
    background:#ff5b1c;
    color:#fff;
}

.plan-btn--primary{
    background:#ff5b1c;
    border:none;
    color:#fff;
}

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



.pricing-section{
    padding:80px 20px;
    background:#c9d2d8;
}

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

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

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

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

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

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

.pricing-item__badge{
    position:absolute;
    top:-35px;
    left:50%;
    transform:translateX(-50%);
    width:100px;
    height:100px;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-weight:600;
    color:#fff;
    font-size:14px;
    /* box-shadow:0 6px 0 rgba(0,0,0,.08); */
    border:8px solid var(--bg-main);
    z-index: 555;
}

.pricing-item__badge span{
    font-size:28px;
    font-weight:700;
}

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

.pricing-item__badge--gray{
    background:#e9e9e9;
    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;
    color:#666;
    margin-bottom:22px;
    color: #000;
}

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

.pricing-item__list li{
    margin-bottom:12px;
    padding-left:24px;
    position:relative;
    font-size:14px;
}

.pricing-item__list li{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    font-weight: bold;
}

.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{
    background:#ff5b1c;
    color:#fff;
}

.pricing-item__btn--primary{
    background:#ff5b1c;
    border:none;
    color:#fff;
}
