*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-title {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-comments {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.core-title {
    font-size: 45px;
    /* text-transform: uppercase; */
    /* margin-bottom: 20px; */
    margin: 0 auto;
    margin-top: 35px;
    text-align: start;
    line-height: 45px;
    /* max-width: 800px; */
    margin-bottom: 35px;
}

.core-title span {
    text-align: center;
}

.core-title-2 {
    font-size: 16px;
}

.div-video {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}

.video {
    max-width: 900px;
    width: 100%;
    cursor: pointer;
}

.full-video {
    z-index: 1;
    position: fixed;
    top: 0;
    bottom: -4%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(1, 1, 1, 0.7);
}

.close {
    position: absolute;
    z-index: 1;
    top: 20px;
    right: 40px;
}

.close div {
    font-size: 52px;
    color: white;
    cursor: pointer;
}

.close div:hover {
    font-size: 52px;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.relative {
    position: relative;
}

.notification {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.notification div {
    background-color: rgba(49, 202, 79, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    padding: 10px;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    border: 1px solid white;
}

.notification img {
    width: 70px;
}

@media (max-width: 390px) {
    .notification div {
        width: 100%;
    }
}

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border: 4px solid lightblue;
}

.form-title {
    margin-top: 10px;
    margin-bottom: 5px;
}

.form img {
    width: 100%;
    max-width: 270px;
    margin: 20px 0;
}

.form-price {
    font-size: 24px;
    margin-bottom: 20px;
}

.form-text {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 700;
    color: rgb(113, 113, 113);
}

input {
    font-size: 18px;
    padding: 4px 10px;
    border: 1px solid rgba(53, 130, 237, 0.5);
    margin-bottom: 20px;
    width: 60%;
    outline: none;
}

.btn-submit {
    background-color: #3580ed;
    color: white;
    border: none;
    width: 50%;
    padding: 15px 20px;
    margin-bottom: 30px;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.4s ease;
}

@media (hover: hover) {
    .btn-submit:hover {
        transform: scale(0.9);
        transition: 0.4s ease;
    }
}

.all-coments {
    border: 1px solid rgb(187, 187, 187);
}

.text-all-coments {
    padding: 10px;
    font-weight: 700;
    font-size: 16px;
}

.place-coment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coment {
    margin-top: 10px;
    display: flex;
    width: 95%;
    margin-bottom: 20px;
    opacity: 1;
    transition: 0.4s ease;
    transform: translateY(0);
}

.ava-coment {
    border-radius: 100px;
    width: 70px;
    height: 70px;
    padding: 10px 10px;
}

.name-coment {
    color: #365899;
    font-size: 16px;
    font-weight: 700;
    padding: 5px;
}

.info-coment {
    width: 90%;
}

.text-coment {
    font-size: 16px;
    padding: 10px;
    border-radius: 20px;
    background-color: #eaebef;
    width: 100%;
}

.all-buttons-coment {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-react-coment {
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 10px;
    color: #365899;
}

.btn-react-coment p:last-child {
    color: rgb(105, 105, 105);
}

.react-coment {
    cursor: pointer;
}

.react-coment:hover {
    text-decoration: underline;
}

.btn-like-coment {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 3px 1px rgba(1, 1, 1, 0.3);
    border-radius: 100px;
    padding: 2px 5px;
}

@media (max-width: 900px) {
    .core-title {
        font-size: 38px;
        line-height: 40px;
    }

    .text-coment {
        font-size: 16px;
        padding: 30px 10px;
        border-radius: 30px;
        background-color: #eaebef;
        width: 100%;
    }
}

@media (max-width: 500px) {
    .core-title {
        font-size: 32px;
        line-height: 31px;
        margin-top: 20px;
        margin-bottom: 20px;
        line-height: 110% !important;
    }

    .core-title-2 {
        font-size: 22px !important;
        line-height: 110% !important;
    }
}

@media (max-width: 390px) {
    .all-buttons-coment {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.hero-icon {
    width: 31px;
    height: 27px;
    flex-shrink: 0;
}

.section-info-video {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin: 1rem 0;
    justify-content: center;
}

.info-video {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-video__text,
.date-now {
    font-size: 1rem;
    color: rgb(24, 24, 24);
}

.date-now {
    color: #4c8ae0;
}

.animate-show {
    opacity: 0;
    transition: 0.4s ease;
    transform: translateY(20px);
}

.input-container {
    position: relative;
    width: 60%;
}

.input-container input {
    width: 100%;
}

.input-container input[name='phone'] {
    padding-left: 35px;
    /* Добавляем отступ слева для изображения */
}

.input-container img {
    width: 25px;
    position: absolute;
    left: 5px;
    top: -5px;
    transform: translateY(-50%);
}

.div__popup-form {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(1, 1, 1, 0.8);

    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
}

@keyframes animPopupForm {
    0% {
        transform: translateY(-500%);
    }

    100% {
        transform: translateY(0%);
    }
}

.popup-form {
    background-color: white;
    overflow: auto;
    width: 90%;
    max-width: 500px;
    max-height: 90%;
    cursor: default;
    animation: animPopupForm 0.5s ease forwards;
}

.popup-form .form-title,
.popup-form .img-form_cert,
.popup-form .footer-title_form,
.popup-form .termina-form,
.popup-form .timer,
.popup-form .form-text {
    display: none;
}

.popup-form .btn-submit {
    margin: 0;
}

.popup-form .prod-form-img {
    margin-top: 0px;
}

.popup-form .div-img-form_cert {
    margin: 0;
    display: none;
}

.popup-form__btn-close {
    position: absolute;
    right: 2%;
    top: 3%;
    z-index: 1;
    font-size: 64px;
    cursor: pointer;
    color: rgb(172, 172, 172);
    transition: 0.3s ease;
    line-height: 1px;
}

.popup-form__btn-close:hover {
    transform: scale(0.9);
    transition: 0.3s ease;
}

.div-section-form {
    margin: 20px auto;
    width: 100%;
}

.popup-form .div-section-form {
    margin: 0px auto;
    width: 100%;
}

.none {
    display: none;
}

.wrap-prod-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.reviews-container {
    max-width: 700px;
    margin: 0 auto;
}

.review {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.review-header h4 {
    margin: 0;
}

.review-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.smartplayer-mobile-container {
    max-width: 700px !important;
}

@media screen and (max-width: 500px) {
    .section-info-video {
        justify-content: flex-start;
    }
}

img {
    max-width: 100%;
}


/* НОВАЯ ФОРМА */

.section-form.none {
    display: none;
}

.section-form {
    margin: 0;
    padding: 0;
    color: #1a1a1a;
    max-width: 420px;
    margin: 0 auto;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
}

.card {
    background: #1e2a58;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    padding: 22px;
}

.price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
}

.was {
    opacity: 0.85;
    color: #b9c3ee;
    text-decoration: line-through;
    font-size: 1.3rem;
    font-weight: 700;
}

.now {
    font-weight: 900;
    font-size: 2.8rem;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
}

.seal {
    margin-left: auto;
    background: #b61010;
    color: #fff;
    border-radius: 999px;
    padding: 8px 10px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.bar {
    background: #0f1b40;
    border-radius: 12px;
    padding: 14px;
    margin-top: 10px;
}

.bar .label {
    font-weight: 900;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #e9efff;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-align: center;
}

.timer {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-weight: 900;
    font-size: 1.1rem;
}

.timer .unit {
    flex: 1;
    background: #162351;
    border: 1px solid #2a3a73;
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
}

.timer .num {
    font-size: 1.4rem;
}

.timer .cap {
    font-size: 0.7rem;
    opacity: 0.85;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.scarcity {
    margin-top: 12px;
    font-weight: 800;
    color: #ffd9d9;
    text-align: center;
}

.scarcity-count {
    display: inline-flex;
    overflow: hidden;
    vertical-align: middle;
    color: #ff9696;
}

.redirect {
    pointer-events: visible !important;
}

.cta button {
    display: block;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(180deg, #ffb347, #ff7f11);
    color: #3b2200;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
    font-weight: 900;
    font-size: 1.24rem;
    letter-spacing: 0.4px;
    line-height: 1.3;
    width: 100%;
    cursor: pointer;
    transition: all 0.35s ease;
}

.headline {
    color: #fff;
    text-align: center;
    font-size: 1.55rem;
    font-weight: 900;
    margin: 22px 0 14px;
}

.benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.benefits li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 12px;
}

.benefits img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.benefit-title {
    display: block;
    font-weight: 900;
    font-size: 1.06rem;
    margin-bottom: 2px;
}

.benefit-copy {
    opacity: 0.98;
    line-height: 1.35;
}

.section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-top: 26px;
}

.section h3 {
    text-align: center;
    color: #1a1a1a;
    font-size: 1.3rem;
    margin: 0 0 16px;
    position: relative;
}

.section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff7f11;
    border-radius: 2px;
    margin: 8px auto 0;
}

.checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.checks li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #e6f7ed;
    border: 1px solid #c0e9d2;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.checks img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.checks strong {
    display: block;
    font-size: 1.05rem;
    color: #14532d;
    margin-bottom: 2px;
}

.badges {
    margin-top: 20px;
}

.badge.secure {
    background: #fff;
    border: 2px solid #4285f4;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.badge-text {
    width: fit-content;
    font-size: 1rem;
}

.badge .pay-logos {
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
}

.badge .pay-logos img {
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.cta {
    animation: pulse 3s infinite, ease;
    border-radius: 0.75rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 127, 17, 0.7);
        transform: scale(0.975);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 127, 17, 0);
        transform: scale(1.025);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 127, 17, 0);
        transform: scale(0.975);
    }
}

@media screen and (max-width: 500px) {
    .price-wrap {
        justify-content: space-between;
    }

    .price-wrap .now {
        font-size: 2.4rem;
    }

    .headline {
        font-size: 1.35rem;
    }

    .benefit-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .benefit-copy {
        font-size: 0.875rem;
    }

    .redirect button {
        font-size: 1.125rem;
    }

    .badge.secure {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .badge.secure {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .badge .pay-logos img {
        height: 25px;
    }
}