
    /* Основные цвета */
    :root {
        --primary-color: #FF6B00; /* Оранжевый */
        --primary-hover: #e05d00; /* Темнее оранжевый для hover */
        --secondary-color: #4CAF50; /* Зеленый */
        --text-color: #333; /* Основной цвет текста */
        --text-light: #fff; /* Текст на темном фоне */
    }

    /* Общие стили для шапки */
    .site-navbar {
        position: fixed;
        width: 100%;
        z-index: 1000;
        transition: all 0.3s ease;
        background: #fff;
        box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    }

    /* Шапка на десктопе */
    @media (min-width: 1200px) {
        .site-navbar {
            background: transparent;
            box-shadow: none;
            padding: 20px 0;
        }

        /* Шапка с фоном при скролле только на десктопе */
        .site-navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 15px 0;
        }
    }

    /* Логотип */
    .site-logo .logo-img {
        max-height: 40px;
        transition: all 0.3s ease;
    }

    /* Стили для гамбургер-кнопки (черная) */
    .hamburger {
        padding: 15px;
        display: inline-block;
        cursor: pointer;
        transition-property: opacity, filter;
        transition-duration: 0.15s;
        transition-timing-function: linear;
        font: inherit;
        color: inherit;
        text-transform: none;
        background-color: transparent;
        border: 0;
        margin: 0;
        overflow: visible;
        outline: none;
    }

    .hamburger-box {
        width: 24px;
        height: 24px;
        display: inline-block;
        position: relative;
    }

    .hamburger-inner {
        display: block;
        top: 50%;
        margin-top: -2px;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 24px;
        height: 3px;
        background-color: #000; /* Черный цвет гамбургера */
        border-radius: 4px;
        position: absolute;
        transition-property: transform;
        transition-duration: 0.15s;
        transition-timing-function: ease;
    }

    .hamburger-inner::before,
    .hamburger-inner::after {
        content: "";
        display: block;
    }

    .hamburger-inner::before {
        top: -8px;
    }

    .hamburger-inner::after {
        bottom: -8px;
    }

    /* Анимация гамбургера */
    .hamburger--spin .hamburger-inner {
        transition-duration: 0.22s;
        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    .hamburger--spin .hamburger-inner::before {
        transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
    }
    .hamburger--spin .hamburger-inner::after {
        transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .hamburger--spin.is-active .hamburger-inner {
        transform: rotate(225deg);
        transition-delay: 0.12s;
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    .hamburger--spin.is-active .hamburger-inner::before {
        top: 0;
        opacity: 0;
        transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
    }
    .hamburger--spin.is-active .hamburger-inner::after {
        bottom: 0;
        transform: rotate(-90deg);
        transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    /* Основное меню для десктопа */
    .site-menu {
        display: flex;
        justify-content: flex-end;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .site-menu li {
        position: relative;
        margin-left: 40px;
    }

    .site-menu a {
        color: var(--text-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 10px 0;
        position: relative;
        transition: all 0.3s ease;
        text-transform: capitalize;
    }

    @media (min-width: 1200px) {
        .site-menu a {
            color: var(--text-light);
        }

        .site-navbar.scrolled .site-menu a {
            color: var(--text-color);
        }
    }

    /* Подсветка при наведении и активном состоянии */
    .site-menu a:hover {
        color: var(--primary-color);
    }

    .site-menu a.active {
        color: var(--primary-color);
        font-weight: 600;
    }

    /* Мобильное меню */
    .mobile-menu-container {
        position: absolute;
        top: 100%; /* Прямо под шапкой */
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .mobile-menu-container.open {
        max-height: 500px;
        opacity: 1;
    }

    .mobile-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu li {
        border-bottom: none;
        transition: all 0.3s ease;
    }

    .mobile-menu a {
        display: block;
        padding: 15px 25px;
        color: var(--text-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-transform: capitalize;
        position: relative;
    }

    /* Градиентная полоса слева при наведении */
    .mobile-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu a:hover {
        color: var(--primary-color);
        background-color: rgba(255, 107, 0, 0.05);
    }

    .mobile-menu a:hover::before {
        opacity: 1;
    }

    /* Стиль активной кнопки - только подсветка */
    .mobile-menu a.active {
        color: var(--primary-color);
        font-weight: 600;
        background-color: transparent;
    }

    .mobile-menu a.active::before {
        opacity: 1;
        background: var(--primary-color); /* Только оранжевый цвет для активной кнопки */
    }

    /* Убираем градиентный фон для активного состояния */
    .mobile-menu a.active {
        background-image: none;
    }

    /* Адаптивность */
    @media (max-width: 1199px) {
        .site-menu li {
            margin-left: 25px;
        }
    }

.btn:hover {
        background-color: #E05D00 !important; /* Темнее оранжевый при наведении */
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4) !important;
    }

    /* Основные стили */
    .about-section {
        padding: 80px 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .about-wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        position: relative;
        z-index: 2;
        gap: 40px;
    }

    /* Декоративные элементы */
    .eco-dots {
        position: absolute;
        top: -50px;
        left: -50px;
        z-index: -1;
    }

    .dot {
        border-radius: 50%;
        position: absolute;
        opacity: 0.15;
    }

    .dot-lg {
        width: 200px;
        height: 200px;
        background-color: var(--color);
        top: 0;
        left: 0;
    }

    .dot-md {
        width: 150px;
        height: 150px;
        background-color: var(--color);
        top: 100px;
        left: 150px;
    }

    .dot-sm {
        width: 80px;
        height: 80px;
        background-color: var(--color);
        top: 180px;
        left: 40px;
    }

    /* Контент */
    .about-content {
        flex: 1;
        min-width: 300px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-subtitle {
        display: block;
        color: #4CAF50;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
        margin-bottom: 20px;
        line-height: 1.2;
        overflow: hidden;
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .title-word {
        display: inline-block;
        opacity: 0;
        transform: translateY(100%);
        animation: titleReveal 0.8s forwards;
    }

    .title-word-1 { animation-delay: 0.1s; color: #2E7D32; }
    .title-word-2 { animation-delay: 0.3s; }
    .title-word-3 { animation-delay: 0.5s; color: #2E7D32; }

    @keyframes titleReveal {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .divider {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #4CAF50, #8BC34A);
        margin: 20px 0;
    }

    .about-text p {
        font-size: clamp(1rem, 2vw, 1.1rem);
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .lead {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        font-weight: 500;
        margin-bottom: 25px;
    }

    .highlight-word {
        background: linear-gradient(120deg, #4CAF50 0%, #8BC34A 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 700;
    }

    /* Анимация текста */
    .typing-container {
        min-height: 1.5em;
        margin-bottom: 25px;
    }

    .animated-text {
        display: inline;
        margin: 0;
        padding: 0;
    }

    .typing-text {
        color: #4CAF50;
        font-weight: 600;
        display: inline;
    }

    .typing-cursor {
        color: #4CAF50;
        animation: blink 1s step-end infinite;
        display: inline;
    }

    @keyframes blink {
        50% { opacity: 0; }
    }

    /* Особенности */
    .eco-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .feature-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(46, 125, 50, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(46, 125, 50, 0.12);
    }

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: linear-gradient(to bottom, #4CAF50, #8BC34A);
        transition: height 0.4s ease;
    }

    .feature-card:hover::before {
        height: 100%;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: rgba(76, 175, 80, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #4CAF50;
        margin-bottom: 15px;
    }

    .pulse {
        animation: pulse 2s infinite;
    }

    .rotate {
        animation: rotate 8s linear infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.08); }
        100% { transform: scale(1); }
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .counter {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        font-weight: 700;
        color: #2E7D32;
        margin-bottom: 5px;
    }

    .feature-content h4 {
        font-size: clamp(1.1rem, 2vw, 1.2rem);
        margin-bottom: 8px;
        color: #263238;
    }

    .feature-content p {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
        color: #546E7A;
        margin-bottom: 0;
    }

    /* Изображение */
    .about-image {
        flex: 1;
        min-width: 300px;
        position: relative;
    }

    .image-parallax {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .main-img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.4s ease;
    }

    .image-parallax:hover .main-img {
        transform: scale(1.03);
    }

    .image-badge {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.95);
        padding: 12px 16px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .image-badge span {
        font-size: 1.5rem;
        font-weight: 700;
        color: #2E7D32;
        display: block;
        line-height: 1;
    }

    .image-badge small {
        font-size: 0.75rem;
        color: #78909C;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .image-dots {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
        background-image: radial-gradient(#4CAF50 1.5px, transparent 1.5px);
        background-size: 15px 15px;
        opacity: 0.1;
        z-index: -1;
    }

    /* Адаптивность */
    @media (max-width: 1137px) {
        .about-wrapper {
            flex-direction: column;
            gap: 30px;
        }

        .about-content {
            order: 1;
            padding-right: 0;
        }

        .about-image {
            order: 2;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .section-title {
            justify-content: center;
            text-align: center;
        }

        .divider {
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (max-width: 768px) {
        .about-section {
            padding: 60px 0;
        }

        .eco-features {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .feature-card {
            padding: 20px;
        }

        .image-badge {
            padding: 10px 14px;
        }

        .image-badge span {
            font-size: 1.3rem;
        }
    }

    @media (max-width: 480px) {
        .section-subtitle {
            font-size: 0.75rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }

        .image-badge {
            bottom: 10px;
            right: 10px;
        }
    }

    /* Общие стили для блока */
    .work-process-section {
        position: relative;
        padding: 100px 0;
        background-color: #f8f9fa;
        overflow: hidden;
    }

    .light-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        z-index: 0;
    }

    .section-header {
        position: relative;
        margin-bottom: 3.5rem;
        z-index: 1;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        display: block;
        color: #ff6b00;
        font-weight: 600;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1rem;
    }

    .section-description {
        color: #555;
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .divider {
        height: 3px;
        width: 80px;
        background: #ff6b00;
        margin: 1.5rem auto;
    }

    /* Стили для карточек процесса */
    .process-card {
        background: white;
        border-radius: 12px;
        padding: 40px 30px;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        position: relative;
        z-index: 1;
        border: 1px solid rgba(0,0,0,0.03);
    }

    .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .step-number-wrapper {
        margin-bottom: 25px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: #ff6b00;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: bold;
        margin: 0 auto;
        position: relative;
    }

    .pulse-animation {
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
        70% { box-shadow: 0 0 0 15px rgba(255,107,0,0); }
        100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
    }

    .process-icon {
        font-size: 2.5rem;
        color: #ff6b00;
        margin-bottom: 20px;
        text-align: center;
    }

    .process-content h3 {
        font-size: 1.5rem;
        color: #333;
        margin-bottom: 15px;
        text-align: center;
        font-weight: 600;
    }

    .process-description {
        color: #555;
        font-size: 1.05rem;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: center;
    }

    .process-features {
        list-style: none;
        padding: 0;
        margin-top: 25px;
    }

    .process-features li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        color: #444;
        font-size: 1rem;
        line-height: 1.5;
    }

    .process-features i {
        color: #ff6b00;
        margin-right: 12px;
        margin-top: 3px;
        font-size: 0.9rem;
    }

    /* Адаптивность */
    @media (max-width: 992px) {
        .work-process-section {
            padding: 80px 0;
        }

        .process-card {
            padding: 30px 25px;
        }
    }

    @media (max-width: 768px) {
        .section-title {
            font-size: 2rem;
        }

        .process-card {
            margin-bottom: 30px;
        }
    }

    /* Общие стили */
    .section-header {
        position: relative;
        margin-bottom: 2.5rem;
    }
    .section-subtitle {
        display: block;
        color: #ff6b00;
        font-weight: 600;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    .gradient-text {
        background: linear-gradient(90deg, #ff6b00, #ff8f00);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    .divider {
        height: 3px;
        width: 60px;
        background: #ff6b00;
        margin: 1rem 0;
    }
    .divider-light {
        background: rgba(255,255,255,0.7);
    }

    /* Стили для блока "О компании" */
    .image-frame {
        position: relative;
        padding: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .frame-decoration {
        position: absolute;
        width: 50px;
        height: 50px;
        border: 3px solid #ff6b00;
        bottom: -15px;
        right: -15px;
        z-index: -1;
        border-radius: 5px;
    }
    .hover-zoom {
        transition: transform 0.3s ease;
    }
    .hover-zoom:hover {
        transform: scale(1.03);
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }
    .feature-item {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        color: #ff6b00;
        font-size: 1.2rem;
    }
    .btn-arrow {
        position: relative;
        padding-right: 40px;
    }
    .btn-arrow:after {
        content: '→';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }
    .btn-arrow:hover:after {
        right: 10px;
    }

    /* Стили для блока "Как мы работаем" */
    .work-process-section {
        position: relative;
        padding: 100px 0;
        overflow: hidden;
    }
    .parallax-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: 0;
    }
    .overlay-dark {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 1;
    }
    .process-steps {
        position: relative;
        z-index: 2;
    }
    .step-line {
        position: absolute;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 2px;
        background: rgba(255,255,255,0.2);
        z-index: -1;
    }
    .process-card {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 30px;
        height: 100%;
        border: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }
    .process-card:hover {
        background: rgba(255,107,0,0.1);
        border-color: rgba(255,107,0,0.3);
        transform: translateY(-10px);
    }
    .step-number {
        width: 50px;
        height: 50px;
        background: #ff6b00;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0 auto 20px;
        position: relative;
    }
    .pulse-animation {
        animation: pulse 2s infinite;
    }
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255,107,0,0.7); }
        70% { box-shadow: 0 0 0 10px rgba(255,107,0,0); }
        100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
    }
    .process-icon {
        font-size: 2rem;
        color: #ff6b00;
        margin-bottom: 15px;
    }
    .process-features {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }
    .process-features li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    .process-features i {
        color: #ff6b00;
        margin-right: 10px;
    }

    /* Общие стили */
    .section-header {
        position: relative;
        margin-bottom: 2.5rem;
    }
    .section-subtitle {
        display: block;
        color: #ff6b00;
        font-weight: 600;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    .gradient-text {
        background: linear-gradient(90deg, #ff6b00, #ff8f00);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    .divider {
        height: 3px;
        width: 60px;
        background: #ff6b00;
        margin: 1rem 0;
    }
    .divider-light {
        background: rgba(255,255,255,0.7);
    }

    /* Стили для блока "О компании" */
    .image-frame {
        position: relative;
        padding: 15px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .frame-decoration {
        position: absolute;
        width: 50px;
        height: 50px;
        border: 3px solid #ff6b00;
        bottom: -15px;
        right: -15px;
        z-index: -1;
        border-radius: 5px;
    }
    .hover-zoom {
        transition: transform 0.3s ease;
    }
    .hover-zoom:hover {
        transform: scale(1.03);
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }
    .feature-item {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        color: #ff6b00;
        font-size: 1.2rem;
    }
    .btn-arrow {
        position: relative;
        padding-right: 40px;
    }
    .btn-arrow:after {
        content: '→';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease;
    }
    .btn-arrow:hover:after {
        right: 10px;
    }

    /* Стили для блока "Как мы работаем" */
    .work-process-section {
        position: relative;
        padding: 100px 0;
        overflow: hidden;
    }
    .parallax-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: 0;
    }
    .overlay-dark {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 1;
    }
    .process-steps {
        position: relative;
        z-index: 2;
    }
    .step-line {
        position: absolute;
        top: 120px;
        left: 50%;
        transform: translateX(-50%);
        width: 70%;
        height: 2px;
        background: rgba(255,255,255,0.2);
        z-index: -1;
    }
    .process-card {
        background: rgba(255,255,255,0.1);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 30px;
        height: 100%;
        border: 1px solid rgba(255,255,255,0.1);
        transition: all 0.3s ease;
    }
    .process-card:hover {
        background: rgba(255,107,0,0.1);
        border-color: rgba(255,107,0,0.3);
        transform: translateY(-10px);
    }
    .step-number {
        width: 50px;
        height: 50px;
        background: #ff6b00;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0 auto 20px;
        position: relative;
    }
    .pulse-animation {
        animation: pulse 2s infinite;
    }
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255,107,0,0.7); }
        70% { box-shadow: 0 0 0 10px rgba(255,107,0,0); }
        100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); }
    }
    .process-icon {
        font-size: 2rem;
        color: #ff6b00;
        margin-bottom: 15px;
    }
    .process-features {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }
    .process-features li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    .process-features i {
        color: #ff6b00;
        margin-right: 10px;
    }

  /* Новый стиль для заголовков категорий */
  .category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    margin-top: 50px;
  }
  .category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e67e22;
  }


  /* --- Основные переменные и общие стили --- */
  :root {
    --green-light: #48c9b0;
    --green-dark: #16a085;
    --orange-light: #f5b041;
    --orange-dark: #e67e22;
    --dark-bg: #2c3e50;
    --light-bg: #f4f6f6;
    --text-color: #34495e;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  body {
    font-family: 'Poppins', sans-serif;
  }

  .services-section-v2 {
    padding: 100px 0;
    background-color: var(--light-bg);
  }

  .section-header .section-subtitle {
    color: var(--orange-dark);
    font-weight: 600;
    letter-spacing: 2px;
  }

  .section-header .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-bg);
  }

  .section-header .divider {
    height: 5px;
    width: 100px;
    background: linear-gradient(to right, var(--green-dark), var(--orange-dark));
    margin: 20px auto 0;
    border-radius: 5px;
  }

  /* --- Карточки услуг v2 --- */
  .service-card-v2 {
    position: relative;
    padding: 50px 30px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .service-card-v2:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  }

  /* Градиенты для карточек */
  .bg-gradient-orange {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-dark) 100%);
  }
  .bg-gradient-green {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  }

  .service-card-v2::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    opacity: 0;
  }
  .service-card-v2:hover::after {
    opacity: 1;
    transform: scale(2.5);
  }

  .service-icon-v2 {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease-in-out;
  }
  .service-card-v2:hover .service-icon-v2 {
    transform: rotateY(180deg);
  }

  .service-title-v2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  }

  .service-description-v2 {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    opacity: 0.9;
  }

  .service-features-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .service-features-v2 li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    opacity: 0.9;
  }

  .service-features-v2 i {
    margin-right: 15px;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #fff;
    animation: fadeInCheck 0.6s ease forwards;
    animation-delay: var(--li-delay, 0s);
  }
  .service-features-v2 li:nth-child(1) i { --li-delay: 0.1s; }
  .service-features-v2 li:nth-child(2) i { --li-delay: 0.2s; }
  .service-features-v2 li:nth-child(3) i { --li-delay: 0.3s; }

  /* --- Анимации --- */
  @keyframes fadeInCheck {
    from {
      opacity: 0;
      transform: scale(0.5);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* --- Адаптивность --- */
  @media (max-width: 992px) {
    .services-section-v2 {
      padding: 80px 0;
    }
    .service-card-v2 {
      padding: 40px 25px;
    }
    .service-title-v2 {
      font-size: 1.6rem;
    }
    .service-icon-v2 {
      width: 80px;
      height: 80px;
      font-size: 2.2rem;
    }
  }

  @media (max-width: 768px) {
    .services-section-v2 {
      padding: 60px 0;
    }
    .section-header .section-title {
      font-size: 2.2rem;
    }
    .service-card-v2 {
      padding: 30px 20px;
    }
    .service-title-v2 {
      font-size: 1.4rem;
    }
    .service-icon-v2 {
      width: 70px;
      height: 70px;
      font-size: 2rem;
    }
  }

  @media (max-width: 576px) {
    .services-section-v2 {
      padding: 40px 0;
    }
  }


     .benefits-section-modern {
         position: relative;
         background-color: #f4f6f8; /* Очень светлый серый */
         overflow: hidden;
         padding: 120px 0;
     }

     .section-subtitle-modern {
         display: inline-block;
         font-size: 0.9rem;
         font-weight: 700;
         text-transform: uppercase;
         letter-spacing: 0.15em;
         color: #007bff; /* Современный синий */
         margin-bottom: 1rem;
         position: relative;
         opacity: 0.8;
     }

     .section-title-modern {
         font-weight: 900;
         color: #2c3e50; /* Темно-синий */
         font-size: 2.5rem;
         position: relative;
     }

     .lead-modern {
         color: #555e64;
         line-height: 1.7;
         max-width: 650px;
         margin: 0 auto 40px;
         font-size: 1.1rem;
     }

     .divider-modern {
         width: 60px;
         height: 3px;
         background-color: #007bff;
         margin: 25px auto;
         border-radius: 5px;
     }

     /* Современные карточки преимуществ */
     .benefit-card-modern {
         background: #fff;
         border-radius: 15px;
         box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
         transition: transform 0.3s ease-in-out;
         overflow: hidden;
         border: 1px solid #e0e6ed;
     }

     .benefit-card-modern:hover {
         transform: translateY(-8px);
         box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
     }

     .benefit-icon-modern {
         width: 70px;
         height: 70px;
         margin: 0 auto 25px;
         display: flex;
         align-items: center;
         justify-content: center;
         background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%); /* Зеленый градиент для иконок */
         border-radius: 15px;
         color: #fff;
         font-size: 2rem;
         box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
         transition: background 0.3s ease;
     }

     .benefit-card-modern:hover .benefit-icon-modern {
         background: linear-gradient(135deg, #0084ff 0%, #0059b3 100%); /* Синий градиент при наведении */
     }

     .benefit-icon-modern svg {
         width: 35px;
         height: 35px;
     }

     .card-title-modern {
         font-size: 1.3rem;
         font-weight: 700;
         margin-bottom: 1rem;
         color: #2c3e50;
         transition: color 0.3s ease;
     }

     .benefit-card-modern:hover .card-title-modern {
         color: #007bff;
     }

     .card-text-modern {
         color: #555e64;
         font-size: 0.95rem;
         line-height: 1.6;
     }

     /* Уникальный эффект overlay */
     .overlay-modern {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: linear-gradient(45deg, rgba(0, 132, 255, 0.1) 0%, rgba(46, 125, 50, 0.1) 100%);
         opacity: 0;
         transition: opacity 0.3s ease-in-out;
         border-radius: 15px;
     }

     .benefit-card-modern:hover .overlay-modern {
         opacity: 1;
     }

     /* Адаптивность */
     @media (max-width: 991.98px) {
         .benefit-card-modern {
             margin-bottom: 30px;
         }
     }

     @media (max-width: 767.98px) {
         .benefits-section-modern {
             padding: 80px 0;
         }
         .section-title-modern {
             font-size: 2rem;
         }
         .benefit-card-modern {
             padding: 30px;
         }
         .card-title-modern {
             font-size: 1.2rem;
         }
         .benefit-icon-modern {
             width: 60px;
             height: 60px;
             margin-bottom: 20px;
         }
         .benefit-icon-modern svg {
             width: 30px;
             height: 30px;
         }
     }

  /* Стили для ошибок */
  .error-text {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    padding: 5px 10px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 4px;
    display: none;
    animation: fadeIn 0.3s ease;
  }

  .input-wrapper.error input,
  .input-wrapper.error textarea {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
    animation: shake 0.5s;
  }

  .input-wrapper.error .input-icon {
    color: #dc3545;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
  }

  /* Остальные стили остаются без изменений */




  /* Стили для улучшенного блока контактов */
  .contact-card {
    position: relative;
    overflow: visible;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .contact-card-header {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .contact-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.3), transparent);
  }

  .contact-wave-decoration {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .wave {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
    border-radius: 3px;
    opacity: 0.7;
  }

  .wave:nth-child(1) {
    width: 30px;
  }
  .wave:nth-child(2) {
    width: 20px;
  }
  .wave:nth-child(3) {
    width: 10px;
  }

  .contact-icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
  }

  .contact-icon-bg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .icon-ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.2;
    z-index: 1;
    animation: ripple 2s infinite ease-out;
  }

  @keyframes ripple {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    position: relative;
    transition: all 0.3s ease;
  }

  .contact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 70px;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
  }

  .contact-item:hover {
    transform: translateX(5px);
  }

  .contact-item:hover .contact-icon-bg {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
  }

  .contact-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .map-link, .phone-link, .email-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5px;
  }

  .map-link i, .phone-link i, .email-link i {
    margin-left: 5px;
    font-size: 0.7rem;
  }

  .map-link:hover, .phone-link:hover, .email-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
  }

  .call-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  .call-option {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
  }

  .call-option.whatsapp {
    background-color: #25D366;
  }

  .call-option.telegram {
    background-color: #0088cc;
  }

  .call-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .email-actions {
    margin-top: 10px;
  }

  .email-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .email-action:hover {
    color: var(--primary-color);
  }

  .contact-hours {
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 20px 0;
    background: rgba(67, 97, 238, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
  }

  .hours-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .hours-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
  }

  .hours-info p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 3px 0;
  }

  .social-links-container {
    margin-top: 30px;
  }

  .social-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
  }

  .social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: white;
    font-size: 1.2rem;
  }

  .social-name {
    font-size: 0.75rem;
    color: var(--text-medium);
    text-align: center;
  }

  .social-card.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }

  .social-card.vk {
    background: linear-gradient(45deg, #4a76a8, #5d88b3);
  }

  .social-card.youtube {
    background: linear-gradient(45deg, #c4302b, #ff0000);
  }

  .social-card.telegram {
    background: linear-gradient(45deg, #0088cc, #34aadc);
  }

  @media (max-width: 768px) {
    .contact-item {
      padding: 15px 0;
    }

    .contact-icon-wrapper {
      width: 40px;
      height: 40px;
      margin-right: 15px;
    }

    .call-options {
      flex-direction: column;
      gap: 5px;
    }

    .social-links-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* Стили для сообщений об ошибках */
  .error-text {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    padding: 5px 10px;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 4px;
    display: inline-block;
    animation: fadeIn 0.3s ease;
  }

  .input-wrapper.error input,
  .input-wrapper.error textarea {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
  }

  .input-wrapper.error .input-icon {
    color: #dc3545;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Стили для успешного сообщения */
  .success-message-container {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    border-left: 4px solid #4BB543;
    animation: slideIn 0.5s ease;
  }

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

  .success-animation {
    margin-right: 20px;
    flex-shrink: 0;
  }

  .success-text h4 {
    color: #2b2d42;
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .success-text p {
    color: #4a4e69;
    font-size: 0.95rem;
    margin: 0;
  }

  .close-success {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #8e9aaf;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .close-success:hover {
    color: #dc3545;
  }

  /* Анимация галочки */
  .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #4BB543;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4BB543;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  }

  .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #4BB543;
    fill: none;
    animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }

  .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
  }

  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }

  @keyframes scale {
    0%, 100% {
      transform: none;
    }
    50% {
      transform: scale3d(1.1, 1.1, 1);
    }
  }

  @keyframes fill {
    100% {
      box-shadow: inset 0px 0px 0px 30px rgba(75, 181, 67, 0.1);
    }
  }


  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
    .privacy-policy {
  margin: 20px 0;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.4;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: rgba(67, 97, 238, 0.05);
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
  background-color: rgba(67, 97, 238, 0.1);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.policy-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.policy-link:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.policy-link:hover {
  color: var(--primary-dark);
}

.policy-link:hover:after {
  width: 100%;
}
  :root {
    --primary-color: #4361ee;
    --primary-dark: #3a0ca3;
    --primary-light: #4895ef;
    --secondary-color: #f72585;
    --text-dark: #2b2d42;
    --text-medium: #4a4e69;
    --text-light: #8e9aaf;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .contact-section {
    background-color: var(--bg-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .contact-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(67, 97, 238, 0) 70%);
    opacity: 0.3;
    z-index: 0;
  }

  .contact-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-color) 0%, rgba(247, 37, 133, 0) 70%);
    opacity: 0.2;
    z-index: 0;
  }

  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
  }

  .contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
  }

  .contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
  }

  .contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
  }

  .divider-line {
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.4s ease;
  }

  .divider-dot {
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin: 0 20px;
    position: relative;
  }

  .divider-dot::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.7; }
    70% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(0.8); opacity: 0.7; }
  }

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

  .contact-form-wrapper,
  .contact-info-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
  }

  .card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }

  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }

  .form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    position: relative;
  }

  .form-decoration {
    display: flex;
    gap: 8px;
  }

  .decoration-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: var(--transition);
  }

  .decoration-circle:nth-child(1) {
    background-color: var(--primary-color);
  }

  .decoration-circle:nth-child(2) {
    background-color: var(--secondary-color);
  }

  .decoration-circle:nth-child(3) {
    background-color: #4cc9f0;
  }

  .card:hover .decoration-circle:nth-child(1) {
    transform: translateY(-5px);
  }

  .card:hover .decoration-circle:nth-child(2) {
    transform: translateY(5px);
  }

  .card:hover .decoration-circle:nth-child(3) {
    transform: translateY(-5px);
  }

  .floating-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .form-group {
    position: relative;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
  }

  .input-wrapper {
    position: relative;
  }

  .input-wrapper input,
  .input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 40px;
    border: none;
    border-radius: 8px;
    background-color: rgba(67, 97, 238, 0.05);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-dark);
  }

  .input-wrapper input:focus,
  .input-wrapper textarea:focus {
    outline: none;
    background-color: rgba(67, 97, 238, 0.1);
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
  }

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

  .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: var(--transition);
  }

  .input-wrapper input:focus ~ .input-icon,
  .input-wrapper textarea:focus ~ .input-icon {
    color: var(--secondary-color);
  }

  .input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .form-group.focused .input-underline {
    transform: scaleX(1);
  }

  .form-footer {
    margin-top: 20px;
    position: relative;
  }

  .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.5);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  }

  .submit-btn:active {
    transform: translateY(0);
  }

  .btn-text {
    position: relative;
    z-index: 1;
  }

  .btn-icon {
    position: relative;
    z-index: 1;
    transition: var(--transition);
  }

  .submit-btn:hover .btn-icon {
    transform: translateX(5px);
  }

  .btn-loader {
    position: absolute;
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: var(--transition);
  }

  .loader-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out;
  }

  .loader-dot:nth-child(1) {
    animation-delay: -0.32s;
  }

  .loader-dot:nth-child(2) {
    animation-delay: -0.16s;
  }

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

  .submit-btn.loading .btn-text,
  .submit-btn.loading .btn-icon {
    transform: translateY(30px);
    opacity: 0;
  }

  .submit-btn.loading .btn-loader {
    opacity: 1;
  }

  .form-success {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-white);
    border-radius: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4BB543;
    font-weight: 600;
    animation: fadeIn 0.5s ease;
  }

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

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

  .contact-item {
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
  }

  .contact-item:hover {
    transform: translateX(5px);
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    position: relative;
  }

  .pulse-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  .contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
  }

  .contact-text p,
  .contact-text a {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-text a:hover {
    color: var(--primary-color);
  }

  .social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
  }

  .hover-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
  }

  .social-link:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
  }

  .social-link:hover::before {
    left: 100%;
  }

  .form-success-message {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #4BB543;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
  }

  .form-success-message.show {
    opacity: 1;
    transform: translateY(0);
  }

  .error-text {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
  }

  @media (max-width: 992px) {
    .contact-content {
      flex-direction: column;
      align-items: center;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
      width: 100%;
      max-width: 600px;
    }
  }

  @media (max-width: 768px) {
    .contact-section {
      padding: 70px 0;
    }

    .contact-title {
      font-size: 2.2rem;
    }

    .contact-subtitle {
      font-size: 1.1rem;
    }

    .card {
      padding: 30px;
    }

    .form-title {
      font-size: 1.6rem;
    }
  }

  @media (max-width: 576px) {
    .contact-header {
      margin-bottom: 50px;
    }

    .card {
      padding: 25px;
    }

    .input-wrapper input,
    .input-wrapper textarea {
      padding: 12px 12px 12px 40px;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
      margin-right: 15px;
    }

    .submit-btn {
      padding: 14px;
      font-size: 1rem;
    }
  }


/* Добавляем анимацию встряски */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-5px); }
    40%, 80% { transform: translateX(5px); }
}

/* Дополнительные стили для сообщения об ошибке чекбокса */
.privacy-policy .error-text {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 8px;
    animation: fadeIn 0.3s ease;
}

.checkbox-container {
    transition: all 0.3s ease;
}


.contact-block {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-phone {
  color: var(--gray);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-phone i {
  color: var(--primary-light);
}

.contact-phone a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-phone a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

.write-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.write-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-light), var(--primary));
  transition: left 0.3s ease;
}

.write-button:hover:before {
  left: 0;
}

.write-button span {
  position: relative;
  z-index: 2;
}

.message-icon {
  width: 18px;
  height: 18px;
  fill: white;
  position: relative;
  z-index: 2;
}

.write-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}
:root {
  --primary: #4f46e5;
  --primary-light: #6366f1;
  --secondary: #10b981;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #94a3b8;
}

.site-footer {
  position: relative;
  background-color: var(--dark);
  color: var(--light);
  padding: 5rem 0 2rem;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.underline-anim {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.footer-heading:hover .underline-anim {
  width: 100%;
}

.footer-text {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-text i {
  margin-right: 8px;
  color: var(--primary-light);
  width: 16px;
  text-align: center;
}

.footer-logo svg {
  width: 120px;
  height: auto;
  margin-top: 1rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.link-hover {
  color: var(--gray);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.link-hover:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-light);
  transition: width 0.3s ease;
}

.link-hover:hover {
  color: white;
}

.link-hover:hover:before {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gray);
  transition: fill 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.social-icon:hover svg {
  fill: white;
}

.newsletter-form {
  margin-top: 1.5rem;
}

.input-group {
  position: relative;
  display: flex;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-radius: 6px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.newsletter-button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.newsletter-button span {
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.newsletter-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-light), var(--primary));
  transition: left 0.3s ease;
}

.newsletter-button:hover:before {
  left: 0;
}

.send-icon {
  width: 18px;
  height: 18px;
  fill: white;
  position: relative;
  z-index: 2;
}

.footer-payment {
  margin-top: 2rem;
}

.footer-payment p {
  color: var(--gray);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.payment-icons {
  display: flex;
  gap: 1rem;
}

.payment-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
  color: var(--gray);
  margin: 0;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.legal-link {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: white;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(79, 70, 229, 0) 70%);
  z-index: 1;
}

.footer-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.footer-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

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

/* Responsive */
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }

  .footer-legal {
    margin-top: 0;
  }
}

#year {
  font-weight: 600;
}

