:root {
    --col-max: 1360px;
    --gutter: clamp(16px, 4vw, 40px);
    --gap: clamp(12px, 2vw, 24px);
    --cols: 12;


    /*
    --font-head: 'Unbounded', sans-serif;
    --font-body: 'Manrope', sans-serif;
    */

    --font-head: sans-serif;
    --font-body: sans-serif;

    --color-dark-blue: #104271;
    --color-red: #f01756;
    --text-main: #333333;
    --text-muted: #828a96;
    --c-bg: #ffffff;
    --c-text: #212121;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    display: block;
    max-width: 100%;
}

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

.full-bleed {
    width: 100%;
}

.site-footer {
    background: linear-gradient(90deg, #002255 0%, #003366 100%);
    color: #ffffff;
    padding: 72px 0px 32px 0px;
    width: 100%;
}


.container {
    width: 100%;
    max-width: var(--col-max);
    margin-inline: auto;
    /*padding-inline: var(--gutter);*/
}


.footer-container {
    max-width: var(--col-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}



.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-top .logo-box img {
    height: 71px;
    display: block;
    object-fit: contain;
}

.btn-call {
    background-color: #ff1744;
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-call:hover {
    background-color: #d50000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.copyright {
    font-size: 14px;
    margin-top: 0px;
}

.footer-contacts {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom .phone {
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
}

.footer-bottom .address {
    font-size: 14px;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 5px;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    cursor: pointer;
}

.section {
    padding: clamp(48px, 8vw, 90px) 0;
}



h2 {
    font-size: 50px;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: 0%;
    margin-bottom: 46px;

}




/*---------------faq---------------*/

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: #eef6fb;
    border-radius: 16px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    padding-right: 20px;
}

.arrow-wrap {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: #F21450;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow {
    width: 9px;
    height: 9px;
    border-left: 2.5px solid #ffffff;
    border-top: 2.5px solid #ffffff;
    transform: rotate(45deg);
    margin-top: 3px;
}


.faq-toggle:checked+.faq-header .arrow {
    transform: rotate(225deg);
    margin-top: -3px;
}







.faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: #F21450;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #fff;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 16px;
}

.faq-toggle:checked+.faq-header .faq-icon::after {
    transform: rotate(90deg);
}

.faq-toggle:checked+.faq-header .faq-icon {
    transform: rotate(0deg);
}

.faq-toggle:not(:checked)+.faq-header .faq-icon::after {
    transform: rotate(0deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 40px;
}

.faq-toggle:checked~.faq-body {
    max-height: 500px;
    padding: 0 40px 32px 40px;
}

.faq-answer {
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    padding-left: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer ul li {
    position: relative;
    padding-left: 0;
    margin-bottom: 4px;
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}


.stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.stat-item {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-number {
    font-size: 110px;
    font-weight: 300;
    color: #e91e56;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-description {
    font-size: 18px;
    line-height: 1.3;
    color: #333333;
    max-width: 220px;
}

.section__body {
    display: flex;
    gap: 20px;
    flex: 1;
    min-height: 0;
}

.locations {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
    cursor: pointer;
}

.location-card__img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.location-card__info {
    padding: 12px 16px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.location-card__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

/*.location-card__icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}*/
.location-card__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.location-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

.location-card__address {
    font-size: 12px;
    font-weight: 400;
    color: #7a8499;
}

.map-wrap {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.map-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.light-blue-back {
    background-color: #EEF9FF;
}

.instructors__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 0 0px;
}


.instructors__title {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 0px;
}




.cards-grid {
    display: flex;
    gap: 35px;
}

.card {
    width: 436px;
    height: 286px;
    background-color: #f2f8fc;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 20px;
    position: relative;
}

.card-image {
    width: 180px;
    height: 246px;
    border-radius: 14px;
    object-fit: cover;
}

.card-info {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
}

.card-name {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: 1.25;
    margin-bottom: 8px;
}

.card-role {
    font-size: 13px;
    color: #8c96a0;
    margin-bottom: 24px;
}

.card-desc {
    font-size: 14px;
    color: #333333;
    line-height: 1.45;
    font-style: italic;
    padding-right: 10px;
}

.quote-icon {
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-next {
    background-color: #ed184f;
    border: 1px solid #ed184f;
}

.btn-prev {
    background-color: #ffffff;
    border: 1px solid #ed184f;
}

.btn-prev:hover {
    background-color: #fff0f4;
}

.btn-next:hover {
    background-color: #d81245;
    border-color: #d81245;
}


.btn {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review-card {
    background-color: #f2f8fb;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 1360px;
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.review-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.reviewer-name {
    color: #12436d;
    font-size: 22px;
    font-weight: 700;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-icon {
    width: 23px;
    height: 23px;
    fill: #F21450;
}

.ya-badge {
    background-color: #f01449;
    color: white;
    font-size: 14px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-left: 8px;
}

.review-date {
    color: #8b8b8b;
    font-size: 15px;
    margin-bottom: 24px;
}


.review-date-mobile {
    color: #8b8b8b;
    font-size: 15px;
    display: none;
}


.review-text {
    color: #333333;
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 24px;
}

.review-toggle {
    color: #f01449;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    margin-top: auto;
    display: inline-block;
}

.review-image-wrapper {
    flex: 0 0 519px;
    height: 305px;
}

.review-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


.content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
}

.tarif .card-tarif {
    background: #ffffff;
    border-radius: 24px;
    padding: 65px 40px;
    max-width: 887px;
    width: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
}

.tarif.item-1 {
    margin-bottom: 140px;
}


.decor {
    position: absolute;
    right: 40px;
    top: 29%;
    transform: translateY(-50%);
    z-index: 1;
}

.decor-block-1 {
    width: 320px;
    height: 420px;
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
}

.car-wrapper.car-b {
    position: absolute;
    right: -60px;
    bottom: 0px;
    z-index: 3;
    pointer-events: none;
}

.car-wrapper.car-c {
    position: absolute;
    right: 32px;
    bottom: -64px;
    z-index: 3;
    pointer-events: none;
}



.car-wrapper img.car-b {
    width: 860px;
    height: auto;
    display: block;
}

.car-wrapper img.car-c {
    width: 650px;
    height: auto;
    display: block;
}



.btn-tarif {
    display: inline-block;
    background: #f21d55;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
}

.btn-tarif:hover {
    background: #d61748;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(8, 67, 121, 1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/*.feature-icon svg {
    width: 40px;
    height: 40px;
}*/


.feature-text {
    font-size: 14px;
    font-weight: 500;
    color: #444444;
    line-height: 1.4;
}

.description {
    font-size: 15px;
    line-height: 1.6;
    color: #777777;
    margin-bottom: 32px;
    max-width: 600px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.card-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d2d3a;
}

.card-title {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    gap: 20px;
}

.card-title span {
    color: #fff;
    font-size: 16px;
    font-weight: 200;
    background-color: #f21d55;
    padding: 3px 10px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-old {
    font-size: 28px;
    font-weight: 600;
    color: #9e9e9e;
    text-decoration: none;
    position: relative;
}


.price-old::before {
    content: '';
    position: absolute;
    top: 12px;
    left: -8px;
    width: 111%;
    height: 42%;
    background: linear-gradient(to bottom right, transparent calc(50% - 2px), red calc(50% - 1px), red calc(50% + 1px), transparent calc(50% + 2px));
    pointer-events: none;
}

.price-new {
    font-size: 32px;
    font-weight: 700;
    color: #f21d55;

}

h2.tarif-h2 {

    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;

}


.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 24px;
}

.logo img {
    height: 71px;
    display: block;
    object-fit: contain;
}

.contacts-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.contact-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.text-red {
    color: var(--color-red);
}

.section-header {
    /*background: linear-gradient(180deg, #eef5fa 0%, #dbe8f3 100%);*/
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.header-nav nav {
    flex: 1;
}


.nav-list {
    list-style: none;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.nav-list a {
    text-decoration: none;
    color: var(--color-dark-blue);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.header-nav .socials {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-left: 200px;
}

.header-nav .social-link {
    color: var(--color-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contacts .social-link {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-contacts .social-link svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}


.header-nav .social-link svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}


.container-nav {
    background: rgba(255, 255, 255, 0.5);

}


.hero-content {
    padding-top: 70px;
    padding-bottom: 70px;
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: #ec1152;
}

.hero-subtitle {
    font-size: 28px;
    line-height: 1.4;
    color: #3a3a3a;
    margin-bottom: 50px;
    font-weight: 400;
}

.features-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 35px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 70px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

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

.feature-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.feature-text {
    font-size: 14px;
    line-height: 1.3;
    color: #111;
    font-weight: 400;
}

.divider {
    width: 1px;
    height: 50px;
    background-color: #e5e5e5;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: #f21450;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    line-height: 1.4;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 15;
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: #888;
    margin-bottom: 64px;
}

.cta-note strong {
    color: #333;
    font-weight: 700;
}

.hero-images {
    /*    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 450px;
    height: 100%;
    min-height: 600px;
    z-index: 10;
    pointer-events: none;*/

    /*border: 1px solid red;*/
    position: absolute;
    top: auto;
    /* left: 0; */
    bottom: 0px;
    right: 0px;
    width: 1000px;
    height: 100%;
    min-height: 600px;
    z-index: 10;
    pointer-events: none;



}

.car-img-2 {
    position: absolute;
    width: 938px;
    left: auto;
    right: 0px;
    bottom: 19px;
    z-index: 1;
    max-width: inherit;
}

.woman-img {
    position: absolute;
    width: 551px;
    right: 0;
    bottom: 0;
    z-index: 2;
    max-width: inherit;
}

.container-relative {
    position: relative;
}

header {
    background-image: url("/images/bg-pdf-2.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.section.hero-wrap {
    padding: 0px 0px 0px 0px;
}

.icon_phone {
    width: 30px;
    height: 30px;
}

.icon_adress {
    width: 30px;
    height: 30px;
}

.icon_vk,
.icon_tg,
.icon_max {
    width: 30px;
    height: 30px;
}


.hero-images-left {
    position: absolute;
    left: -373px;
    bottom: -35px;
    z-index: 10;
}

.hero-images-right {
    position: absolute;
    right: -96px;
    bottom: -53px;
    z-index: 10;

}

.hero-images-left img {
    width: 215px;
}

.hero-images-right img {
    width: 223px;
}

.icon_t1,
.icon_t2,
.icon_t3,
.icon_t4 {
    width: 40px;
    height: 40px;
}

.icon_m1 {
    width: 32px;
    height: 32px;
}

.icon_i1 {
    width: 33px;
    height: 25px;
}

.icon_ya {
    width: 24px;
    height: 24px;
    margin-left: 20px;
}

.slider-controls {
    display: flex;
    gap: 16px;
}

.swiper-btn {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

/* Левая кнопка (с обводкой) */
.swiper2-btn-prev,
.swiper-btn-prev {
    background-color: transparent;
    border: 2px solid #ed1b4a;
    color: #ed1b4a;
}

.swiper2-btn-prev:hover,
.swiper-btn-prev:hover {
    background-color: #fff0f3;
}

/* Правая кнопка (залитая) */

.swiper2-btn-next,
.swiper-btn-next {
    background-color: #ed1b4a;
    border: 2px solid #ed1b4a;
    color: #ffffff;
}

.swiper2-btn-next:hover,
.swiper-btn-next:hover {
    background-color: #d11540;
    border-color: #d11540;
}

.swiper-btn svg {
    width: 10px;
    height: 16px;
}

/* Контейнер Swiper */
.swiper {
    width: 100%;
    overflow: hidden;
}

/* Карточка автомобиля */
.car-card {
    background-color: #f2f8fc;
    border-radius: 16px;
    padding: 40px 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.car-card:hover {
    transform: translateY(-5px);
}

.car-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 24px;
    display: block;
}

.car-title {
    font-size: 18px;
    font-weight: 700;
    color: #2b2b2b;
    text-align: center;
}

.burger-menu-wrap {
    display: none;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
}

svg.icon_burger-menu {
    width: 37px;
    height: 26px;
}


button {
    outline: none;
}





.t-menuburger {
    position: relative;
    flex-shrink: 0;
    width: 36px;
    height: 26px;
    padding: 0;
    border: none;
    background-color: transparent;
    outline: none;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: transform .5s ease-in-out;
    cursor: pointer;
    z-index: 999;
}

.t-menuburger span {
    display: block;
    position: absolute;
    width: 100%;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    height: 3px;
    background-color: var(--text-main);
}

.t-menuburger span:nth-child(1) {
    top: 0px;
}

.t-menuburger span:nth-child(2),
.t-menuburger span:nth-child(3) {
    top: 10px;
}

.t-menuburger span:nth-child(4) {
    top: 20px;
}





.t-menuburger-opened span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
}

.t-menuburger-opened span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.t-menuburger-opened span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.t-menuburger-opened span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
}



.mobil-contacts-wrapper {
    display: none;
    gap: 30px;
    align-items: flex-start;
    flex-direction: column;
}

.mobile-btn-primary {
    display: none;
}


.btn-tarif-2 {
    display: none;
    background: #f21d55;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: inherit;
    width: auto;
    margin: 0px 16px;
    text-align: center;
}

.btn-tarif-3 {
    display: none;
    background: #f21d55;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    text-decoration: none;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    letter-spacing: inherit;
    width: auto;
    text-align: center;
}



.mySwiper-wrap {
    position: relative;
}


.mySwiper-wrap .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #f21450;
    border-radius: 2px;
}

.mySwiper-wrap .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(1);
    background-color: #bebebe;
    opacity: 1;
}

.mySwiper-wrap .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(1);
    background-color: #bebebe;
    opacity: 1;
}

.mySwiper-wrap .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(1);
    background-color: #bebebe;
    opacity: 1;
}

.mySwiper-wrap .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(1);
    background-color: #bebebe;
    opacity: 1;
}

.mySwiper-wrap .swiper-pagination {
    display: none;
}


.mySwiper-wrap .swiper-pagination-2 {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    display: none;
}

.btn-call-mobile {
    display: none;
    background-color: #f21450;
    color: white;
    padding: 16px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    cursor: pointer;
    margin: 0 auto;
    max-width: 226px;
    text-decoration: none;
}



.section-form {
    min-height: 500px;
    overflow: hidden;

}

.form-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-left {}

.form-right {}

.form-right .form-container {
    width: 100%;
    max-width: 432px;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}


.form-right .form-title {
    font-size: 30px;
    line-height: 40px;
    text-align: left;
    font-weight: 700;
    color: #333333;
    margin-bottom: 30px;
    margin-top: 0;
}


.form-right .form-subtitle {
    font-size: 20px;
    color: #8e8888;
    text-align: left;
    margin-bottom: 40px;
    line-height: 24px;
}


.form-right .input-group {
    margin-bottom: 10px;
}


.form-right .input-field {
    width: 100%;
    padding: 16px 20px 18px 20px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    /* Полупрозрачный светлый фон */
    border: 1px solid #ffffff;
    color: #333;
    box-sizing: border-box;
    outline: none;
    transition: background-color 0.3s;
}

.form-right .input-field::placeholder {
    color: #8e8888;
}

.form-right .input-field:focus {
    background-color: rgba(255, 255, 255, 0.9);
}


.form-right .submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #ffffff;
    background-color: #f21450;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 20px;
}



.form-right .custom-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    user-select: none;
}


.form-right .custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}


.form-right .checkmark {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 1px solid #00000033;
    border-radius: 2px;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}

.form-right .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #b10831;
    border-width: 0 1.5px 1.5px 0;
    transform: rotate(45deg);
}


.form-right .custom-checkbox input:checked~.checkmark::after {
    display: block;
}

.form-right .checkbox-text {
    font-size: 15px;
    color: #8e8888;
    line-height: 120%;
}


.section-form {
    background-image: url("/images/form-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.form-left {
    position: relative;
}

.form-left:before {
    content: "";
    position: absolute;
    right: 105px;
    top: -43px;
    left: auto;
    width: 100%;
    background-image: url("/images/form-left.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 548px;

}












@media (max-width: 768px) {

    .form-left {
        display: none;
    }

    .section-form {
        background-image: url(/images/form-bg.png);
        background-repeat: no-repeat;
        background-position-y: -17px;
        background-position-x: -1135px;
        background-size: 446%;
    }

    .form-wrap {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-right {
        padding: 0px 16px 0px 16px;
    }


    .form-right .form-title {
        font-size: 24px;
        line-height: 120%;
        text-align: center;
        font-weight: 700;
        color: #333333;
        margin-bottom: 14px;
    }

    .form-right .form-container {
        width: 100%;
        max-width: 100%;
    }

    .form-right .form-subtitle {
        font-size: 15px;
        text-align: center;
        margin-bottom: 30px;
        line-height: 120%;
    }

    .form-right .checkbox-text {
        font-size: 12px;
        color: #8e8888;
        line-height: 120%;
    }

    .form-right .checkmark {
        margin-top: -1px;
    }

    .section-form {
        min-height: 430px;
    }



    .mySwiper-wrap .swiper-pagination-2 {
        display: block;
    }

    .mySwiper-wrap .swiper-pagination {
        display: block;
    }




    h2 {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .faq-header {
        padding: 24px;
    }

    .faq-question {
        font-size: 15px;
        line-height: 120%;
        font-weight: 500;
    }

    .btn-call-mobile {
        display: block;
    }


    .faq-list {
        gap: 10px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .faq-toggle:checked~.faq-body {
        padding: 0 24px 24px 24px;
    }

    .faq-body {
        padding: 0 24px;
    }

    .faq-answer {
        font-size: 12px;
        line-height: 120%;
    }

    .section-header {
        background-color: #fff;
        position: relative;
    }

    .header-top .logo-wrap {
        padding: 12px 0px 11px 16px;
    }

    .header-top {
        padding: 0px;
    }



    .header-top .logo img {
        max-width: 175px;
        height: auto;
    }

    .burger-menu-wrap {
        display: flex;
    }


    .nav-list {
        list-style: none;
        display: flex;
        gap: 20px;
        justify-content: flex-start;
        flex-direction: column;
    }

    .header-nav {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        height: auto;
        flex-direction: column;
        gap: 30px;
    }

    .header-nav nav {
        flex: 1;
        width: 100%;
    }


    .contact-title {
        font-size: 20px;
        line-height: 24px;
    }

    .contact-subtitle {
        font-size: 15px;
        line-height: 120%;
    }



    .header-nav .socials {
        display: flex;
        gap: 15px;
        align-items: center;
        padding-left: 0;
        justify-content: center;
        width: 100%;
    }

    .container-nav {
        padding: 20px 16px 0px 16px;
    }




    .nav-list a {
        text-decoration: none;
        color: var(--text-main);
        font-size: 24px;
        line-height: 120%;
        text-align: left;
        font-weight: 550;
        text-transform: none;
    }


    .mobil-contacts-wrapper {
        display: flex;
    }


    .mobile-btn-primary {
        display: block;
        width: 100%;
    }

    .mobile-btn-primary .btn-primary {
        width: 100%;
        text-align: center;
        font-size: 20px;
        line-height: 24px;
    }












    .header-top .contacts-wrapper {
        display: none;
    }

    .section-header .container-nav {
        display: none;
    }

    .section-header .container-nav.open {
        display: block;
        position: absolute;
        height: calc(100vH - 62px);
        background-color: #fff;
        z-index: 20;
    }


    .hero-images-right {
        display: none;
    }

    .hero-content {
        padding-top: 30px;
        max-width: 100%;
        padding-bottom: 340px;
    }


    .hero-title {
        font-size: 24px;
        line-height: 120%;
        font-weight: 700;
        text-align: center;
        color: #333;
        margin-bottom: 20px;
        letter-spacing: inherit;
        padding: 0px 5px;
    }

    .woman-img {
        width: 83%;
        bottom: -60px;
    }


    .car-img-2 {
        width: 558px;
        right: -108px;
        bottom: 67px;
    }



    .divider {
        display: none;
    }


    .features-card {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 16px 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 0px 23px 30px 23px;
    }


    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .feature-item img {
        width: 26px;
        height: 26px;
        object-fit: contain;
    }

    .feature-text {
        flex: 1;
    }

    .feature-text br {
        display: none;
    }

    .feature-text {
        font-size: 15px;
        line-height: 120%;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 120%;
        text-align: center;
        color: #3a3a3a;
        margin-bottom: 30px;
        font-weight: 400;
    }


    .cta-section {
        margin: 0px 23px 30px 23px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .cta-note {
        margin-top: 0px;
        font-size: 17px;
        color: #888;
        margin-bottom: 0px;
    }


    .hero-images {
        width: 100%;
        height: 370px;
        min-height: 370px;
        overflow: hidden;
    }


    .stat-number {
        font-size: 56px;
        font-weight: 600;
        line-height: 60px;
        letter-spacing: inherit;
        width: 113px;
    }


    .section {
        padding: clamp(40px, 8vw, 96px) 0;
    }

    .stats {
        gap: 20px;
        margin: 0px 16px 0px 16px;
    }


    .stat-description {
        font-size: 15px;
        line-height: 120%;
        color: #333333;
        max-width: inherit;
        flex: 1;
    }




    h2.tarif-h2 {
        font-size: 24px;
        line-height: 120%;
        text-align: center;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .decor {
        display: none;
    }


    .content-wrapper {
        overflow: hidden;
    }


    .tarif .card-tarif {
        padding: 20px 16px 20px 16px;
        max-width: inherit;
        margin: 0px 16px 0px 16px;
    }


    .features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px 32px;
        margin-bottom: 188px;
    }



    .car-wrapper.car-b {
        position: absolute;
        width: 100%;
        height: 212px;
        right: 0px;
        bottom: 78px;
        overflow: hidden;
        z-index: 3;
        pointer-events: none;
    }

    .car-wrapper img.car-b {
        position: absolute;
        top: 0px;
        right: -140px;
        width: 510px;
        height: auto;
        display: block;
        max-width: inherit;
    }

    .btn-tarif {
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
        letter-spacing: inherit;
        width: 100%;
        text-align: center;
    }


    .tarif.item-1 {
        margin-bottom: 20px;
    }

    .feature {
        gap: 20px;
    }


    .description {
        font-size: 12px;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: inherit;
        margin-bottom: 20px;
    }


    .card-title {
        font-size: 22px;
        line-height: 24px;
        /* display: block; */
        width: 100%;
    }

    .price-new {
        font-size: 24px;
        line-height: 120%;
    }


    .price-old {
        font-size: 24px;
        line-height: 120%;
    }

    .car-wrapper.car-c {
        position: absolute;
        right: -16px;
        bottom: 100px;
        z-index: 3;
        width: 100%;
        height: 221px;
        pointer-events: none;
        overflow: hidden;
    }


    .car-wrapper img.car-c {
        position: absolute;
        right: -94px;
        bottom: 0px;
        width: 352px;
        height: auto;
        display: block;
        max-width: inherit;
    }


    .content-wrapper.tarif.item-2 .features {
        margin-bottom: 240px;
    }


    .section-filial h2 {
        font-size: 24px;
        line-height: 120%;
        text-align: center;
        margin-bottom: 30px;

    }


    .section__body {
        gap: 30px;
        flex-direction: column;
        padding: 0px 16px 0px 16px;
        margin-bottom: 30px;
    }

    .map-wrap {
        order: -1;
        min-height: 400px;

    }

    .locations {
        width: 100%;
        gap: 30px;
    }

    .btn-tarif-2 {
        display: block;
    }

    .btn-tarif-3 {
        display: block;
    }


    .slider-controls {
        display: none;
    }


    .instructors__title {
        font-size: 24px;
        line-height: 120%;
        margin-bottom: 0px;
        width: 100%;
        text-align: center;
    }

    .car-card {
        padding: 16px 0px 16px 0px;
    }

    .section-slider .mySwiper-wrap {
        padding: 0px 37px 0px 37px;
    }

    .car-img {
        margin-bottom: 0px;
    }


    .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
    .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        bottom: -35px;
    }


    .section-instruktor h2.instructors__title {
        width: 100%;
        font-size: 24px;
        line-height: 120%;
        margin-bottom: 0px;
    }



    .section-instruktor .instructors__header {
        margin-bottom: 30px;
    }

    .section-instruktor .container {
        padding: 0px 16px 0px 16px;
    }

    .card {
        width: 100%;
        height: auto;
        gap: 16px;
    }

    .card-image {
        width: 48%;
        height: 215px;
    }

    .card-info {
        padding-top: 0px;
        flex: 1;
    }

    .quote-icon {
        right: auto;
    }

    .card-desc {
        font-size: 12px;
        line-height: 120%;
    }

    .card-role {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .card-name {
        font-size: 15px;
        font-weight: 500;
        line-height: 120%;
        margin-bottom: 6px;
    }

    .section-otziv .container {
        padding: 0px 16px 0px 16px;
    }

    .section-otziv h2 {
        font-size: 24px;
        line-height: 120%;
        margin-bottom: 30px;
    }


    .review-card {
        padding: 30px 20px 30px 20px;
        width: 100%;
        max-width: 100%;
        gap: 20px;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .review-header {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 10px;
        gap: 10px;
    }

    .reviewer-name {
        font-size: 20px;
        line-height: 120%;
        font-weight: 700;
    }

    .review-date {
        display: none;
    }

    .review-date-mobile {
        display: block;
    }

    .review-text {
        color: #333333;
        font-size: 12px;
        line-height: 120%;
        margin-bottom: 24px;
    }

    .review-image-wrapper img {
        width: 100%;
        height: auto;
    }

    .review-image-wrapper {
        flex: inherit;
        height: auto;
    }


    .review-toggle {
        font-weight: 500;
        font-size: 15px;
        line-height: 120%;
    }


    .star-icon {
        width: 27px;
        height: 27px;
    }


    .section-vopros .container {
        padding: 0px 16px 0px 16px;
    }

    .section-vopros h2 {
        font-size: 24px;
        line-height: 120%;
        margin-bottom: 20px;
        text-align: center;
    }


    .footer-top .btn-call {
        display: none;
    }

    .site-footer {
        padding: 40px 16px 70px 16px;
    }

    .footer-top {
        justify-content: center;
    }

    .footer-info {
        gap: 20px;
        width: 100%;
    }

    .footer-info a {
        text-align: center;
        font-size: 12px;
        line-height: 120%;
    }

    .copyright {
        font-size: 12px;
        line-height: 120%;
        margin-top: 0px;
        text-align: center;
    }

    .footer-contacts {
        text-align: center;
        gap: 18px;
        width: 100%;
        order: -1;
    }

    .social-links {
        justify-content: center;
        margin-top: 0px;
        margin-bottom: 12px;
    }

    .footer-bottom .address {
        font-size: 18px;
        line-height: 120%;
    }

    .footer-bottom {
        gap: 50px;
    }





    /*body section:nth-child(11){
        display: none;
    }*/



}



/* Кнопка для открытия окна */
.open-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.open-btn:hover {
    background-color: #0056b3;
}

/* Стили модального окна (фона-затемнения)
           Используем flexbox для центрирования содержимого
        */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Фоновое затемнение */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;

    /* Скрываем окно по умолчанию с плавным переходом */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Класс для отображения модального окна */
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Сам блок модального окна 
           Адаптивность достигается за счет width: 100% и max-width: 500px
        */
.modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    margin: 20px;
    /* Отступы по краям для мобильных устройств */
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

    /* Анимация появления самого блока */
    transform: translateY(-20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

/* Заголовок и текст внутри окна */
.modal-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
    color: #1a1a1a;
    text-align: center;
}

.modal-content p {
    line-height: 1.6;
    margin-bottom: 0;
    color: #555;
}

/* Кнопка закрытия (крестик) в правом верхнем углу */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 50%;
    color: #888;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.close-btn:hover {
    background-color: #f1f1f1;
    color: #ff4757;
}

.icon_close {
    width: 20px;
    height: 20px;
}

.modal-webform-submit {
    display: flex;
    justify-content: center;
    margin: 0px 0px 0px 0px;
    width: 100%;
    padding: 0;
    border: 0;
    position: relative;
}

.modal-webform-item {
    width: 294px;
    display: block;
    padding: 0;
    margin: 20px auto;
    border: 0;
    position: relative;
}

.modal-webform-input {
    width: 100%;
    height: 63px;
    border: 1px solid rgba(33, 33, 33, 0.5);
    border-radius: 0px;
    font-size: 18px;
    padding: 18px 26px 17px 26px;
    text-align: left;
    line-height: 14px;
    color: #212121;
    border-radius: 10px;
}

.modal-webform-label {
    font-weight: 400;
    text-align: left;
    font-size: 18px;
    line-height: normal;
    padding: 0px 4px;
    background-color: #ffffff;
    color: rgba(33, 33, 33, 0.5);
    margin-bottom: 0px;
    position: absolute;
    top: 21px;
    left: 23px;
    transition: all 0.2s ease-out;
    margin: 0px;
    cursor: pointer;
}

.modal-webform-label span {
    display: none;
}

.modal-webform-label span {
    color: rgba(255, 0, 0, 0.7);
    font-size: 12px;
    line-height: 12px;
    position: relative;
    top: -2px;
    left: 3px;
}


.modal-webform-item:hover .modal-webform-label {
    top: -10px;
    font-size: 12px;
    line-height: 12px;
}

.modal-webform-item:hover .modal-webform-label span {
    display: inline-block;
}



.modal-webform-input:focus,
.modal-webform-input:invalid {
    border: 1px solid #212121;
}


.modal-webform-input:focus+.modal-webform-label,
.modal-webform-input:invalid+.modal-webform-label {
    top: -10px;
    font-size: 12px;
    line-height: 12px;
}

.modal-webform-input:focus+.modal-webform-label span,
.modal-webform-input:invalid+.modal-webform-label span {
    display: inline-block;
}


.modal-webform-swich-wrap {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 294px;
    margin: 0px auto 30px auto;
}

label.modal-webform-swich-item-wrap {
    margin-bottom: 0;
    line-height: inherit;
    cursor: pointer;
}

.modal-webform-swich-item-wrap input[name="switch-input"] {
    clip: rect(0, 0, 0, 0);
    height: 0px;
    width: 0px;
    border: 0;
    overflow: hidden;
}

.modal-webform-swich-item {
    width: 82px;
    height: 82px;
    background-color: #f2f6fa;
    border-radius: 10px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

input[name="switch-input"]:checked~.modal-webform-swich-item.item-call {
    background-color: #f5dd3c;
}

.modal-webform-swich-item svg {
    height: 32px;
    width: 32px;
    fill: #929aa2;
    color: #929aa2;
}

input[name="switch-input"]:checked~.modal-webform-swich-item.item-call svg {
    fill: #11263a;
    color: #11263a;
}

input[name="switch-input"]:checked~.modal-webform-swich-item.item-max {
    /*background-color: #01d363;*/
    background: linear-gradient(270deg, #A34EDD 0%, #31B7FD 100%);
}




.modal-webform-swich-item.item-max svg {
    height: 45px;
    width: 45px;
}


input[name="switch-input"]:checked~.modal-webform-swich-item.item-max svg {
    fill: #fff;
    color: #fff;
    height: 45px;
    width: 45px;
}

input[name="switch-input"]:checked~.modal-webform-swich-item.item-telegram {
    background-color: #32a8e5;
}

input[name="switch-input"]:checked~.modal-webform-swich-item.item-telegram svg {
    fill: #fff;
    color: #fff;
}

.modal-webform-swich-item-title {
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    color: #565e66;
}

.scale-b:hover {
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    transform: scale(1.04);
    -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1), 0 7px 25px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1), 0 7px 25px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1), 0 7px 25px 0 rgba(0, 0, 0, 0.1);
}

.modal-webform-terms {
    width: 290px;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 30px;
}

.modal-webform-terms-label-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 15px;
}

.modal-webform-terms-label {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 16px;
    height: 16px;
}

.modal-webform-terms-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    padding: 0px;
    margin: 0px;
}

.modal-webform-terms-input:checked~.modal-webform-terms-indicator:after {
    position: absolute;
    content: '';
    left: 4px;
    top: 1px;
    width: 6px;
    height: 9px;
    border: solid #f21450;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
}

.modal-webform-terms-indicator {
    width: 16px;
    height: 16px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    background-color: #fff;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border: 1px solid #ccc;
}

.modal-webform-terms-input:checked~.modal-webform-terms-indicator {
    background-color: transparent;
}

.modal-webform-terms-descript {
    color: rgba(33, 33, 33, 0.5);
    font-size: 12px;
    font-weight: normal;
    line-height: 15px;
    padding: 0px 0px 0px 0px;
    text-align: left;
}

.modal-webform-terms-descript a {
    text-decoration: underline;
}

.modal-webform-submit-button-decor {

    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 182px;
    padding: 16px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    color: #ffffff;
    background-color: #f21450;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 20px;

}


.ta-c {
    text-align: center;
}

#phone::placeholder {
    opacity: 0;
    transition: opacity 0.2s ease;
}

#phone:hover::placeholder,
#phone:focus::placeholder {
    opacity: 1;
}

.modal-webform-succes-text {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.modal-webform-succes-close {
    padding: 4px 0px 0px 0px;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    border: 1px solid #1C83E5;
    border-radius: 56px;
    width: 192px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(0deg, #fff, #fff), #fff;
    color: #1C83E5;
    margin: 0px auto 0px auto;
}

.modal-webform-succes {
    display: none;
}


/* Медиа-запрос для очень маленьких экранов (необязательно, но улучшает вид) */
@media (max-width: 480px) {
    .modal-content {
        padding: 20px;
    }

    .modal-content h2 {
        font-size: 20px;
        padding-right: 20px;
        /* Чтобы текст не наезжал на крестик */
    }
}

.hint {
    font-size: 12px;
    text-align: center;
    color: red;
    display: none;
}

/* ===== Notification ===== */
.notification {
    position: fixed;
    top: 24px;
    right: 24px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(calc(100% + 30px));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    max-width: 360px;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.notification.success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

@media (max-width: 480px) {
    .notification {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

.modal-webform-terms-indicator.error,
.input-phone.error,
.input-name.error {
    border-color: #ef4444;
    background: #fef2f2;
    animation: pulse-border 1.2s ease-in-out infinite;
}


@keyframes pulse-border {
    0% {
        border-color: #ef4444;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    50% {
        border-color: #fca5a5;
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        border-color: #ef4444;
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
}