/* light cta */
.cta-light__inner {
    display: grid;
    grid-template-columns: 1.1fr auto;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.cta-light__content h2 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.2;
    color: var(--title);
    font-weight: 400;
}

.cta-light__content p {
    margin: 0 0 18px;
    color: var(--text);
}

.cta-light__form {
    display: grid;
    grid-template-columns: minmax(220px, 320px) auto;
    gap: 12px;
    align-items: center;
}

.cta-light__form input {
    height: 48px;
    border: 1.5px solid #e0e5ee;
    border-radius: 12px;
    padding: 0 18px;
}

.agree-dark {
    color: #8b93a2;
    margin-bottom: 12px;
}

.agree-dark a {
    color: var(--text-dark);
    font-weight: 600;
}

.cta-light__stats {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    padding-top: 30px;
    flex-direction: column;
    margin-top: 8%;
}

.stats_item {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
}

.cta-light_title {
    color: #566672;
    font-size: 16px;
    position: absolute;
    top: 0;
}

.light-stat {
    min-width: 200px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #ecf3f9;
    flex: 1;
}

.light-stat strong {
    display: block;
    margin-bottom: 4px;
    color: var(--blue);
    font-size: 18px;
}

.light-stat span {
    display: block;
    color: #566672;
    font-size: 11px;
}

.form_choose_area {
    position: relative;
}

.form_choose_area label.error {
    color: #C14100;
    border-radius: 12px;
    position: absolute;
    top: -20px;
    font-size: 16px;
}

.agree_wrapper {
    display: flex;
    flex-direction: column;
}

.form_choose_area .agree label.error {
    top: 100%;
}

@media (max-width: 1200px) {
    .cta-light__inner {
        grid-template-columns: 1fr;
    }

    .cta-light__stats {
        margin-top: unset;
    }
}

@media (max-width: 980px) {
    .cta-light__form {
        grid-template-columns: 1fr;
    }

    .cta-light__form button.theme-btn {
        width: 100%;
        max-width: unset;
    }
}

@media (max-width: 767px) {
    .cta-light__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
        border-radius: 12px;
    }

    .cta-light__content h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .cta-light__content p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .cta-light__form {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cta-light__form input {
        height: 32px;
        padding: 0 10px;
        border-radius: 8px;
        font-size: 16px;
    }

    .cta-light__stats {
        gap: 8px;
        align-items: stretch;
    }

    .light-stat {
        min-width: 0;
        flex: 1;
        padding: 10px 12px;
    }

    .light-stat strong {
        font-size: 14px;
    }

    .light-stat span {
        font-size: 10px;
    }

    /* Light CTA */
    .cta-light.section {
        padding-top: 18px;
        padding-bottom: 24px;
    }

    .cta-light__inner {
        gap: 10px;
        padding: 12px;
        border-radius: 10px;
    }

    .cta-light__content h2 {
        margin: 0 0 6px;
        font-size: 16px;
        line-height: 1.2;
    }

    .cta-light__content p {
        margin: 0 0 10px;
        font-size: 10px;
        line-height: 1.35;
    }

    .cta-light__form {
        gap: 8px;
        margin-bottom: 8px;
    }

    .light-stat {
        padding: 8px 10px;
        border-radius: 8px;
    }

    .light-stat strong {
        margin-bottom: 2px;
        font-size: 10px;
    }

    .light-stat span {
        font-size: 8px;
        line-height: 1.2;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 390px) {
    .cta-light__form input, .cta-light__form .theme-btn, .agree_wrapper {
        max-width: 275px;
    }

    .agree_wrapper > div {
        max-width: 275px;
        min-width: unset;
    }
}

.cta-light__form .theme-btn {
    max-width: 310px;
}

/* Стили hover для кнопок */
.form_choose_area button {
    overflow: hidden;
    position: relative;
    border: none;
}

.form_choose_area button:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -100%;
    opacity: .2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -10;
}

.form_choose_area button:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10;
}
/* Стили hover для кнопок */