/*
Theme Name: Agency
Author: Hap
Version: 1.0.0
*/


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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

.wpcf7 form {
    margin: 0;
}

.wpcf7 form br {
    display: none;
}

.wpcf7-form-control {
    background: none;
    border: none;
    padding: 0;
}

/* Убираем стандартные сообщения CF7 */
.wpcf7-response-output {
    display: none !important;
}

.wpcf7-not-valid-tip {
    display: none !important;
}



/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 2px solid #f0f0f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: transparent;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    position: relative;
}

/* Лого */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;

    cursor: pointer;
}

.logo-icon-image img {
    max-width: 60px;  /* Измените на нужный размер */
    max-height: 60px;
}

.logo-icon {
    width: 50px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    transition: all 0.3s;
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    margin-top: 2px;
}

/* Навигация */
.nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #4E228F;
}

.nav-link.active {
    color: #4E228F;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Телефон */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 28px;
    background: linear-gradient(135deg, #4E228F 0%, #6B2FB8 100%);
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
}

.header-phone i {
    font-size: 18px;
}

.header-phone:hover {
    box-shadow: 0 8px 30px rgba(78, 34, 143, 0.4);
    filter: brightness(1.1);
}

/* Бургер кнопка */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    min-width: 54px;  /* Минимум для Android */
    min-height: 54px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 10px;
    margin-left: auto;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation; /* КРИТИЧНО для Android */
    user-select: none;
    -webkit-user-select: none;
}

.burger span {
    width: 34px;  /* Уменьшено, чтобы вписаться в новый размер */
    height: 4px;
    background: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s;
    pointer-events: none; /* Чтобы линии не перехватывали клики */
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 0px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
    display: none;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Мобильное меню */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 100px 40px 40px;
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS/Android */
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(135deg, rgba(78, 34, 143, 0.1), rgba(123, 63, 216, 0.1));
    border-color: #4E228F;
    color: #4E228F;
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    padding: 20px 32px;
    background: linear-gradient(135deg, #4E228F 0%, #6B2FB8 100%);
    border-radius: 50px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 10px 35px rgba(78, 34, 143, 0.3);
}

.mobile-phone i {
    font-size: 20px;
}

/* Overlay */
.overlay {
    display: none; /* Изначально скрыт */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
    touch-action: none; /* Блокируем жесты */
    -webkit-tap-highlight-color: transparent;
}

.overlay.active {
    opacity: 1;
    display: block; /* Показываем при активации */
}

/* Отступ для контента под шапкой */
.content-spacer {
    height: 90px;
}

/* Демо контент */
.demo-content {
    padding: 60px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-text {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Мобильная версия */
@media (max-width: 1024px) {
    .nav {
        gap: 25px;
    }

    .nav-link {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
        gap: 15px;
        justify-content: left;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .logo-text {
        font-size: 0px;
    }

    .logo-text span {
        font-size: 0px;
    }

    .nav {
        display: none;
    }

    .header-phone {
        /*display: none;*/
    }

    .header-phone {
        gap: 5px;
        padding: 10px 12px;
        font-size: 12px;
        font-weight: 600;
    }

    .header-phone i {
        font-size: 14px;
    }

    .burger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .overlay {
        /*display: block;*/
    }

    .content-spacer {
        height: 77px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 14px 16px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .logo-text {
        font-size: 0px;
    }

    .mobile-menu {
        max-width: 100%;
        padding: 90px 30px 30px;
    }

    .mobile-nav-link {
        font-size: 18px;
        padding: 14px 18px;
    }

    .mobile-phone {
        padding: 18px 28px;
        font-size: 17px;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 20px 60px;
    overflow: hidden;
}

/* Геометрические фигуры на фоне */
.shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.06;
}

.shape-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 50%;
    top: -250px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 450px;
    height: 450px;
    border: 4px solid #4E228F;
    border-radius: 50%;
    bottom: -180px;
    left: -120px;
    animation: rotate 25s linear infinite;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(225deg, #4E228F 0%, #9B5FE8 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 8%;
    animation: morph 15s ease-in-out infinite;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: #4E228F;
    top: 15%;
    right: 12%;
    animation: pulse 8s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-5 {
    width: 600px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4E228F, transparent);
    bottom: 25%;
    right: -100px;
    animation: slide 12s linear infinite;
}

.shape-6 {
    width: 180px;
    height: 180px;
    border: 3px solid #4E228F;
    top: 60%;
    right: 20%;
    animation: rotate 30s linear infinite reverse;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

/* Декоративные точки */
.dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #4E228F;
    border-radius: 50%;
    opacity: 0.15;
    animation: dotFloat 6s ease-in-out infinite;
}

.dot:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.dot:nth-child(2) {
    top: 45%;
    left: 85%;
    animation-delay: 1s;
}

.dot:nth-child(3) {
    top: 70%;
    left: 25%;
    animation-delay: 2s;
}

.dot:nth-child(4) {
    top: 85%;
    left: 75%;
    animation-delay: 1.5s;
}

.dot:nth-child(5) {
    top: 30%;
    right: 30%;
    animation-delay: 0.5s;
}

.dot:nth-child(6) {
    bottom: 40%;
    left: 10%;
    animation-delay: 2.5s;
}

/* Декоративные линии */
.deco-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #4E228F, transparent);
    opacity: 0.1;
}

.line-1 {
    width: 300px;
    height: 1px;
    top: 25%;
    left: 5%;
    animation: lineSlide 10s ease-in-out infinite;
}

.line-2 {
    width: 200px;
    height: 1px;
    bottom: 35%;
    right: 10%;
    animation: lineSlide 8s ease-in-out infinite reverse;
    animation-delay: 2s;
}

@keyframes dotFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes lineSlide {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, 40px) scale(1.08);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.06;
        transform: scale(1);
    }
    50% {
        opacity: 0.12;
        transform: scale(1.15);
    }
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

/* Контент */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    width: 100%;
    text-align: center;
}

/* Декоративные элементы вокруг заголовка */
.title-decoration {
    position: absolute;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4E228F);
    top: 50%;
    right: -140px;
    animation: titleDecoSlide 3s ease-in-out infinite;
}

@keyframes titleDecoSlide {
    0%, 100% {
        width: 120px;
        opacity: 0.3;
    }
    50% {
        width: 160px;
        opacity: 0.6;
    }
}

.hero-title {
    font-size: clamp(36px, 7vw, 86px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
}

.hero-title .line1,
.hero-title .line2,
.hero-title .line3 {
    display: block;
}

.hero-title .line2 {
    font-weight: 700;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0;
    position: relative;
}

.hero-title .line2::before,
.hero-title .line2::after {
    content: '';
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4E228F, transparent);
    top: 50%;
    width: 80px;
    opacity: 0.4;
}

.hero-title .line2::before {
    left: -100px;
    animation: accentLineLeft 2s ease-in-out infinite;
}

.hero-title .line2::after {
    right: -100px;
    animation: accentLineRight 2s ease-in-out infinite;
}

@keyframes accentLineLeft {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: translateX(-15px);
        opacity: 0.7;
    }
}

@keyframes accentLineRight {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.4;
    }
    50% {
        transform: translateX(15px);
        opacity: 0.7;
    }
}

.cta-wrapper {
    margin-bottom: 20px;
    position: relative;
}

.cta-button {
    display: inline-block;
    padding: 24px 65px;
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #4E228F 0%, #6B2FB8 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 45px rgba(78, 34, 143, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    box-shadow: 0 18px 60px rgba(78, 34, 143, 0.5);
    filter: brightness(1.12);
}

.cta-button:active {
    transform: scale(0.97);
}

/* Карточки в виде графика */
.benefits {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.benefit-card {
    background: transparent;
    padding: 35px 28px;
    border-radius: 24px;
    border: 2px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 260px;
    max-width: 340px;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 34, 143, 0.03) 0%, rgba(123, 63, 216, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.benefit-card:hover::after,
.benefit-card:hover.active {
    opacity: 1;
}

/* График - разная высота карточек */
.benefit-card:nth-child(1) {
    min-height: 280px;
}

.benefit-card:nth-child(2) {
    min-height: 340px;
}

.benefit-card:nth-child(3) {
    min-height: 400px;
}

.benefit-card:hover,
.benefit-card.active {
    border-color: #4E228F;
    box-shadow: 0 25px 70px rgba(78, 34, 143, 0.18);
}

.benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: #4E228F;
    opacity: 0.08;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-number,
.benefit-card.active .benefit-number {
    opacity: 0.15;
    transform: scale(1.2);
}

.benefit-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    font-size: 34px;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(78, 34, 143, 0.25);
}

.benefit-card:hover .benefit-icon,
.benefit-card.active .benefit-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(78, 34, 143, 0.45);
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}

.benefit-text {
    font-size: 15px;
    color: #666;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

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

.hero-title {
    animation: fadeInUp 0.9s ease-out 0.2s both;
}

.cta-wrapper {
    animation: fadeInUp 0.9s ease-out 0.5s both;
}

.benefit-card:nth-child(1) {
    animation: fadeInUp 0.9s ease-out 0.7s both;
}

.benefit-card:nth-child(2) {
    animation: fadeInUp 0.9s ease-out 0.85s both;
}

.benefit-card:nth-child(3) {
    animation: fadeInUp 0.9s ease-out 1s both;
}

/* Мобильная версия */
@media (max-width: 1024px) {
    .hero-title .line2::before,
    .hero-title .line2::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 16px 50px;
        min-height: auto;
    }

    .shape-1 {
        width: 500px;
        height: 500px;
        top: -200px;
        right: -200px;
    }

    .shape-2 {
        width: 350px;
        height: 350px;
        bottom: -150px;
        left: -150px;
    }

    .shape-3 {
        width: 250px;
        height: 250px;
        left: -50px;
    }

    .shape-4 {
        width: 180px;
        height: 180px;
    }

    .shape-6 {
        width: 120px;
        height: 120px;
    }

    .hero-title {
        margin-bottom: 35px;
        letter-spacing: -1px;
    }

    .cta-wrapper {
        margin-bottom: 50px;
    }

    .cta-button {
        padding: 20px 50px;
        font-size: 17px;
        width: 100%;
        max-width: 320px;
    }

    .benefits {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .benefit-card {
        min-width: 100%;
        max-width: 100%;
    }

    .benefit-card:nth-child(1),
    .benefit-card:nth-child(2),
    .benefit-card:nth-child(3) {
        min-height: auto;
        padding: 32px 24px;
    }

    .benefit-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .benefit-number {
        font-size: 38px;
        top: 16px;
        right: 16px;
    }

    .benefit-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .benefit-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 45px;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 16px;
    }
}

/* Контейнер для curtain эффекта */
.services-wrapper {
    position: relative;
}

.service-panel {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.service-panel:nth-child(1) {
    background: #f8f8f8;
    z-index: 1;
}

.service-panel:nth-child(2) {
    background: #ffffff;
    z-index: 2;
}

/* Геометрические фигуры */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    opacity: 0.05;
}

.shape-circle {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 50%;
    top: -100px;
    right: -150px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-square {
    width: 350px;
    height: 350px;
    background: #4E228F;
    bottom: -100px;
    left: -100px;
    animation: rotateShape 25s linear infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-triangle {
    width: 300px;
    height: 300px;
    background: linear-gradient(225deg, #4E228F, #7B3FD8);
    top: 50%;
    left: 10%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(15deg); }
}

@keyframes rotateShape {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.05; }
    50% { opacity: 0.08; }
}

/* Контент секции */
.service-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Левая часть с текстом */
.content-left {
    max-width: 600px;
}

.service-title {
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -1px;
}

.service-title .accent {
    display: block;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.cta-button {
    display: inline-block;
    padding: 24px 60px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #4E228F 0%, #6B2FB8 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(78, 34, 143, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    box-shadow: 0 18px 55px rgba(78, 34, 143, 0.5);
    filter: brightness(1.12);
}

/* Карточки преимуществ - floating layout */
.features-floating {
    position: relative;
    min-height: 350px;
}

.feature-chip {
    position: absolute;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}

.feature-chip:hover {
    border-color: #4E228F;
    box-shadow: 0 12px 40px rgba(78, 34, 143, 0.2);
    filter: brightness(1.02);
}

.feature-chip i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(78, 34, 143, 0.1), rgba(123, 63, 216, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4E228F;
    flex-shrink: 0;
    transition: all 0.4s;
}

.feature-chip:hover i {
    background: linear-gradient(135deg, #4E228F, #7B3FD8);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(78, 34, 143, 0.3);
}

.feature-chip span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Позиционирование карточек - асимметрично */
.feature-chip:nth-child(1) {
    top: 0;
    left: 0;
    transform: rotate(-2deg);
}

.feature-chip:nth-child(2) {
    top: 80px;
    left: 180px;
    transform: rotate(1deg);
}

.feature-chip:nth-child(3) {
    top: 160px;
    left: 30px;
    transform: rotate(-1deg);
}

.feature-chip:nth-child(4) {
    top: 240px;
    left: 200px;
    transform: rotate(2deg);
}

/* Нижняя кнопка */
.cta-secondary {
    display: inline-block;
    padding: 22px 55px;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    background: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4E228F 0%, #6B2FB8 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.cta-secondary:hover::before {
    opacity: 1;
}

.cta-secondary span {
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.cta-secondary:hover {
    border-color: #4E228F;
    box-shadow: 0 12px 40px rgba(78, 34, 143, 0.3);
}

.cta-secondary:hover span {
    color: #ffffff;
}

/* Правая часть с фото */
.content-right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-block {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.photo-main {
    width: 100%;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 8px solid #ffffff;
}

.photo-main:hover {
    transform: rotate(0deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-main:hover img {
    filter: brightness(1.05);
}

/* Декоративное фото сзади */
.photo-decoration {
    position: absolute;
    width: 280px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 6px solid #ffffff;
    z-index: -1;
}

.photo-decoration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-decoration-1 {
    top: -30px;
    right: -40px;
    transform: rotate(-8deg);
}

.photo-decoration-2 {
    bottom: -30px;
    left: -40px;
    transform: rotate(8deg);
}

/* Мобильная версия */
@media (max-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .content-right {
        order: -1;
    }

    .photo-block {
        max-width: 100%;
    }

    .photo-main {
        height: 400px;
    }

    .photo-decoration {
        width: 200px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .service-panel {
        padding: 40px 16px;
        min-height: auto; /* Убираем фиксированную высоту */
        align-items: flex-start;
    }

    /* Убираем margin-bottom на мобильных - контент просто идет друг за другом */
    .service-panel:not(:last-child) {
        margin-bottom: 0;
    }

    .service-content {
        gap: 40px;
        padding: 20px 0;
    }

    .content-left {
        max-width: 100%;
    }

    .content-right {
        display: none;
    }

    .service-title {
        margin-bottom: 25px;
    }

    .cta-button {
        width: 100%;
        max-width: 400px;
        padding: 20px 50px;
        font-size: 17px;
        text-align: center;
        margin-bottom: 10px;
    }

    .features-floating {
        position: relative;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .feature-chip {
        position: static !important;
        transform: none !important;
        width: 100%;
    }

    .cta-secondary {
        width: 100%;
        max-width: 400px;
        padding: 20px 50px;
        text-align: center;
        font-size: 16px;
    }

    .photo-main {
        height: 350px;
        transform: rotate(2deg);
    }

    .photo-decoration {
        width: 150px;
        height: 180px;
    }

    .photo-decoration-1 {
        top: -20px;
        right: -25px;
    }

    .photo-decoration-2 {
        bottom: -20px;
        left: -25px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 18px 40px;
        font-size: 16px;
    }

    .feature-chip {
        padding: 16px 20px;
    }

    .feature-chip i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .feature-chip span {
        font-size: 14px;
    }

    .photo-main {
        height: 300px;
    }

    .photo-decoration {
        display: none;
    }
}


.share-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    overflow: hidden;
}

/* Геометрические фигуры */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    opacity: 0.06;
}

.shape-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 50%;
    top: -150px;
    left: -100px;
    animation: float 18s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    border: 3px solid #4E228F;
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
    animation: rotate 20s linear infinite;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #4E228F;
    top: 50%;
    right: 15%;
    animation: morph 16s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: linear-gradient(225deg, #4E228F, #7B3FD8);
    bottom: 20%;
    left: 10%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: pulse 12s ease-in-out infinite;
}

/* Декоративные линии */
.deco-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #4E228F, transparent);
    opacity: 0.08;
}

.line-1 {
    width: 400px;
    height: 2px;
    top: 30%;
    left: 10%;
    animation: slideRight 10s ease-in-out infinite;
}

.line-2 {
    width: 300px;
    height: 2px;
    bottom: 30%;
    right: 15%;
    animation: slideLeft 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.06;
    }
    50% {
        opacity: 0.1;
    }
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(60px);
    }
}

@keyframes slideLeft {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-60px);
    }
}

/* Контент */
.share-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.share-title {
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 80px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.share-title .accent {
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 70px;
    padding: 40px 0;
}

/* Линия timeline */
.timeline-line {
    position: absolute;
    top: 53%;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e0e0e0 0%, #4E228F 50%, #e0e0e0 100%);
    transform: translateY(-50%);
    z-index: 0;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #4E228F, #7B3FD8);
    transform: translateY(-50%);
    animation: fillTimeline 2s ease-out 0.5s forwards;
}

@keyframes fillTimeline {
    to {
        width: 100%;
    }
}

/* Шаги */
.timeline-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-step:nth-child(1) {
    animation-delay: 0.3s;
}

.timeline-step:nth-child(2) {
    animation-delay: 0.6s;
}

.timeline-step:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Круг с номером */
.step-circle {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border: 4px solid #4E228F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(78, 34, 143, 0.15);
}

.timeline-step:hover .step-circle {
    background: linear-gradient(135deg, #4E228F, #7B3FD8);
    border-color: #7B3FD8;
    box-shadow: 0 15px 50px rgba(78, 34, 143, 0.35);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #4E228F;
    transition: all 0.5s;
}

.timeline-step:hover .step-number {
    color: #ffffff;
    transform: scale(1.1);
}

/* Иконка */
.step-icon {
    position: absolute;
    bottom: -15px;
    right: -5px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4E228F, #7B3FD8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(78, 34, 143, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step:hover .step-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(78, 34, 143, 0.5);
}

/* Текст */
.step-content {
    text-align: center;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* CTA кнопка */
.cta-button {
    display: inline-block;
    padding: 24px 60px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #4E228F 0%, #6B2FB8 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(78, 34, 143, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    box-shadow: 0 18px 55px rgba(78, 34, 143, 0.5);
    filter: brightness(1.12);
}

/* Мобильная версия */
@media (max-width: 768px) {
    .share-section {
        padding: 60px 16px;
    }

    .share-title {
        margin-bottom: 60px;
    }

    .timeline {
        margin-bottom: 50px;
        padding: 20px 0;
    }

    .timeline-line {
        display: none;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .step-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }

    .step-number {
        font-size: 40px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: -12px;
        right: -8px;
    }

    .step-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .step-description {
        font-size: 14px;
        max-width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 400px;
        padding: 20px 50px;
        font-size: 17px;
    }

    .shape-1 {
        width: 350px;
        height: 350px;
        top: -100px;
        left: -150px;
    }

    .shape-2 {
        width: 280px;
        height: 280px;
        bottom: -80px;
        right: -120px;
    }

    .shape-3 {
        width: 200px;
        height: 200px;
    }

    .shape-4 {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .step-circle {
        width: 90px;
        height: 90px;
    }

    .step-number {
        font-size: 36px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .step-title {
        font-size: 18px;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 16px;
    }
}

.rental-wrapper {
    position: relative;
    height: 200vh;
}

.rental-section {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}

/* Геометрические фигуры */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    opacity: 0.05;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    border: 3px solid #4E228F;
    bottom: -120px;
    left: -80px;
    animation: rotate 22s linear infinite;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: #4E228F;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: morph 18s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(10deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* Контейнер с перспективой для 3D эффекта */
.flip-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    perspective: 2000px;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 750px;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card.flipped {
    transform: rotateY(180deg);
}

/* Стороны карточки */
.card-side {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.15);
}

.card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border: 2px solid #4E228F;
}

.card-back {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    transform: rotateY(180deg);
    border: 2px solid #4E228F;
}

/* Контент карточки */
.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
    position: relative;
}

/* Иконка */
.card-icon {
    padding: 15px 0;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #ffffff;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(78, 34, 143, 0.4);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Заголовок */
.card-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.card-front .card-title {
    color: #1a1a1a;
}

.card-back .card-title {
    color: #1a1a1a;
}

.card-title .accent {
    display: block;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

/* Описание */
.card-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 50px;
}

/* Преимущества */
.card-features {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    border-color: #4E228F;
    box-shadow: 0 8px 30px rgba(78, 34, 143, 0.15);
}

.feature-item i {
    font-size: 20px;
    color: #4E228F;
}

.feature-item span {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Кнопка */
.card-cta {
    display: inline-block;
    flex-shrink: 0;
    padding: 24px 60px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #4E228F 0%, #6B2FB8 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(78, 34, 143, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.card-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.card-cta:hover::before {
    left: 100%;
}

.card-cta:hover {
    box-shadow: 0 18px 55px rgba(78, 34, 143, 0.5);
    filter: brightness(1.12);
}

/* Индикатор скролла */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator i {
    display: block;
    font-size: 24px;
    margin-top: 8px;
    color: #4E228F;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .rental-section {
        padding: 40px 16px;
    }

    .flip-card {
        height: auto;
        min-height: 700px;
    }

    .card-content {
        padding: 40px 30px;
    }

    .card-icon {
        width: 110px;
        height: 110px;
        font-size: 50px;
        margin-bottom: 30px;
    }

    .card-title {
        margin-bottom: 16px;
    }

    .card-description {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .card-features {
        gap: 15px;
        margin-bottom: 35px;
    }

    .feature-item {
        padding: 14px 22px;
        width: 100%;
        max-width: 300px;
    }

    .feature-item i {
        font-size: 18px;
    }

    .feature-item span {
        font-size: 15px;
    }

    .card-cta {
        width: 100%;
        max-width: 350px;
        padding: 20px 50px;
        font-size: 17px;
    }

    .scroll-indicator {
        bottom: 20px;
        font-size: 12px;
    }

    .scroll-indicator i {
        font-size: 20px;
    }

    .shape-1 {
        width: 350px;
        height: 350px;
    }

    .shape-2 {
        width: 300px;
        height: 300px;
    }

    .shape-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .card-content {
        padding: 35px 20px;
    }

    .card-icon {
        width: 100px;
        height: 100px;
        font-size: 45px;
    }

    .card-cta {
        padding: 18px 40px;
        font-size: 16px;
    }
}

.reviews-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    overflow: hidden;
}

/* Геометрические фигуры */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    opacity: 0.05;
}

.shape-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: float 18s ease-in-out infinite;
}

.shape-2 {
    width: 350px;
    height: 350px;
    border: 3px solid #4E228F;
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    animation: rotate 20s linear infinite;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #4E228F;
    top: 50%;
    right: 10%;
    animation: morph 16s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* Контент */
.reviews-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
}

/* Заголовок */
.reviews-header {
    text-align: center;
    margin-bottom: 70px;
}

.reviews-title {
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.reviews-title .accent {
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Бесконечная лента */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #ffffff 100%);
}

.marquee {
    display: flex;
    gap: 25px;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Вторая лента (обратное направление) */
.marquee-reverse {
    animation: scrollReverse 45s linear infinite;
}

@keyframes scrollReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Карточка отзыва */
.review-card {
    min-width: 450px;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    border-color: #4E228F;
    box-shadow: 0 20px 60px rgba(78, 34, 143, 0.15);
}

/* Шапка карточки */
.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(78, 34, 143, 0.3);
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.review-date {
    font-size: 14px;
    color: #999;
}

/* Рейтинг */
.review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.review-rating i {
    font-size: 16px;
    color: #FFB800;
}

/* Текст отзыва */
.review-text {
    height: 200px;
    overflow-y: scroll;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -8px;
    font-size: 60px;
    color: rgba(78, 34, 143, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* CTA кнопка */
.reviews-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    display: inline-block;
    padding: 24px 60px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #4E228F 0%, #6B2FB8 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(78, 34, 143, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    box-shadow: 0 18px 55px rgba(78, 34, 143, 0.5);
    filter: brightness(1.12);
}

/* Мобильная версия */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 16px;
    }

    .reviews-header {
        margin-bottom: 50px;
    }

    .reviews-subtitle {
        font-size: 16px;
    }

    .marquee-container {
        margin-bottom: 20px;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 50px;
    }

    .marquee {
        gap: 20px;
    }

    .review-card {
        min-width: 320px;
        padding: 28px 24px;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .review-name {
        font-size: 17px;
    }

    .review-date {
        font-size: 13px;
    }

    .review-rating i {
        font-size: 14px;
    }

    .review-text {
        font-size: 14px;
    }

    .review-text::before {
        font-size: 50px;
        top: -12px;
    }

    .reviews-cta {
        margin-top: 40px;
    }

    .cta-button {
        width: 100%;
        max-width: 400px;
        padding: 20px 50px;
        font-size: 17px;
    }

    .shape-1 {
        width: 350px;
        height: 350px;
    }

    .shape-2 {
        width: 280px;
        height: 280px;
    }

    .shape-3 {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .review-card {
        min-width: 280px;
        padding: 24px 20px;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 16px;
    }
}

<!--CONTACTS-->
    .contacts-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 100px 20px 0;
        overflow: hidden;
    }

/* Геометрические фигуры */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    opacity: 0.05;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    border: 3px solid #4E228F;
    bottom: 50px;
    left: -120px;
    animation: rotate 22s linear infinite;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: #4E228F;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: morph 18s ease-in-out infinite;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(10deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* Контент */
.contacts-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 80px;
}

/* Заголовок */
.contacts-header {
    text-align: center;
    margin-bottom: 70px;
}

.contacts-title {
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.contacts-title .accent {
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contacts-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Карточки контактов */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 28px;
    padding: 45px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-card:hover,
.contact-card.active {
    border-color: #4E228F;
    box-shadow: 0 25px 70px rgba(78, 34, 143, 0.18);
}

/* Иконка */
.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(78, 34, 143, 0.1), rgba(123, 63, 216, 0.15));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 38px;
    color: #4E228F;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover .contact-icon,
.contact-card.active .contact-icon {
    background: linear-gradient(135deg, #4E228F, #7B3FD8);
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(78, 34, 143, 0.4);
}

/* Заголовок карточки */
.contact-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.3;
}

/* Информация */
.contact-info {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.contact-info a {
    color: #4E228F;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.contact-info a:hover {
    color: #7B3FD8;
    filter: brightness(1.2);
}

.contact-info .highlight {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 12px 0;
}

/* Футер (подвал) */
.footer {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    font-size: 14px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-link {
    font-size: 14px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4E228F, #7B3FD8);
    transition: width 0.3s;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: linear-gradient(135deg, #4E228F, #7B3FD8);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(78, 34, 143, 0.4);
}

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

.contact-card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.contact-card:nth-child(1) {
    animation-delay: 0.2s;
    opacity: 0;
}

.contact-card:nth-child(2) {
    animation-delay: 0.4s;
    opacity: 0;
}

.contact-card:nth-child(3) {
    animation-delay: 0.6s;
    opacity: 0;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .contacts-section {
        padding: 60px 16px 0;
    }

    .contacts-content {
        margin-bottom: 60px;
    }

    .contacts-header {
        margin-bottom: 50px;
    }

    .contacts-subtitle {
        font-size: 16px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-card {
        padding: 38px 30px;
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        font-size: 34px;
        margin-bottom: 25px;
    }

    .contact-card-title {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .contact-info {
        font-size: 15px;
    }

    .contact-info .highlight {
        font-size: 20px;
    }

    .footer {
        padding: 25px 16px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

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

    .shape-1 {
        width: 350px;
        height: 350px;
    }

    .shape-2 {
        width: 300px;
        height: 300px;
    }

    .shape-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 32px 24px;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .footer-text {
        font-size: 13px;
    }
}







/* Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Модальное окно */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Шапка модалки */
.modal-header {
    padding: 30px 35px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4E228F, #7B3FD8);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.modal-close {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.modal-close:hover {
    background: #4E228F;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(78, 34, 143, 0.3);
}

/* Контент модалки */
.modal-body {
    padding: 35px;
    overflow-y: auto;
    flex: 1;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #4E228F;
    border-radius: 10px;
}

/* Политика конфиденциальности */
.privacy-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 30px;
}

.privacy-content h3:first-child {
    margin-top: 0;
}

.privacy-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.privacy-content li {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Форма заявки */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-label .required {
    color: #E63946;
    margin-left: 4px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    color: #1a1a1a;
    background: #f8f8f8;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    background: #ffffff;
    border-color: #4E228F;
    box-shadow: 0 0 0 4px rgba(78, 34, 143, 0.1);
}

.form-input::placeholder {
    color: #999;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-top: 2px;
    appearance: none;
    position: relative;
}

.form-checkbox:checked {
    background: linear-gradient(135deg, #4E228F, #7B3FD8);
    border-color: #4E228F;
}

.form-checkbox:checked::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
}

.form-checkbox-label {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox-label a {
    color: #4E228F;
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #4E228F 0%, #6B2FB8 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(78, 34, 143, 0.3);
}

.form-submit:hover {
    box-shadow: 0 12px 40px rgba(78, 34, 143, 0.4);
    filter: brightness(1.1);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Успешная отправка */
.success-message {
    display: none;
    text-align: center;
    padding: 40px;
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4E228F, #7B3FD8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(78, 34, 143, 0.3);
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.success-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .modal {
        width: 95%;
        max-width: none;
    }

    .modal-header {
        padding: 24px 24px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .modal-body {
        padding: 24px;
    }

    .privacy-content h3 {
        font-size: 18px;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 14px;
    }

    .form-input {
        padding: 14px 18px;
        font-size: 15px;
    }

    .form-submit {
        padding: 16px 36px;
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 20px;
    }

    .modal-title {
        font-size: 18px;
    }

    .modal-body {
        padding: 20px;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .success-title {
        font-size: 20px;
    }
}








#sell, #obmen, #share, #rentalWrapper, #reviews, #contacts {
    scroll-margin-top: 40px;
}





/* ============================================
   Стили для страницы политики конфиденциальности
   ============================================ */

/* Общие стили страницы */
.privacy-policy-page {
    background: #ffffff;
    position: relative;
}

/* Геометрические фигуры на фоне */
.privacy-policy-page .shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.privacy-policy-page .shape {
    position: absolute;
    opacity: 0.06;
}

.privacy-policy-page .shape-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 50%;
    top: -250px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.privacy-policy-page .shape-2 {
    width: 450px;
    height: 450px;
    border: 4px solid #4E228F;
    border-radius: 50%;
    bottom: -180px;
    left: -120px;
    animation: rotate 25s linear infinite;
}

.privacy-policy-page .shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(225deg, #4E228F 0%, #9B5FE8 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 8%;
    animation: morph 15s ease-in-out infinite;
}

.privacy-policy-page .shape-4 {
    width: 250px;
    height: 250px;
    background: #4E228F;
    top: 15%;
    right: 12%;
    animation: pulse 8s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Шапка страницы */
.privacy-policy-header {
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.privacy-policy-header::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.privacy-policy-header::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
    animation: rotate 25s linear infinite;
}

.privacy-policy-header .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-policy-header .back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.privacy-policy-header .back-button:hover {
    transform: translateX(-5px);
    color: white;
}

.privacy-policy-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.privacy-policy-header .subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* Основной контент */
.privacy-policy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    position: relative;
    z-index: 1;
}

.privacy-policy-content .content-wrapper {
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(78, 34, 143, 0.08);
}

/* Заголовки */
.privacy-policy-content h2 {
    color: #4E228F;
    font-size: 28px;
    margin: 40px 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.privacy-policy-content h2:first-child {
    margin-top: 0;
}

.privacy-policy-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #4E228F, #7B3FD8);
}

.privacy-policy-content h3 {
    color: #4E228F;
    font-size: 22px;
    margin: 30px 0 15px 0;
}

.privacy-policy-content h4 {
    color: #333;
    font-size: 18px;
    margin: 20px 0 10px 0;
}

/* Параграфы */
.privacy-policy-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.privacy-policy-content p strong {
    color: #333;
    font-weight: 600;
}

/* Списки */
.privacy-policy-content ul,
.privacy-policy-content ol {
    margin: 15px 0 20px 25px;
    line-height: 1.8;
}

.privacy-policy-content li {
    margin-bottom: 10px;
    color: #555;
}

.privacy-policy-content ul ul,
.privacy-policy-content ol ol {
    margin: 10px 0 10px 20px;
}

/* Ссылки */
.privacy-policy-content a {
    color: #4E228F;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.privacy-policy-content a:hover {
    color: #7B3FD8;
    text-decoration: underline;
}

/* Таблицы */
.privacy-policy-content .table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(78, 34, 143, 0.1);
    -webkit-overflow-scrolling: touch;
}

.privacy-policy-content table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.privacy-policy-content table th {
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    color: white;
    padding: 18px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.privacy-policy-content table td {
    padding: 18px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.privacy-policy-content table td:last-child {
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Специально для ссылок в таблицах */
.privacy-policy-content table td a {
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
}

.privacy-policy-content table tr:last-child td {
    border-bottom: none;
}

.privacy-policy-content table tbody tr:hover {
    background: #f8f5fc;
}

/* Блоки с важной информацией */
.privacy-policy-content .info-box {
    background: #f8f5fc;
    border-left: 4px solid #4E228F;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.privacy-policy-content .info-box p {
    margin-bottom: 0;
}

/* Контактная информация */
.privacy-policy-content .contact-info {
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.privacy-policy-content .contact-info h3 {
    color: white;
    margin-top: 0;
}

.privacy-policy-content .contact-info p,
.privacy-policy-content .contact-info a {
    color: white;
}

.privacy-policy-content .contact-info a:hover {
    opacity: 0.8;
}

/* Анимации */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, 40px) scale(1.08);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.06;
        transform: scale(1);
    }
    50% {
        opacity: 0.12;
        transform: scale(1.15);
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .privacy-policy-header h1 {
        font-size: 36px;
    }

    .privacy-policy-content .content-wrapper {
        padding: 40px;
    }

    /* Для таблиц на планшетах */
    .privacy-policy-content table {
        font-size: 14px;
    }

    .privacy-policy-content table th,
    .privacy-policy-content table td {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .privacy-policy-header {
        padding: 40px 20px;
    }

    .privacy-policy-header h1 {
        font-size: 28px;
    }

    .privacy-policy-header .subtitle {
        font-size: 16px;
    }

    .privacy-policy-content h2 {
        font-size: 22px;
    }

    .privacy-policy-content h3 {
        font-size: 20px;
    }

    .privacy-policy-content .content-wrapper {
        padding: 25px;
    }

    /* Преобразуем таблицы в карточки на мобильных */
    .privacy-policy-content .table-wrapper {
        overflow: visible;
        margin: 25px 0;
        box-shadow: none;
    }

    .privacy-policy-content table,
    .privacy-policy-content thead,
    .privacy-policy-content tbody,
    .privacy-policy-content th,
    .privacy-policy-content td,
    .privacy-policy-content tr {
        display: block;
    }

    .privacy-policy-content table {
        min-width: auto;
        width: 100%;
    }

    /* Прячем заголовки таблицы */
    .privacy-policy-content thead {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    /* Каждая строка = карточка */
    .privacy-policy-content tbody tr {
        margin-bottom: 20px;
        border: 2px solid #f0f0f0;
        border-radius: 12px;
        padding: 20px;
        background: #fafafa;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .privacy-policy-content tbody tr:hover {
        background: #f8f5fc;
        border-color: #4E228F;
    }

    /* Ячейки таблицы */
    .privacy-policy-content td {
        border: none !important;
        padding: 12px 0 !important;
        text-align: left !important;
        font-size: 14px;
        line-height: 1.6;
    }

    .privacy-policy-content td:not(:last-child) {
        border-bottom: 1px solid #e0e0e0 !important;
        padding-bottom: 15px !important;
        margin-bottom: 15px;
    }

    /* Скрываем большие декоративные фигуры на мобильных */
    .privacy-policy-page .shape-1,
    .privacy-policy-page .shape-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .privacy-policy-content .content-wrapper {
        padding: 20px;
        border-radius: 8px;
    }

    .privacy-policy-content table th,
    .privacy-policy-content table td {
        padding: 10px;
        font-size: 13px;
    }
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

.privacy-policy-content section {
    scroll-margin-top: 20px;
}












/* ============================================
   Стили для страницы благодарности
   ============================================ */

/* Общие стили страницы */
.thank-you-page {
    background: #ffffff;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Геометрические фигуры на фоне */
.thank-you-page .shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.thank-you-page .shape {
    position: absolute;
    opacity: 0.06;
}

.thank-you-page .shape-1 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 50%;
    top: -250px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.thank-you-page .shape-2 {
    width: 450px;
    height: 450px;
    border: 4px solid #4E228F;
    border-radius: 50%;
    bottom: -180px;
    left: -120px;
    animation: rotate 25s linear infinite;
}

.thank-you-page .shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(225deg, #4E228F 0%, #9B5FE8 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 8%;
    animation: morph 15s ease-in-out infinite;
}

.thank-you-page .shape-4 {
    width: 250px;
    height: 250px;
    background: #4E228F;
    top: 15%;
    right: 12%;
    animation: pulse 8s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Основной контент */
.thank-you-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
}

.thank-you-wrapper {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(78, 34, 143, 0.15);
    text-align: center;
    animation: slideUp 0.6s ease-out;
}

/* Иконка успеха */
.success-icon {
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

.icon-circle {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin: 0 auto;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-success 2s ease-in-out infinite;
}

.icon-circle::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border: 3px solid #4E228F;
    border-radius: 50%;
    opacity: 0.3;
}

.icon-circle i {
    font-size: 50px;
    color: white;
}

/* Заголовок */
.thank-you-title {
    font-size: 42px;
    font-weight: 700;
    color: #4E228F;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease-out 0.3s both;
}

/* Текст */
.thank-you-text {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.thank-you-subtext {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    animation: fadeIn 0.6s ease-out 0.5s both;
}

.thank-you-subtext strong {
    color: #4E228F;
    font-weight: 600;
}

/* Контакты */
.contact-block {
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    animation: fadeIn 0.6s ease-out 0.7s both;
}

.contact-block h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.contact-item i {
    font-size: 20px;
}

/* Кнопки действий */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeIn 0.6s ease-out 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 34, 143, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(78, 34, 143, 0.4);
}

.btn-secondary {
    background: white;
    color: #4E228F;
    border: 2px solid #4E228F;
}

.btn-secondary:hover {
    background: #4E228F;
    color: white;
}

/* Анимации */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-success {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, 40px) scale(1.08);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.06;
        transform: scale(1);
    }
    50% {
        opacity: 0.12;
        transform: scale(1.15);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .thank-you-wrapper {
        padding: 40px 25px;
    }

    .thank-you-title {
        font-size: 32px;
    }

    .thank-you-text {
        font-size: 18px;
    }

    .info-blocks {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-items {
        flex-direction: column;
        gap: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .icon-circle {
        width: 100px;
        height: 100px;
    }

    .icon-circle i {
        font-size: 40px;
    }

    .icon-circle::before {
        width: 120px;
        height: 120px;
    }

    /* Скрываем большие декоративные фигуры на мобильных */
    .thank-you-page .shape-1,
    .thank-you-page .shape-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .thank-you-title {
        font-size: 26px;
    }

    .thank-you-text {
        font-size: 16px;
    }

    .thank-you-wrapper {
        padding: 30px 20px;
    }

    .contact-block {
        padding: 20px;
    }

    .contact-block h3 {
        font-size: 18px;
    }

    .contact-item {
        font-size: 16px;
    }
}















/* Cookie Modal */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    display: none;
}

.cookie-consent.show {
    display: block;
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 20px;
    color: #4E228F;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: #4E228F;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    align-items: center;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 34, 143, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 34, 143, 0.4);
}

.cookie-btn-settings {
    background: white;
    color: #4E228F;
    border: 2px solid #4E228F;
}

.cookie-btn-settings:hover {
    background: #f8f5fc;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.cookie-settings-header {
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.cookie-settings-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.cookie-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cookie-settings-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h4 {
    font-size: 18px;
    color: #4E228F;
    margin: 0;
    font-weight: 600;
}

.cookie-category p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, #4E228F 0%, #7B3FD8 100%);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-footer {
    padding: 20px 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-text h3 {
        font-size: 18px;
    }

    .cookie-text p {
        font-size: 14px;
    }

    .cookie-settings-body {
        padding: 20px;
    }

    .cookie-settings-footer {
        padding: 15px 20px;
        flex-direction: column;
    }

    .cookie-settings-footer .cookie-btn {
        width: 100%;
    }
}