:root {
            --brand-pink: #F15795;
            --brand-lime: #DFE254;
            --black: #000000;
            --white: #ffffff;
            --gray-light: #f9f9f9;
            --gray-border: #eeeeee;
            --transition: all 0.3s ease;
        }

        /* --- ОБЩИЕ СТИЛИ --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--black);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            margin: 0 240px;
            padding: 0 20px;
        }

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

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

        ul {
            list-style: none;
        }
        .uppercase { text-transform: uppercase; }
        .font-black { font-weight: 900; }

        /* --- ШАПКА --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding-top: 20px;
            padding-bottom: 20px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        header .container {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            max-width: 132px;
        }

        .header-btn_list {
        display: flex;
        gap: 30px;
        }

        .btn-header {
            display: flex;
            gap: 10px;         
            align-items: center;
            font-weight: 700;
            font-size: 14px;
            transition: var(--transition);
        }

        .btn-header_icon {
            background: var(--brand-pink);
            align-items: center;
            justify-content: center;
            display: flex;
            width: 30px;
            height: 30px;
            border-radius: 10px;
        }

        .btn-header p {
            color: var(--black);
        }

        .btn-header svg {
            max-width: 17px;
            height: auto;
        }

        .btn-header:hover {
            transform: translateY(-2px);
        }

        /* --- HERO СЕКЦИЯ --- */
        .hero {
            height: 100vh;
            width: 100vw;
            background: var(--black);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
        }

        .hero-video{
            position: absolute;
            inset: 0;
            background: #111;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.4;
        }

        .hero-video video {
       width: 100%;
  height: 100%;
  object-fit: cover;
        }

        .hero-video .video-desktop {
    display: block;
}

.hero-video .video-mobile {
    display: none;
}


        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding: 0 20px;
        }

        .badge {
            background: var(--brand-pink);
            display: inline-block;
            padding: 5px 15px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 25px;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: clamp(40px, 8vw, 80px);
            line-height: 0.9;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: var(--brand-lime);
        }

        .hero p {
            font-size: 18px;
            opacity: 0.8;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .btn-main {
            background: var(--brand-lime);
            color: var(--black);
            padding: 20px 45px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 900;
            display: inline-block;
            transition: var(--transition);
        }

        .btn-main:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(223, 226, 84, 0.3);
        }

        /* --- БЛОК АКЦИЙ --- */
.promo-bar {
    width: 100%;
}

.promo-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;  /* интервал 1 пиксель между блоками */
    align-items: stretch;  /* растягиваем блоки по высоте */
}

.promo-item {
    flex: 1;  /* каждый блок занимает равную долю свободного пространства */
    display: flex;
    align-items: center;
    justify-content: center;  /* центрируем содержимое по горизонтали */
    gap: 20px;
    background: var(--brand-pink);
    padding: 50px 20px;  /* добавил горизонтальные отступы для маленьких экранов */
    color: var(--white);
    min-width: 200px;  /* минимальная ширина блока, при которой начинается перенос */
}

        .promo-item h3 {
            font-size: 50px;
            font-weight: 900;
        }

        .promo-item p {
            font-weight: 700;
            text-transform: uppercase;
            line-height: 1.1;
        }

        .separator {
            width: 1px;
            height: 150px;
            background: rgb(255, 255, 255);
        }

        /* --- О НАС --- */
        .about {
            padding: 100px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 150px;
            align-items: center;
        }

        .section-title {
            font-size: 45px;
            line-height: 1;
            margin-bottom: 30px;
        }

        .section-title span {
            color: var(--brand-pink);
           
        }

        .section-title_underline span {
             text-decoration: underline;
             text-underline-offset: 7px;

        }

        .about-text_description {
            margin-bottom: 30px;
        }

        .about-text_description p {
            padding-bottom: 20px;
            font-size: 18px;
            color: #444;
        }

        .about-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

         .about-list_elem {
            display: flex;
            gap: 20px;
         }

               .about-list_elem_icon {
            background: var(--brand-lime);
            align-items: center;
            justify-content: center;
            display: flex;
            min-width: 25px;
            max-height: 25px;
            border-radius: 100px;
        }

        .about-list span {
            font-weight: 700;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .feature-card {
            transition: var(--transition);
            border-left: 2px solid;
            padding-left: 25px;
            padding-top: 5px;
            padding-bottom: 5px;
        }

        .feature-card p {
            opacity: 70%;
        }

                .pink-card {
            border-left-color: #F15795;
        }

        .pink-card h4 {
            color: var(--brand-pink);
            border-left-color: #F15795;
        }

                .blue-card {
            border-left-color: #275AC8;
        }

       .blue-card h4 {
color: #275AC8;
       }


        .feature-card h4 {
            text-transform: uppercase;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 14px;
            margin-bottom: 0;
        }

        .about-image {
            position: relative;
        }

        .image-wrapper {
            border-radius: 30px;
            overflow: hidden;
            max-width: 577px;
            max-height: 650px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            transform: rotate(2deg);
        }

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


        /* --- ГАЛЕРЕЯ --- */
        .gallery {
            padding: 100px 0;
            background: var(--gray-light);
        }

        .case-card {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
        }

        .case-card img {

            width: 100%;
            object-fit: cover;
        }

        .swiper-pagination {
            position: relative !important;
            margin-top: 30px;
        }

        .swiper-pagination-bullet {
            height: 12px !important;
            width: 12px !important;
        }

        .swiper-pagination-bullet-active {
            background: var(--brand-pink) !important;
        }

        .tag {
            background: var(--brand-lime);
            padding: 2px 10px;
            font-size: 10px;
            font-weight: 800;
            border-radius: 4px;
            text-transform: uppercase;
        }

        /* --- ФОРМА --- */
        .contact {
            padding: 100px 0;
        }

        .contact-box {
            background: var(--black);
            color: var(--white);
            padding: 80px;
            border-radius: 50px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            position: relative;
            overflow: hidden;
        }

        .contact-box::after {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--brand-pink);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
        }

        .contact-box h2 {
            font-size: 50px;
            line-height: 1;
            margin-bottom: 20px;
        }

        .contact-box h2 span {
            color: var(--brand-lime);
        }

        .form-group {
            margin-bottom: 20px;
        }

        input {
            width: 100%;
            padding: 18px 25px;
            background: #111;
            border: 1px solid #222;
            border-radius: 15px;
            color: var(--white);
            font-family: inherit;
            font-size: 16px;
        }

        input:focus {
            outline: none;
            border-color: var(--brand-lime);
        }

        .checkbox-group {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            margin-top: 25px;
        }

        .checkbox-group input {
            width: 20px;
            height: 20px;
            margin-top: 5px;
        }

        .checkbox-group label {
            font-size: 10px;
            text-transform: uppercase;
            opacity: 0.5;
            letter-spacing: 1px;
        }

        .btn-submit {
            width: 100%;
            background: var(--brand-pink);
            color: var(--white);
            border: none;
            padding: 20px;
            border-radius: 15px;
            font-size: 18px;
            font-weight: 900;
            text-transform: uppercase;
            cursor: pointer;
            margin-top: 20px;
            transition: var(--transition);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(241, 87, 149, 0.4);
        }

        #successMsg {
            position: absolute;
            inset: 0;
            background: var(--black);
            z-index: 20;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
        }

        .hidden { display: none; }

        
        .reviews {
                        padding: 100px 0;
            background: var(--gray-light);
        }

        .review-item img {
            object-fit: cover;
            width: 100%;
        }

               .contacts{
                        padding: 100px 0;
            background: var(--gray-light);
        }

        .contacts-flex {
            display: flex;
            justify-content: space-between;
        }
        
.contacts-flex iframe {
    border-radius: 30px;
    width: 700px;
    height: 400px;
}
        
.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

               .contacts-list_elem_icon {
            background: var(--brand-lime);
            align-items: center;
            justify-content: center;
            display: flex;
            width: 40px;
            height: 40px;
            border-radius: 100px;
        }

        .contacts-list_elem {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .contacts-list_elem-text span {
           font-size: 12px;
           text-transform: uppercase;
           opacity: 50%;
           font-weight: 700;
        }

        .contacts-list_elem-text p{
           font-weight: 700;
        }

        /* --- ПОДВАЛ --- */
        footer {
            background: var(--black);
            color: var(--white);
            padding: 60px 0;
            border-top: 1px solid #111;
        }

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

        .footer-links {
            display: flex;
            gap: 30px;
            font-size: 10px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            opacity: 0.4;
        }

        .copy {
            font-size: 10px;
            opacity: 0.3;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Секция занимает всю ширину */
.callback-section {
    width: 100%;
    padding: 40px 0;
}

/* Контейнер - ограничивает максимальную ширину */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Форма на всю ширину контейнера */
.callback-form {
    width: 100%;
    background: linear-gradient(101.55deg, #000000 42.68%, #F15795 147.79%);
    border-radius: 50px;
    padding: 70px;
}

/* Двухколоночный макет */
.form-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

/* Левая колонка */
.form-left {
    flex: 1;
    min-width: 280px;
}

/* Правая колонка */
.form-right {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Резиновая картинка */
.keyboard-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Заголовок */
.form-left h2 {
    font-weight: 700;
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 30px;
}

/* Описание */
.form-desc {
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* Ряд с двумя полями */
.input-row {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.input-wrapper {
    flex: 1;
}

/* Стили полей ввода */
.input-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    color: #FFFFFF;
    outline: none;
    transition: background 0.2s, box-shadow 0.2s;
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-wrapper input:focus {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Чекбокс */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    cursor: pointer;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.checkbox-custom::after {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: block;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.checkbox-hidden {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.checkbox-wrapper input:checked + .checkbox-custom::after {
    opacity: 1;
}

.checkbox-text {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.5);
}

.checkbox-text a {
    color: #FFFFFF;
    text-decoration: underline;
}

.checkbox-text a:hover {
    text-decoration: none;
}

/* Кнопка отправки */
.submit-btn {
    width: 100%;
    background: #F15795;
    border: none;
    border-radius: 60px;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    transition: all 0.2s;
    text-align: center;
}

.submit-btn.active {
    cursor: pointer;
    opacity: 1;
}

.submit-btn.inactive {
    background: rgba(241, 87, 149, 0.6);
    cursor: not-allowed;
    opacity: 0.7;
}

/* Статус сообщение */
.form-status {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 40px;
    padding: 10px;
}

    .contacts-info {
        padding-right: 50px;
    }


@media (max-width: 1600px) {
    .container {
        margin: 0 120px;
    }
    
    .about-grid {
        gap: 80px;
    }
    
    .contacts-flex iframe {
        width: 550px;
        height: 400px;
    }
}


@media (max-width: 1440px) {
    .container {
        margin: 0 80px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .callback-form {
        padding: 50px;
    }
}

@media (max-width: 1280px) {
    .container {
        margin: 0 50px;
    }
    
    .about-grid {
        gap: 60px;
        align-items: flex-start;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .contacts-flex iframe {
        width: 480px;
        height: 380px;
    }
    
    .promo-item {
        padding: 40px 20px;
        gap: 15px;
    }
    
    .promo-item h3 {
        font-size: 40px;
    }
    
    .promo-item p {
        font-size: 14px;
    }
}

/* ----- 1024px (Планшеты горизонтально) ----- */
@media (max-width: 1024px) {
    .container {
        margin: 0 40px;
    }

    
    .logo {
        max-width: 110px;
    }

    
    /* Hero */
    .hero h1 {
        font-size: clamp(35px, 7vw, 60px);
    }
    
    .hero p {
        font-size: 16px;
    }
    
    /* About секция */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text {
        order: -1;
    }
    
    .about-image {
        display: flex;
        justify-content: center;
        max-height: 400px;
    }
    
    .image-wrapper {

        transform: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        gap: 30px;
    }
    
    /* Форма */
    .form-grid {
        gap: 30px;
    }
    
    .keyboard-img {
        max-width: 30%;
        padding-top: 50px;
    }
    
    .form-left h2 {
        font-size: 1.8rem;
    }
    
    /* Контакты */
    .contacts-flex {
        flex-direction: column;
        gap: 40px;
    }
    
    .contacts-flex iframe {
        width: 100%;
        height: 350px;
    }
    
    .contacts-info {
        width: 100%;
    }
    
    /* Футер */
    .footer-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    
    .form-grid {
        flex-direction: column;
    }

    .form-right {
        justify-content: center;
    }


}

/* ----- 768px (Планшеты вертикально) ----- */
@media (max-width: 768px) {
    .container {
        margin: 0 30px;
        padding: 0 15px;
    }

header .container {
        gap: 15px;
    }
    
    /* Секции */
    .about, .gallery, .reviews, .contacts {
        padding: 60px 0;
    }

    .header-btn_list {
        flex-direction: column;
        gap: 5px;
    }
    
    .btn-main {
        padding: 15px 35px;
        font-size: 16px;
    }

      .hero-video .video-desktop {
        display: none;
    }
    
    .hero-video .video-mobile {
        display: block;
    }
    
    
    .promo-item {
        padding: 30px 20px;
    }
    
    /* About */
    .about-grid {
        gap: 40px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .about-text_description p {
        font-size: 16px;
        padding-bottom: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Форма */
    .callback-section {
        padding: 20px 0;
    }
    
    .callback-form {
        padding: 40px 25px;
        border-radius: 30px;
    }
    
    .form-right {
        justify-content: center;
    }
    
    .keyboard-img {
        max-width: 40%;
    }
    
    .form-left h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .form-desc {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .input-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .input-wrapper input {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .checkbox-text {
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 16px 20px;
        font-size: 1rem;
    }
    
    /* Контакты */
    .contacts-list_elem {
        gap: 15px;
    }
    
    .contacts-list_elem_icon {
        width: 35px;
        height: 35px;
    }
    
    /* Футер */
    footer {
        padding: 40px 0;
    }
}

/* ----- 576px (Мобильные телефоны) ----- */
@media (max-width: 576px) {
    .container {
        margin: 0 20px;
        padding: 0 10px;
    }

        .promo-flex {
        flex-direction: column;
        gap: 1px;
    }
    

    .header-btn_list {
        flex-direction: row;
        gap: 2px;
    }

    .image-wrapper {
        transform: none;
    }
    

    /* Хедер */
    header {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .btn-header p {
        display: none;
    }
    
    .btn-header {
        gap: 0;
    }
    
    .logo {
        max-width: 90px;
    }
    
    .header-btn_list {
        gap: 20px;
    }
    
    .badge {
        font-size: 10px;
        margin-bottom: 15px;
    }
    
    .hero h1 {
        font-size: clamp(28px, 6vw, 40px);
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .btn-main {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    /* Секции */
    .about, .gallery, .reviews, .contacts {
        padding: 40px 0;
    }
    
    /* Promo */
    .promo-item {
        padding: 25px 15px;
        gap: 12px;
    }
    
    .promo-item h3 {
        font-size: 32px;
    }
    
    .promo-item p {
        font-size: 12px;
    }
    
    .promo-item svg {
        width: 35px;
    }
    
    /* About */
    .section-title {
        font-size: 24px;
    }
    
    .section-title_underline span {
        text-underline-offset: 5px;
    }
    
    .about-text_description p {
        font-size: 14px;
        padding-bottom: 12px;
    }
    
    .about-list_elem {
        gap: 12px;
    }

        .about-image {
        max-height: none;
    }
    
    .about-list_elem_icon {
        min-width: 20px;
        max-height: 20px;
    }
    
    .about-list_elem p {
        font-size: 14px;
    }
    
    .feature-card {
        padding-left: 15px;
    }
    
    .feature-card h4 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    /* Форма */
    .callback-form {
        padding: 40px 40px;
        border-radius: 25px;
    }
    
    .form-left h2 {
        font-size: 1.4rem;
    }
    
    .form-desc {
        font-size: 0.9rem;
    }
    
    .checkbox-wrapper {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .checkbox-custom {
        width: 20px;
        height: 20px;
    }
    
    .checkbox-custom::after {
        width: 10px;
        height: 10px;
    }
    
    .checkbox-text {
        font-size: 12px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .form-status {
        font-size: 0.85rem;
        padding: 8px;
    }
    
    /* Контакты */

    .contacts-list {
        gap: 10px;
    }

    .contacts-list_elem {
        gap: 12px;
    }
    
    .contacts-list_elem_icon {
        width: 30px;
        height: 30px;
    }
    
    .contacts-list_elem_icon svg {
        width: 14px;
        height: 14px;
    }
    
    .contacts-list_elem-text span {
        font-size: 10px;
    }
    
    .contacts-list_elem-text p {
        font-size: 13px;
    }
    
    .contacts-flex iframe {
        height: 600px;
    }
    
    /* Футер */
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a, .copy {
        font-size: 8px;
    }

    .keyboard-img {
        max-width: 50%;
    }

}


/* ============================================
   ДОПОЛНИТЕЛЬНЫЕ ФИКСЫ ДЛЯ СВАЙПЕРА
   ============================================ */
@media (max-width: 768px) {
    .swiper {
        padding: 0 10px;
    }
    
    .case-card, .review-item {
        border-radius: 20px;
    }
    
    .swiper-pagination {
        margin-top: 20px;
    }
}

/* ============================================
   ФИКС ДЛЯ СТАТУСА ФОРМЫ (чтобы не сдвигал картинку)
   ============================================ */
.form-status {
    margin-top: 20px;
    font-size: 0.9rem;
    text-align: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 40px;
    padding: 10px;
    min-height: 50px;
    transition: all 0.2s ease;
}

/* Анимация для плавного появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-status {
    animation: fadeInUp 0.3s ease;
}

 .page-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Карточка с контентом */
        .policy-card {
            background: white;
            border-radius: 40px;
            padding: 60px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        /* Хедер страницы */
        .policy-header {
            text-align: center;
            margin-bottom: 50px;
            padding-bottom: 30px;
            border-bottom: 2px solid #f0f0f0;
        }

        .policy-header h1 {
            font-size: 42px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .policy-header h1 span {
            color: #F15795;
        }

        .policy-header .date {
            color: #888;
            font-size: 14px;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #F15795;
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .back-link:hover {
            background: #d43f7a;
            transform: translateX(-5px);
        }

        /* Содержание */
        .policy-content h2 {
            font-size: 24px;
            font-weight: 700;
            margin: 30px 0 15px 0;
            color: #F15795;
        }

        .policy-content h2:first-of-type {
            margin-top: 0;
        }

        .policy-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 20px 0 10px 0;
        }

        .policy-content p {
            margin-bottom: 15px;
            color: #444;
        }

        .policy-content ul, .policy-content ol {
            margin: 15px 0 15px 30px;
            color: #444;
        }

        .policy-content li {
            margin-bottom: 8px;
        }

        .policy-footer {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
            text-align: center;
            font-size: 14px;
            color: #888;
        }

        /* ============================================
   АДАПТИВЫ ДЛЯ СТРАНИЦ ПОЛИТИКИ И СОГЛАШЕНИЯ
   ============================================ */

/* Планшеты горизонтально (1024px) */
@media (max-width: 1024px) {
    .policy-card, .terms-card {
        padding: 45px 35px;
    }
    
    .policy-header h1, .terms-header h1 {
        font-size: 36px;
    }
    
    .policy-content h2, .terms-content h2 {
        font-size: 22px;
    }
}

/* Планшеты вертикально (768px) */
@media (max-width: 768px) {
    .page-wrapper {
        padding: 30px 15px;
    }
    
    .policy-card, .terms-card {
        padding: 35px 25px;
        border-radius: 30px;
    }
    
    .policy-header, .terms-header {
        margin-bottom: 35px;
        padding-bottom: 20px;
    }
    
    .policy-header h1, .terms-header h1 {
        font-size: 30px;
    }
    
    .policy-header .date, .terms-header .date {
        font-size: 12px;
    }
    
    .back-link {
        padding: 10px 20px;
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .policy-content h2, .terms-content h2 {
        font-size: 20px;
        margin: 25px 0 12px 0;
    }
    
    .policy-content h3, .terms-content h3 {
        font-size: 16px;
    }
    
    .policy-content p, .terms-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .policy-content ul, .terms-content ul,
    .policy-content ol, .terms-content ol {
        margin: 12px 0 12px 20px;
    }
    
    .policy-content li, .terms-content li {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .policy-footer, .terms-footer {
        margin-top: 35px;
        padding-top: 20px;
        font-size: 12px;
    }
}

/* Мобильные телефоны (576px) */
@media (max-width: 576px) {
    .page-wrapper {
        padding: 20px 12px;
    }
    
    .policy-card, .terms-card {
        padding: 25px 18px;
        border-radius: 25px;
    }
    
    .policy-header, .terms-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .policy-header h1, .terms-header h1 {
        font-size: 24px;
    }
    
    .policy-header .date, .terms-header .date {
        font-size: 10px;
    }
    
    .back-link {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .back-link svg {
        width: 14px;
        height: 14px;
    }
    
    .policy-content h2, .terms-content h2 {
        font-size: 18px;
        margin: 20px 0 10px 0;
    }
    
    .policy-content h3, .terms-content h3 {
        font-size: 15px;
        margin: 15px 0 8px 0;
    }
    
    .policy-content p, .terms-content p {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    .policy-content ul, .terms-content ul,
    .policy-content ol, .terms-content ol {
        margin: 10px 0 10px 18px;
    }
    
    .policy-content li, .terms-content li {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .policy-footer, .terms-footer {
        margin-top: 25px;
        padding-top: 15px;
        font-size: 10px;
    }
}

/* Убираем точки, стрелки просто рядом */
.swiper-nav-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    margin-top: 50px;
}

.swiper-nav-bottom .swiper-pagination {
    display: none; /* Скрываем точки */
}

.swiper-nav-bottom .swiper-button-prev,
.swiper-nav-bottom .swiper-button-next {
    position: relative !important;
    top: auto !important;
    width: 44px;
    height: 44px;
    background: var(--brand-pink);
    border-radius: 50%;
    color: white !important;
}

.swiper-nav-bottom .swiper-button-prev::after,
.swiper-nav-bottom .swiper-button-next::after {
    font-size: 18px;
}