/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --primary-hover: #0052cc;
    --primary-gradient: linear-gradient(90deg, #0066ff, #00c6ff);
    --secondary-color: #00cc66;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Градиент для синего текста */
.text-primary-gradient {
    background-image: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    padding-top: 70px; /* Отступ для фиксированного меню */
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 204, 102, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(102, 126, 234, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(118, 75, 162, 0.02) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='150' height='150' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='neural' x='0' y='0' width='150' height='150' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='25' cy='25' r='2' fill='%230066ff' opacity='0.12'/%3E%3Ccircle cx='75' cy='35' r='2' fill='%2300cc66' opacity='0.12'/%3E%3Ccircle cx='120' cy='30' r='2' fill='%23667eea' opacity='0.12'/%3E%3Ccircle cx='40' cy='75' r='2' fill='%23764ba2' opacity='0.12'/%3E%3Ccircle cx='100' cy='90' r='2' fill='%230066ff' opacity='0.12'/%3E%3Ccircle cx='60' cy='110' r='2' fill='%2300cc66' opacity='0.12'/%3E%3Ccircle cx='130' cy='125' r='2' fill='%23667eea' opacity='0.12'/%3E%3Ccircle cx='15' cy='80' r='1.5' fill='%230066ff' opacity='0.1'/%3E%3Ccircle cx='90' cy='15' r='1.5' fill='%2300cc66' opacity='0.1'/%3E%3Cline x1='25' y1='25' x2='75' y2='35' stroke='%230066ff' stroke-width='0.6' opacity='0.1'/%3E%3Cline x1='75' y1='35' x2='120' y2='30' stroke='%2300cc66' stroke-width='0.6' opacity='0.1'/%3E%3Cline x1='40' y1='75' x2='75' y2='35' stroke='%23667eea' stroke-width='0.6' opacity='0.1'/%3E%3Cline x1='100' y1='90' x2='75' y2='35' stroke='%23764ba2' stroke-width='0.6' opacity='0.1'/%3E%3Cline x1='60' y1='110' x2='100' y2='90' stroke='%230066ff' stroke-width='0.6' opacity='0.1'/%3E%3Cline x1='130' y1='125' x2='100' y2='90' stroke='%2300cc66' stroke-width='0.6' opacity='0.1'/%3E%3Cline x1='15' y1='80' x2='40' y2='75' stroke='%230066ff' stroke-width='0.5' opacity='0.08'/%3E%3Cline x1='90' y1='15' x2='75' y2='35' stroke='%2300cc66' stroke-width='0.5' opacity='0.08'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='150' height='150' fill='url(%23neural)'/%3E%3C/svg%3E");
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 300px 300px;
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle 1000px at 5% 15%, rgba(0, 102, 255, 0.05) 0%, transparent 60%),
        radial-gradient(circle 900px at 95% 85%, rgba(0, 204, 102, 0.05) 0%, transparent 60%),
        radial-gradient(circle 700px at 50% 50%, rgba(102, 126, 234, 0.04) 0%, transparent 60%),
        radial-gradient(circle 600px at 25% 75%, rgba(118, 75, 162, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 2;
}

section {
    position: relative;
    z-index: 2;
}

/* Темные секции поверх нейросетей */
.hero,
.final-cta {
    z-index: 3;
}

/* Светлые секции - нейросети должны быть видны через фон */
.social-proof,
.problem,
.solution,
.features,
.use-cases,
.testimonials,
.pricing,
.trust,
.faq {
    position: relative;
    z-index: 2;
    /* Фон через псевдоэлемент с меньшим z-index */
    background-color: transparent;
}

/* Фон светлых секций через псевдоэлемент */
.social-proof::before,
.problem::before,
.solution::before,
.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.social-proof::before {
    background-color: transparent;
}

.problem::before {
    background-color: transparent;
}

.solution::before {
    background-color: transparent;
}

.faq::before {
    background-color: transparent;
}

/* Контент внутри секций должен быть выше нейросетей */
section .container {
    position: relative;
    z-index: 3;
}

/* Контент внутри всех секций должен быть выше нейросетей */
section .container {
    position: relative;
    z-index: 3;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000; /* Высокий z-index для мобильного меню */
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: relative;
    padding-right: 1rem;
    margin-right: 1.5rem;
    align-items: center;
}

.logo-section--product {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    margin-right: 1rem;
}

.nav-home-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-home-link:hover {
    color: var(--primary-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}


.logo,
.proof-number,
.problem-result .result-question,
.problem-confirmation h3,
.problem-confirmation li:before,
.step li:before,
.comparison-item.highlight,
.testimonial-result,
.price,
.objection-item h3,
.faq-toggle,
.slogan-text-alt {
    background-image: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-menu li {
    margin: 0;
    white-space: nowrap;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    font-size: 1rem;
    white-space: nowrap;
    display: inline-block;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu .btn:hover {
    color: white !important;
}

.nav-menu .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    margin: 0;
    white-space: nowrap;
    color: white !important;
}

/* Выпадающий список "Варианты" */
.nav-dropdown {
    position: relative;
}

/* На десктопе скрываем мобильные элементы */
.nav-variants-label {
    display: none;
}

.nav-mobile-variants {
    display: none;
}

/* На десктопе показываем кликабельную ссылку */
.nav-variants-link {
    display: inline-block;
}

.nav-dropdown-toggle {
    cursor: pointer;
    position: relative;
    padding-right: 1.5rem !important;
}

/* Убеждаемся, что на десктопе выпадающий список работает */
.nav-dropdown .nav-variants-link.nav-dropdown-toggle {
    display: inline-block;
}

.nav-dropdown:hover .nav-variants-link.nav-dropdown-toggle::after,
.nav-dropdown.active .nav-variants-link.nav-dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Убеждаемся, что на десктопе выпадающий список работает */
.nav-dropdown .nav-variants-link {
    display: inline-block;
}

.nav-dropdown-toggle::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.active .nav-dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
    pointer-events: none;
    display: block !important; /* На десктопе всегда показываем структуру */
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Убираем промежуток между кнопкой и меню */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 0.5rem;
}

.nav-dropdown-menu li {
    margin: 0;
    width: 100%;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-bottom: none !important;
    width: 100%;
}

.nav-dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.nav-dropdown-menu--products {
    min-width: 320px;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10002 !important; /* Выше других элементов */
    position: relative !important;
    -webkit-tap-highlight-color: transparent; /* Убираем подсветку при клике на мобильных */
    pointer-events: auto !important; /* Гарантируем, что кнопка кликабельна */
    min-width: 44px; /* Минимальный размер для удобного нажатия */
    min-height: 44px; /* Минимальный размер для удобного нажатия */
    align-items: center;
    justify-content: center;
    touch-action: manipulation; /* Улучшаем отклик на касания */
    -webkit-user-select: none;
    user-select: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .logo-section {
        gap: 0.6rem;
        padding-right: 0.75rem;
        margin-right: 1rem;
    }

    .logo-section--product {
        gap: 0.75rem;
    }

    .nav-home-link {
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 42px;
    }
    
    
    .mobile-menu-toggle {
        display: flex !important; /* Показываем кнопку гамбургер-меню */
        pointer-events: auto !important; /* Гарантируем кликабельность */
        z-index: 10002 !important; /* Выше всех элементов */
        position: relative !important;
    }
    
    .header {
        z-index: 10001;
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%; /* Скрыто по умолчанию */
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 10000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0; /* Показываем при клике */
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        font-size: 1rem;
    }
    
    .nav-menu .btn {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    /* Выпадающий список в мобильной версии */
    .nav-dropdown {
        width: 100%;
        position: relative;
    }
    
    /* Скрываем выпадающий список на мобильных */
    .nav-dropdown-menu {
        display: none !important;
    }
    
    /* Скрываем кликабельную ссылку "Варианты" на мобильных */
    .nav-variants-link {
        display: none !important;
    }
    
    /* Показываем некликабельный текст "Варианты" на мобильных */
    .nav-variants-label {
        display: block !important;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-dark);
        font-weight: 500;
        cursor: default;
        pointer-events: none;
    }
    
    /* Показываем мобильные ссылки */
    .nav-mobile-variants {
        display: block !important;
        padding-left: 1.5rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .nav-mobile-link {
        display: block;
        padding: 0.75rem 0;
        color: #666 !important;
        text-decoration: none;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-mobile-link:last-child {
        border-bottom: none;
    }
    
    .nav-mobile-link:hover {
        color: var(--primary-color) !important;
    }
    
    /* Затемнение фона при открытом меню */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        pointer-events: auto;
    }
}

/* Отступ для body, чтобы контент не перекрывался меню */
body {
    padding-top: 70px;
}

/* Улучшение меню на средних экранах */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.25rem;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
    }
    
    .nav-menu .btn {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
}

/* Контент внутри светлых секций должен быть выше нейросетей */
.problem .container,
.solution .container,
.features .container,
.use-cases .container,
.testimonials .container,
.pricing .container,
.trust .container,
.faq .container,
.social-proof .container {
    position: relative;
    z-index: 3;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    display: block;
    filter: brightness(1);
}

/* Убеждаемся, что видео покрывает всю область даже при разных пропорциях */
@media (min-aspect-ratio: 16/9) {
    .hero-video {
        width: 100%;
        height: auto;
        min-height: 100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video {
        width: auto;
        min-width: 100%;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .hero-video {
        opacity: 0.7;
        object-fit: cover;
        object-position: 50% 50% !important; /* Центральная часть видео (50% по горизонтали, 50% по вертикали) */
        filter: brightness(1.2);
    }
    
    /* Для HR страницы - показываем центральную часть видео (как на странице Менеджер) */
    body.hr-page .hero-video {
        object-position: 50% 50% !important; /* Центральная часть видео */
    }
    
    /* Переопределяем медиа-запросы для aspect-ratio на мобильных, чтобы показывать центральную часть */
    @media (min-aspect-ratio: 16/9) {
        .hero-video {
            width: 100%;
            height: auto;
            min-height: 100%;
            object-position: 50% 50% !important; /* Центральная часть */
        }
        
        /* Для HR страницы - центральная часть */
        body.hr-page .hero-video {
            object-position: 50% 50% !important; /* Центральная часть видео */
        }
    }
    
    @media (max-aspect-ratio: 16/9) {
        .hero-video {
            width: auto;
            min-width: 100%;
            height: 100%;
            object-position: 50% 50% !important; /* Центральная часть */
            left: 50% !important; /* Смещаем видео влево на 50% его ширины */
            transform: translateX(-50%) !important; /* Центрируем видео */
        }
        
        /* Для HR страницы - центральная часть */
        body.hr-page .hero-video {
            object-position: 50% 50% !important; /* Центральная часть видео */
            left: 50% !important;
            transform: translateX(-50%) !important;
        }
    }
    
    /* Уменьшаем затемнение overlay на мобильных */
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 100%);
    }
}

@media (max-width: 480px) {
    .hero-video {
        opacity: 0.75;
        object-fit: cover;
        object-position: 50% 50% !important; /* Центральная часть видео */
        filter: brightness(1.3);
    }
    
    /* Для HR страницы - показываем центральную часть видео (как на странице Менеджер) */
    body.hr-page .hero-video {
        object-position: 50% 50% !important; /* Центральная часть видео */
    }
    
    /* Переопределяем медиа-запросы для aspect-ratio на мобильных */
    @media (min-aspect-ratio: 16/9) {
        .hero-video {
            width: 100%;
            height: auto;
            min-height: 100%;
            object-position: 50% 50% !important; /* Центральная часть */
        }
        
        /* Для HR страницы - центральная часть */
        body.hr-page .hero-video {
            object-position: 50% 50% !important; /* Центральная часть видео */
        }
    }
    
    @media (max-aspect-ratio: 16/9) {
        .hero-video {
            width: auto;
            min-width: 100%;
            height: 100%;
            object-position: 50% 50% !important; /* Центральная часть */
            left: 50% !important; /* Смещаем видео влево на 50% его ширины */
            transform: translateX(-50%) !important; /* Центрируем видео */
        }
        
        /* Для HR страницы - центральная часть */
        body.hr-page .hero-video {
            object-position: 50% 50% !important; /* Центральная часть видео */
            left: 50% !important;
            transform: translateX(-50%) !important;
        }
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.45) 100%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f5f5f5;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85);
}

.hero-cta {
    margin-top: 2rem;
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Social Proof Section */
.social-proof {
    padding: 24px 0;
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.social-proof .container {
    position: relative;
    z-index: 3;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.proof-item {
    padding: 1rem 0;
}

.proof-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.proof-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Компактная версия для мобильных */
@media (max-width: 768px) {
    .social-proof {
        padding: 10px 0; /* Минимальные отступы секции */
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки вместо вертикального списка */
        gap: 0.5rem; /* Минимальные отступы между элементами */
    }
    
    /* Третий элемент (во второй строке) выравниваем по центру */
    .proof-item:nth-child(3) {
        grid-column: 1 / -1; /* Занимает обе колонки */
        justify-self: center; /* Выравниваем по центру */
        max-width: 50%; /* Ограничиваем ширину, чтобы не растягивался */
    }
    
    .proof-item {
        padding: 0.25rem 0; /* Минимальные внутренние отступы */
    }
    
    .proof-number {
        font-size: 1.4rem; /* Уменьшаем размер цифр */
        margin-bottom: 0.15rem;
        line-height: 1.1;
    }
    
    .proof-text {
        font-size: 0.75rem; /* Уменьшаем размер текста */
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .social-proof {
        padding: 8px 0; /* Минимальные отступы на маленьких экранах */
    }
    
    .proof-grid {
        gap: 0.4rem; /* Еще меньше отступы */
    }
    
    .proof-item {
        padding: 0.2rem 0; /* Минимальные отступы */
    }
    
    .proof-number {
        font-size: 1.2rem; /* Еще меньше размер цифр */
        margin-bottom: 0.1rem;
        line-height: 1.1;
    }
    
    .proof-text {
        font-size: 0.7rem; /* Еще меньше размер текста */
        line-height: 1.2;
    }
}

/* Problem Section */
.problem {
    padding: 40px 0;
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 0;
    pointer-events: none;
}

.problem .container {
    position: relative;
    z-index: 3;
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .problem-list {
        grid-template-columns: 1fr;
    }
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.problem-item div {
    font-size: 1.1rem;
    line-height: 1.6;
}

.problem-item div strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.problem-item div p {
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.problem-icon {
    font-size: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.problem-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
    background-color: transparent;
    mix-blend-mode: multiply;
}

@media (max-width: 768px) {
    .problem-icon img {
        width: 80px;
        height: 80px;
    }
}

.problem-result {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 3rem;
    position: relative;
}

.problem-result .result-question {
    color: var(--primary-color);
    font-weight: 700;
}

.problem-result::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -1.6rem;
    width: 18px;
    height: 18px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: translateX(-50%) rotate(45deg);
    opacity: 0.9;
}

.problem-confirmation {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.problem-confirmation h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 800;
    text-shadow: none;
}

.problem-confirmation ul {
    list-style: none;
    padding-left: 0;
}

.problem-confirmation li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.problem-confirmation li:before {
    content: "→";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

/* Solution Section */
.solution {
    padding: 40px 0;
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 0;
    pointer-events: none;
}

.solution .container {
    position: relative;
    z-index: 3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

/* ==================== ПАРАМЕТРЫ ОЦЕНКИ ЗВОНКОВ ==================== */
.evaluation-params {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.evaluation-params .container {
    max-width: 1400px;
}

.params-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.param-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.param-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.param-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.param-card:hover::before {
    transform: scaleX(1);
}

.param-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.param-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.param-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.param-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    margin-top: 0.75rem;
}

.param-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.15rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-align: left;
}

.param-tag::before {
    content: "✓";
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 0.9rem;
    min-width: 16px;
}

@media (max-width: 1024px) {
    .params-grid {
        gap: 1.5rem;
    }
    
    .param-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .params-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .param-card {
        padding: 2rem 1.5rem;
    }
    
    .param-icon {
        width: 80px;
        height: 80px;
    }
}
/* ==================== END ПАРАМЕТРЫ ОЦЕНКИ ==================== */

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Первые 3 элемента занимают по 2 колонки */
.solution-feature-item:nth-child(1),
.solution-feature-item:nth-child(2),
.solution-feature-item:nth-child(3) {
    grid-column: span 2;
}

/* Последние 2 элемента занимают по 3 колонки и центрированы */
.solution-feature-item:nth-child(4) {
    grid-column: 1 / 4;
}

.solution-feature-item:nth-child(5) {
    grid-column: 4 / 7;
}

.solution-feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.solution-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.solution-feature-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-feature-icon img {
    max-width: 90px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.solution-feature-item p {
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    font-size: 1.15rem;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 1200px) {
    .solution-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solution-feature-item:nth-child(1),
    .solution-feature-item:nth-child(2),
    .solution-feature-item:nth-child(3),
    .solution-feature-item:nth-child(4),
    .solution-feature-item:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .solution-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .solution-feature-item {
        padding: 1.25rem;
    }
    
    .solution-feature-item:nth-child(4),
    .solution-feature-item:nth-child(5) {
        grid-column: auto;
    }
    
    .solution-feature-item p {
        font-size: 1rem;
    }
    
    .solution-feature-icon img {
        max-width: 70px;
        max-height: 70px;
    }
}

@media (max-width: 480px) {
    .solution-features-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-feature-icon img {
        max-width: 60px;
        max-height: 60px;
    }
    
    .solution-feature-item p {
        font-size: 0.95rem;
    }
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 40px 0;
}

/* HR Process Steps - стиль трёх панелей */
.hr-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    position: relative;
    padding: 3rem 0 2rem 0;
    overflow: visible;
}

.hr-process-step {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
}

.hr-process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.15);
}

.hr-step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    z-index: 10;
    visibility: visible !important;
    opacity: 1 !important;
}

.hr-step-content {
    margin-top: 1rem;
}

.hr-step-content h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.hr-step-subtitle {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.5;
}

.hr-step-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.hr-step-list li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.hr-step-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.hr-step-note {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
}

/* Стрелки между шагами (как на странице менеджера) */
@media (min-width: 992px) {
    .hr-process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -35px;
        width: 60px;
        height: 2px;
        background: var(--primary-gradient);
        transform: translateY(-50%);
        z-index: 1;
    }

    .hr-process-step:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 50%;
        right: -35px;
        width: 10px;
        height: 10px;
        border-right: 2px solid #00c6ff;
        border-top: 2px solid #00c6ff;
        transform: translate(22px, -50%) rotate(45deg);
        z-index: 1;
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    .hr-process-steps {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hr-process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
    }
    
    .hr-process-steps::before,
    .hr-process-steps::after {
        display: none;
    }
    
    .hr-step-number {
        top: -30px;
        left: 30px;
        transform: none;
        color: white !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
    }
    
    .hr-step-content h3 {
        text-align: left;
        margin-top: 0;
    }
    
    .hr-step-subtitle {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hr-process-step {
        padding: 1.5rem 1.25rem;
    }
    
    .hr-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: -25px;
        left: 20px;
        color: white !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
    }
    
    .hr-step-content h3 {
        font-size: 1.1rem;
    }
    
    .hr-step-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step {
    position: relative;
    padding: 1.75rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.2);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.step h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.step-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    margin-left: 76px;
}

.step-content {
    margin-left: 76px;
}

.step-content > p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 1.5rem;
}

.step li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
}

.step li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
}

.step-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    white-space: pre-line;
}

/* Стрелка вниз между шагами */
.step-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
}

.step-arrow::before {
    content: '';
    width: 2px;
    height: 30px;
    background: var(--primary-gradient);
}

.step-arrow::after {
    content: '';
    position: absolute;
    bottom: 5px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--primary-color);
}

@media (max-width: 768px) {
    .step {
        padding: 2rem 1.5rem;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }
    
    .step h3 {
        font-size: 1.25rem;
    }
    
    .step-subtitle,
    .step-content {
        margin-left: 0;
    }
    
    .step ul {
        grid-template-columns: 1fr;
    }
    
    .step-arrow::before {
        height: 20px;
    }
    
    .step-arrow::after {
        bottom: 6px;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid var(--primary-color);
    }
}

/* Advantages Section */
.advantages {
    padding: 40px 0;
    background-color: transparent;
}

/* ==================== ПОЧЕМУ ВЫБИРАЮТ НАС (компактный) ==================== */
.why-us {
    padding: 60px 0;
    background: transparent;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.why-us-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.15);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-us-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.why-us-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-us-item:nth-child(4),
    .why-us-item:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .why-us-item {
        padding: 1.25rem 1rem;
    }
    
    .why-us-icon {
        width: 50px;
        height: 50px;
    }
    
    .why-us-content h3 {
        font-size: 1rem;
    }
    
    .why-us-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        padding: 1rem;
    }
    
    .why-us-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        margin-bottom: 0;
    }
    
    .why-us-content h3 {
        margin-bottom: 0.25rem;
    }
}
/* ==================== END ПОЧЕМУ ВЫБИРАЮТ НАС ==================== */

/* Увеличиваем размер заголовка секции advantages на мобильных для 2 строк */
@media (max-width: 768px) {
    .advantages .section-title {
        font-size: 2.2rem; /* Увеличиваем размер для 2 строк */
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .advantages .section-title {
        font-size: 1.9rem; /* Увеличиваем размер для 2 строк на маленьких экранах */
        line-height: 1.2;
    }
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 1.5rem;
}

/* Первый блок преимуществ — на всю ширину */
.advantages-list .advantage-item:first-child {
    grid-column: 1 / -1;
    max-width: 960px; /* делаем карточку уже */
    margin-left: auto;
    margin-right: auto; /* выравниваем по центру */
}

/* HR Capabilities - все в одну строку */
.hr-capabilities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hr-capabilities-list .advantage-item {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
    padding: 1.5rem;
}

.hr-capabilities-list .advantage-item h3 {
    text-align: center;
}

.hr-capabilities-list .advantage-item p {
    text-align: left;
}

.hr-capabilities-list .advantage-item ul {
    text-align: left;
}

/* Адаптивность для HR Capabilities */
@media (max-width: 1200px) {
    .hr-capabilities-list {
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .hr-capabilities-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hr-capabilities-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hr-capabilities-list .advantage-item {
        padding: 1.25rem;
    }
}

@media (max-width: 900px) {
    .advantages-list {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Уменьшаем отступ между блоками на мобильных */
    }
    
    /* Убираем ограничение ширины для первого блока на мобильных */
    .advantages-list .advantage-item:first-child {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .advantages-list {
        gap: 1.25rem;
    }
}

.advantage-item {
    background-color: #ffffff;
    padding: 1.75rem 8.5rem 1.5rem 1.75rem; /* ещё больше отступ справа, чтобы текст не заходил на иконку */
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.advantage-icon {
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.75rem;
}

/* Иконки в solution и advantages, если используются изображения */
.feature-icon img,
.advantage-icon img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .feature-icon img,
    .advantage-icon img {
        width: 45px; /* Уменьшаем иконки для экономии места */
        height: 45px;
    }

    .advantage-item {
        padding: 1.5rem 3.5rem 1.5rem 1.25rem; /* Оптимизируем отступ справа */
    }
    
    /* На мобильных иконка вверху справа для всех блоков */
    .advantage-icon {
        position: absolute;
        top: 1.5rem;
        right: 1rem; /* Уменьшаем отступ справа */
        transform: none;
        margin-bottom: 0;
    }
    
    /* Убираем отступ справа у блока сравнения на мобильных */
    .advantage-comparison {
        margin-right: 0;
        margin-left: 0;
        padding: 1rem;
        width: 100%; /* Используем всю доступную ширину */
    }
    
    /* Улучшаем отступы для заголовка и текста на мобильных */
    .advantage-item h3 {
        padding-right: 3rem; /* Оптимизируем отступ справа для заголовка */
        margin-bottom: 0.5rem;
        font-size: 1.15rem;
        line-height: 1.3;
    }
    
    .advantage-item p {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
        line-height: 1.5;
        padding-right: 0; /* Убираем отступ, используем всю ширину */
        width: 100%; /* Используем всю доступную ширину */
    }
    
    /* Улучшаем списки на мобильных */
    .advantage-item ul {
        margin-top: 0.75rem;
        padding-right: 0; /* Убираем отступ, используем всю ширину */
        width: 100%; /* Используем всю доступную ширину */
    }
    
    .advantage-item li {
        padding: 0.4rem 0;
        padding-left: 1.75rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Улучшаем результат на мобильных */
    .advantage-result {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-top: 0.75rem;
        padding-right: 0; /* Убираем отступ, используем всю ширину */
        width: 100%; /* Используем всю доступную ширину */
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .advantage-icon img {
        width: 40px; /* Уменьшаем иконки еще больше */
        height: 40px;
    }
    
    .advantage-item {
        padding: 1.25rem 3rem 1.25rem 1rem; /* Оптимизируем отступ справа */
    }
    
    .advantage-icon {
        top: 1.25rem;
        right: 0.875rem; /* Уменьшаем отступ справа */
    }
    
    .advantage-item h3 {
        padding-right: 2.5rem; /* Оптимизируем отступ справа для заголовка */
        font-size: 1.05rem;
        line-height: 1.3;
    }
    
    .advantage-item p {
        font-size: 0.9rem;
        line-height: 1.5;
        padding-right: 0; /* Убираем отступ, используем всю ширину */
        width: 100%; /* Используем всю доступную ширину */
    }
    
    .advantage-comparison {
        padding: 0.875rem;
        margin-top: 0.75rem;
        margin-right: 0; /* Убираем отступ справа */
        width: 100%; /* Используем всю доступную ширину */
    }
    
    .comparison-item {
        padding: 0.5rem 0;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .advantage-result {
        font-size: 0.85rem;
        margin-top: 0.75rem;
        line-height: 1.5;
        padding-right: 0; /* Убираем отступ, используем всю ширину */
        width: 100%; /* Используем всю доступную ширину */
    }
    
    .advantage-item ul {
        margin-top: 0.5rem;
        padding-right: 0; /* Убираем отступ, используем всю ширину */
        width: 100%; /* Используем всю доступную ширину */
    }
    
    .advantage-item li {
        padding: 0.35rem 0;
        padding-left: 1.5rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

.advantage-item h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.advantage-comparison {
    margin: 0.75rem 4rem 0.75rem 0; /* отступ справа, чтобы серая область не заходила под иконку */
    padding: 1rem 1.25rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 1px solid rgba(0, 102, 255, 0.15); /* тонкая синяя линия вокруг серой области */
}

.comparison-item {
    padding: 0.75rem 0;
}

.comparison-item.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.advantage-result {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.advantage-item ul {
    list-style: none;
    padding-left: 0;
}

.advantage-item li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.advantage-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Цветные галочки для зон */
.zone-list li.zone-green:before {
    color: #00C853;
}

.zone-list li.zone-yellow:before {
    color: #FFB300;
}

.zone-list li.zone-red:before {
    color: #D32F2F;
}

/* Marsel Audio Section */
.marsel-audio {
    padding: 40px 0;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.marsel-audio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 0;
    pointer-events: none;
}

.marsel-audio .container {
    position: relative;
    z-index: 3;
}

.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.audio-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.audio-item h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.25rem;
    text-align: center;
}

.audio-player {
    width: 100%;
    height: 50px;
    outline: none;
    border-radius: 8px;
}

.audio-player::-webkit-media-controls-panel {
    background-color: var(--bg-light);
}

.audio-player::-webkit-media-controls-play-button {
    background-color: var(--primary-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .audio-grid {
        grid-template-columns: 1fr;
    }
    
    .audio-item {
        padding: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 40px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr; /* каждый кейс — на новой строке */
    gap: 2rem;
    margin-top: 1.5rem;
}

/* HR Examples - компактное оформление */
.hr-examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hr-example-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
    padding: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hr-example-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.2);
}

.hr-example-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 102, 255, 0.1);
}

.hr-example-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(0, 102, 255, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hr-example-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.hr-example-dialogue {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    flex-grow: 1;
    max-height: 200px;
    overflow-y: auto;
}

.hr-example-dialogue strong {
    font-weight: 700;
}

.hr-example-dialogue::-webkit-scrollbar {
    width: 4px;
}

.hr-example-dialogue::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.hr-example-dialogue::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.hr-example-conclusion {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 102, 255, 0.1);
    line-height: 1.5;
}

/* Адаптивность для HR Examples */
@media (max-width: 992px) {
    .hr-examples-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hr-example-card {
        padding: 1rem;
    }
    
    .hr-example-dialogue {
        font-size: 0.85rem;
        padding: 0.875rem;
        max-height: 180px;
        overflow-y: auto;
    }
    
    .hr-example-conclusion {
        font-size: 0.9rem;
    }
}

/* HR Integrations Section - Схемы */
.hr-integrations-scheme {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.hr-scheme-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.hr-scheme-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.2);
}

.hr-scheme-title {
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    position: relative;
}

/* Скрываем оригинальный текст с эмодзи */
.hr-scheme-title {
    font-size: 0;
    line-height: 0;
}

/* Замена эмодзи на зеленые стрелки через псевдоэлемент */
.hr-scheme-title::before {
    content: '';
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.5em;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Для первого блока (📥 - стрелка вниз, зеленая) */
.hr-scheme-title-input::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 9h-4V3H9v6H5l7 7 7-7z' fill='%2300a651'/%3E%3C/svg%3E");
}

/* Для второго блока (📤 - стрелка вверх, зеленая) */
.hr-scheme-title-output::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 15h4v6h6v-6h4l-7-7-7 7z' fill='%2300a651'/%3E%3C/svg%3E");
}

/* Показываем текст после иконки */
.hr-scheme-title::after {
    content: attr(data-text);
    font-size: 1.1rem;
    display: inline;
    vertical-align: middle;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.hr-scheme-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.hr-scheme-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hr-scheme-text-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 6px;
    width: 100%;
    text-align: left;
}

.hr-scheme-check {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.hr-scheme-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* HR Security Section - Схемы */
.hr-security-schemes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
}

.hr-security-scheme-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
    text-align: center;
}

.hr-security-scheme-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.hr-security-scheme-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.hr-security-scheme-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    width: 100%;
}

.hr-security-scheme-arrow {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

.hr-security-scheme-text {
    color: #000000;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 2rem;
    text-align: center;
}

.hr-security-scheme-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300C853'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* HR Security Section (старый стиль для совместимости) */
.hr-security-section {
    margin-top: 3rem;
    padding-top: 2rem;
}

.hr-security-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.hr-security-list {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(0, 102, 255, 0.15);
    padding: 1.5rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hr-security-item {
    color: #000000 !important;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2.5rem;
    display: block;
    visibility: visible;
    opacity: 1;
    min-height: 1.5rem;
    text-shadow: none;
}

.hr-security-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300C853'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 14H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Адаптивность для Security Schemes */
@media (max-width: 992px) {
    .hr-security-schemes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Адаптивность для Integrations */
@media (max-width: 992px) {
    .hr-integrations-scheme {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hr-scheme-card {
        padding: 1.5rem;
    }
    
    .hr-scheme-title::after {
        font-size: 1rem;
    }
    
    .hr-scheme-title {
        margin-bottom: 1.5rem;
    }
    
    .hr-scheme-text {
        font-size: 0.9rem;
    }
    
    
    .hr-security-scheme-card {
        padding: 1.5rem;
    }
    
    .hr-security-scheme-title {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }
    
    .hr-security-scheme-text {
        font-size: 1rem;
    }
    
    .hr-security-scheme-text::before {
        width: 20px;
        height: 20px;
    }
    
    .hr-security-list {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .hr-security-item {
        font-size: 1rem !important;
        color: #000000 !important;
        font-weight: 600 !important;
        padding: 0.4rem 0;
        padding-left: 2rem;
        line-height: 1.3;
    }
    
    .hr-security-item::before {
        width: 20px;
        height: 20px;
        top: 0.4rem;
    }
    
    .hr-security-title {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hr-security-list {
        padding: 1.25rem;
        margin: 0 0.5rem;
    }
    
    .hr-security-item {
        font-size: 0.95rem !important;
        color: #000000 !important;
        font-weight: 600 !important;
        padding: 0.35rem 0;
        padding-left: 1.75rem;
        line-height: 1.3;
    }
    
    .hr-security-item::before {
        width: 18px;
        height: 18px;
        top: 0.35rem;
    }
}

/* HR Comparison Table */
.hr-comparison-table {
    max-width: 1000px;
    margin: 2.5rem auto;
    overflow-x: auto;
}

.hr-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.hr-comparison-table thead {
    background: var(--primary-color);
}

.hr-comparison-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
}

.hr-comparison-table th:nth-child(2),
.hr-comparison-table th:nth-child(3) {
    text-align: center;
}

.hr-comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.hr-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.hr-comparison-table td {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    border: none;
}

.hr-comparison-table td:first-child {
    font-weight: 500;
}

.hr-comparison-table td:nth-child(2) {
    text-align: center;
    color: var(--text-light);
}

.hr-comparison-table td.highlight {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
}

/* Адаптивность для таблицы */
@media (max-width: 768px) {
    .hr-comparison-table {
        margin: 2rem auto;
    }
    
    .hr-comparison-table th,
    .hr-comparison-table td {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hr-comparison-table {
        margin: 1.5rem -1rem;
    }
    
    .hr-comparison-table table {
        border-radius: 8px;
    }
    
    .hr-comparison-table th,
    .hr-comparison-table td {
        padding: 0.75rem 0.75rem;
        font-size: 0.85rem;
    }
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-image {
    margin: 0.5rem 0;
    border-radius: 16px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 360px;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-image:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.testimonial-card:nth-child(1) .testimonial-image {
    background-image: url('21.jpg');
}

.testimonial-card:nth-child(2) .testimonial-image {
    background-image: url('22.jpg');
}

.testimonial-card:nth-child(3) .testimonial-image {
    background-image: url('23.jpg');
}

.testimonial-content {
    /* теперь используется как обычный контейнер */
}

@media (max-width: 768px) {
    .testimonial-image {
        width: 100%;
        min-height: 260px; /* Возвращаем исходную высоту */
        background-size: contain;
        background-position: center;
        margin: 0.5rem 0; /* Возвращаем исходные отступы */
        border-radius: 16px;
    }
    
    .testimonial-card {
        padding: 1.5rem; /* Возвращаем исходный padding */
    }
    
    .testimonial-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-image {
        min-height: 200px; /* Возвращаем исходную высоту для маленьких экранов */
        background-size: contain;
        background-position: center;
        margin: 0.5rem 0;
        border-radius: 12px;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
}

.testimonial-card h3 {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.2;
}

.testimonial-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-before,
.testimonial-after {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .testimonial-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.testimonial-before strong,
.testimonial-after strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.testimonial-before ul,
.testimonial-after ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.testimonial-before li,
.testimonial-after li {
    padding: 0.2rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
}

.testimonial-before li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #d32f2f;
}

.testimonial-after li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.testimonial-result {
    margin-top: 1rem;
    padding: 0.875rem;
    background-color: white;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

/* Setup Section */
.setup {
    padding: 40px 0;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.setup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 0;
    pointer-events: none;
}

.setup .container {
    position: relative;
    z-index: 3;
}

.setup-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.setup-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
    background: transparent;
}

.check-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: bold;
    margin-top: 0.25rem;
}

.setup-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
}

@media (max-width: 768px) {
    .setup-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .setup-item {
        gap: 0.875rem;
    }
    
    .setup-item p {
        font-size: 0.95rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 60px 0 40px 0;
}

.pricing .section-title {
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

/* Примечание к тарифам */
.pricing-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 198, 255, 0.05) 100%);
    border-radius: 12px;
    border: 1px dashed rgba(0, 102, 255, 0.2);
}

.pricing-note-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-note-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
}

.pricing-note-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.pricing-note-item .note-icon {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .pricing-note {
        padding: 1.25rem 1.5rem;
    }
    
    .pricing-note-items {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .pricing-note-item {
        font-size: 0.95rem;
    }
}

.pricing-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
    min-width: 0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 0.75rem;
    margin-top: 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.pricing-card.popular h3 {
    margin-top: 1.5rem;
    padding-top: 0.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: block;
    white-space: nowrap;
    overflow-wrap: normal;
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    white-space: nowrap;
}

.pricing-subtitle {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.pricing-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.pricing-suitable {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Objections Section */
.objections {
    padding: 40px 0;
    background: transparent;
    position: relative;
}

.objections-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


.objection-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.objection-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.objection-item:hover::before {
    transform: scaleY(1);
}

.objection-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    position: relative;
    padding-left: 2rem;
}

.objection-item h3::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), #0066ff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 102, 255, 0.3);
    margin-right: 0.75rem;
}

.objection-item p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
    position: relative;
    padding-left: 2rem;
}

.objection-item p::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 900;
    font-size: 1.3rem;
    text-shadow: 0 1px 2px rgba(0, 204, 102, 0.3);
}

@media (max-width: 768px) {
    .objections-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .objection-item {
        padding: 1.25rem 1rem;
    }
    
    /* Увеличиваем отступ для иконок, чтобы они не заходили на текст */
    .objection-item h3 {
        padding-left: 2.5rem; /* Достаточно места для иконки вопроса */
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    /* Уменьшаем размер иконки вопроса на мобильных */
    .objection-item h3::before {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
        left: 0.25rem;
    }
    
    .objection-item p {
        padding-left: 2rem; /* Достаточно места для стрелки */
        font-size: 0.9rem;
        line-height: 1.6;
        margin-top: 0.5rem;
    }
    
    /* Уменьшаем размер стрелки на мобильных */
    .objection-item p::before {
        font-size: 1.1rem;
        left: 0.25rem;
        top: 0.1rem;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .objection-item {
        padding: 1rem 0.875rem;
    }
    
    .objection-item h3 {
        padding-left: 2.25rem;
        font-size: 0.95rem;
        line-height: 1.35;
    }
    
    .objection-item h3::before {
        width: 18px;
        height: 18px;
        font-size: 0.7rem;
        left: 0.25rem;
    }
    
    .objection-item p {
        padding-left: 1.75rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .objection-item p::before {
        font-size: 1rem;
        left: 0.25rem;
    }
}

/* Trust Section */
.trust {
    padding: 40px 0;
}

.trust-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Компактная версия для мобильных */
@media (max-width: 768px) {
    .trust {
        padding: 20px 0; /* Уменьшаем отступы секции */
    }
    
    .trust-metrics {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на мобильных */
        gap: 1rem; /* Уменьшаем отступы между элементами */
        margin-bottom: 1rem;
    }
    
    .trust-item {
        padding: 1rem 0.5rem; /* Компактные отступы */
    }
    
    .trust-number {
        font-size: 1.5rem; /* Уменьшаем размер цифр */
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }
    
    .trust-text {
        font-size: 0.8rem; /* Уменьшаем размер текста */
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .trust {
        padding: 16px 0; /* Еще меньше отступы на маленьких экранах */
    }
    
    .trust-metrics {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .trust-item {
        padding: 0.75rem 0.4rem;
    }
    
    .trust-number {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }
    
    .trust-text {
        font-size: 0.75rem;
    }
}

.certifications {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.cert-item {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.75rem;
}

.cert-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .certifications {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .cert-item {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.5rem 0;
        padding-left: 1.75rem;
        line-height: 1.6;
    }
    
    .cert-item::before {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .certifications {
        padding: 1.25rem;
        margin: 0 0.5rem;
        border-radius: 8px;
    }
    
    .cert-item {
        font-size: 0.85rem;
        padding-left: 1.5rem;
        line-height: 1.5;
    }
    
    .cert-item::before {
        font-size: 0.95rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 0;
    background: url('14.jpg') center top/cover no-repeat;
    background-position: center top;
    color: white;
    text-align: center;
    position: relative;
    min-height: auto;
    max-height: calc(100vh - 100px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 2;
    padding: 50vh 20px 60px 20px;
    width: 100%;
    max-width: 1200px;
}

.final-cta .section-title {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.98;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85);
    color: #f5f5f5;
}

.cta-step {
    margin-bottom: 0.5rem;
}

.cta-step-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.98;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85);
    color: #f5f5f5;
}

.cta-arrow {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
    margin: 0.25rem 0;
    line-height: 1;
}

.cta-result {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    opacity: 0.98;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.85);
    color: #f5f5f5;
}

.cta-result-underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-feature {
    font-size: 1rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

/* Медиа-запросы для финального CTA на мобильных */
@media (max-width: 768px) {
    .final-cta .container {
        padding: 40px 20px 40px 20px !important; /* Уменьшаем padding на мобильных */
    }
    
    .final-cta .section-title {
        display: block !important; /* Гарантируем, что заголовок виден */
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
        color: white !important;
        text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85) !important;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-step-text {
        font-size: 0.95rem;
    }
    
    .cta-arrow {
        font-size: 1.2rem;
    }
    
    .cta-result {
        font-size: 1rem;
        margin-top: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .cta-buttons .btn-large {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-features {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .cta-feature {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .final-cta .container {
        padding: 30px 15px 30px 15px !important; /* Еще меньше padding на маленьких экранах */
    }
    
    .final-cta .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-step-text {
        font-size: 0.85rem;
    }
    
    .cta-arrow {
        font-size: 1rem;
    }
    
    .cta-result {
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }
    
    .cta-buttons {
        margin: 1rem 0;
        gap: 0.6rem;
    }
    
    .cta-buttons .btn-large {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 100%;
    }
    
    .cta-feature {
        font-size: 0.85rem;
    }
}

/* FAQ Section */
.faq {
    padding: 40px 0;
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 0;
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 3;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    user-select: none;
    position: relative;
    z-index: 1;
}

.faq-question h3,
.faq-toggle {
    pointer-events: none;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-item.active .faq-question {
    background-color: rgba(0, 102, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    padding: 0;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    display: block;
}

/* Slogan Section */
.slogan {
    padding: 60px 0;
    text-align: center;
    background-color: transparent;
}

.slogan-text {
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slogan-text-alt {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 60px 0;
    background-color: var(--text-dark);
    color: white;
    text-align: center;
}

/* Модальное окно для формы консультации */
.consultation-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.consultation-modal-content {
    background-color: white;
    margin: auto;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.consultation-modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.consultation-modal-close:hover {
    color: var(--text-dark);
}

.consultation-modal-content h2 {
    margin: 0 0 2rem 0;
    font-size: 1.75rem;
    color: var(--text-dark);
    text-align: center;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.consultation-form .btn {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Стили для чекбокса согласия */
.form-group-consent {
    margin-top: 20px;
}

.form-group-consent label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-dark);
    gap: 0.5rem;
}

.form-group-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-group-consent a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-group-consent a:hover {
    color: var(--primary-hover);
}

@media (max-width: 768px) {
    .consultation-modal-content {
        padding: 2rem 1.5rem;
        margin: 20px;
    }
    
    .consultation-modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .consultation-form {
        gap: 1.25rem;
    }
}

/* Модальные окна для политик */
.policy-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.policy-modal-content {
    background-color: white;
    margin: auto;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

.policy-modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 10;
}

.policy-modal-close:hover {
    color: var(--text-dark);
}

.policy-modal-content h2 {
    margin: 0 0 1.5rem 0;
    font-size: 1.75rem;
    color: var(--text-dark);
    padding-right: 2rem;
}

.policy-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content strong {
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .policy-modal-content {
        padding: 2rem 1.5rem;
        margin: 20px;
        max-height: 85vh;
    }
    
    .policy-modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        padding-right: 2rem;
    }
}

/* Полоска уведомления о cookies (как на marcel.bot) */
.cookie-banner {
    display: none;
    position: fixed;
    z-index: 10002;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #1a1a2e;
    padding: 1rem 2rem;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: cookieSlideUp 0.4s ease;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.cookie-banner a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner a:hover {
    color: var(--primary-hover);
}

.cookie-accept-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.cookie-accept-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner p {
        font-size: 0.85rem;
    }
    
    .cookie-accept-btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

/* Стили для ссылок в футере */
.footer-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
}

@media (max-width: 768px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-links a {
        margin: 0;
    }
    
    .footer-links span {
        display: none;
    }
}

/* Страницы политик */
.policy-page {
    padding: 100px 0 60px;
    min-height: 100vh;
    background-color: var(--bg-white);
}

.policy-page h1 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.policy-content-page {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.policy-content-page p {
    margin-bottom: 1rem;
}

.policy-content-page strong {
    font-weight: 600;
    color: var(--text-dark);
}

.product-page-placeholder {
    text-align: center;
    color: var(--text-light, #666);
}

.product-page-back {
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 80px 20px 40px;
    }
    
    .policy-page h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .policy-content-page {
        padding: 1.5rem;
    }

    .nav-dropdown-menu--products {
        min-width: auto;
        white-space: normal;
    }
}

.footer h2 {
    color: white;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-cta {
    margin-top: 2rem;
}

.contact-cta p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* trust-number уже настроен в @media (max-width: 768px) выше */
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    overflow: auto;
}

.lightbox.active,
.lightbox[style*="flex"] {
    display: flex !important;
}

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

.lightbox-image {
    max-width: 98%;
    max-height: 98%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    display: block;
    margin: auto;
    position: relative;
    z-index: 10002;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.2s ease, color 0.2s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: #ff4444;
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 32px;
        width: 36px;
        height: 36px;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }
}

/* ==================== Страницы AI-продуктов ==================== */
.product-landing .product-section {
    padding: 60px 0;
}

.product-hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.product-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.product-hero-cta .btn {
    margin: 0;
}

.product-comparison-table {
    margin-top: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hr-comparison-table.product-comparison-table {
    overflow-x: hidden;
}

.product-comparison-table table {
    width: 100%;
    table-layout: fixed;
    transition: box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-comparison-table:hover table {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 102, 255, 0.2);
}

.product-comparison-table thead th {
    text-align: left;
    font-size: 1.2rem;
    padding: 1.35rem 1.75rem;
    line-height: 1.35;
}

.product-comparison-table thead th:first-child {
    background: #5a6a7a;
    width: 42%;
}

.product-comparison-table thead th.highlight-col {
    background: var(--primary-color);
    text-align: left;
}

.product-comparison-table td {
    font-size: 1.1rem;
    padding: 1.35rem 1.75rem;
    line-height: 1.55;
    transition: background-color 0.3s ease, color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-comparison-table tbody tr {
    transition: background-color 0.3s ease;
}

.product-comparison-table tbody tr:hover {
    background-color: rgba(0, 102, 255, 0.04);
}

.product-comparison-table tbody tr:hover td:first-child {
    background-color: #f0f4f8;
}

.product-comparison-table tbody tr:hover td.highlight {
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--primary-hover);
}

.product-comparison-table td:first-child {
    text-align: left;
    color: var(--text-light);
    background: #fafafa;
    font-weight: 400;
    font-size: 1.05rem;
}

.product-comparison-table td.highlight {
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.product-comparison-note {
    max-width: 960px;
    margin: 2.5rem auto 0;
    text-align: center;
    font-size: 1.35rem;
    line-height: 1.55;
    color: var(--text-dark);
    font-style: normal;
    font-weight: 700;
}

@media (max-width: 768px) {
    .product-comparison-note {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.product-feature-item {
    align-items: flex-start;
    text-align: left;
}

.product-feature-item .why-us-content h3 {
    font-size: 1.05rem;
}

/* Bento-сетка преимуществ (7 пунктов: 3+3+1 по центру) */
.product-features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.product-feature-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    background: white;
    border-radius: 16px;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(0, 102, 255, 0.12);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.product-feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.product-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0, 102, 255, 0.14);
    border-color: rgba(0, 102, 255, 0.28);
}

.product-feature-card:hover::after {
    transform: scaleX(1);
}

.product-feature-card--centered {
    grid-column: 2;
}

.product-feature-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: white;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}

.product-feature-body h3 {
    margin: 0 0 0.4rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-feature-body p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .product-features-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-feature-card--centered {
        grid-column: 1 / -1;
        max-width: calc((100% - 1.25rem) / 2);
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .product-features-bento {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-feature-card--centered {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
    }
}

.product-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-case-card h3 {
    font-size: 1.15rem;
    margin: 0.5rem 0 0;
    color: var(--text-dark);
}

.product-case-audience {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.product-case-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.product-step .step-content,
.product-step .product-step-content {
    margin-left: 0;
}

.product-step .step-header {
    margin-bottom: 0.25rem;
}

/* Компактные шаги: 3 квадрата в ряд со стрелками */
.product-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 1150px;
    margin: 2rem auto 0;
}

.product-steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-step-square {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 1.25rem 1.1rem 1.1rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 102, 255, 0.12);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-step-square:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 102, 255, 0.12);
}

.product-step-square-num {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.28);
    flex-shrink: 0;
}

.product-step-square h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-step-square p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-light);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.product-step-arrow-h {
    flex: 0 0 36px;
    height: 36px;
    position: relative;
}

.product-step-arrow-h::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.product-step-arrow-h::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--primary-color);
    transform: translateY(-50%);
}

/* Компактная версия сетки шагов (SimpleCRM — 5 шагов) */
.product-steps-grid--compact {
    gap: 1rem;
    margin-top: 1.5rem;
}

.product-steps-grid--compact .product-step-square {
    width: 230px;
    height: 230px;
    padding: 1.1rem 1rem;
}

.product-steps-grid--compact .product-step-square-num {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.product-steps-grid--compact .product-step-square h3 {
    font-size: 1rem;
}

.product-steps-grid--compact .product-step-square p {
    font-size: 0.88rem;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .product-steps-row {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .product-step-square {
        width: calc(50% - 28px);
        height: auto;
        min-height: 220px;
        aspect-ratio: 1;
    }

    .product-step-square h3 {
        font-size: 1.05rem;
    }

    .product-step-square p {
        font-size: 0.88rem;
    }

    .product-step-arrow-h {
        flex: 0 0 28px;
    }
}

@media (max-width: 600px) {
    .product-steps-row {
        flex-direction: column;
        align-items: stretch;
    }

    .product-step-square {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        min-height: auto;
        aspect-ratio: auto;
        height: auto;
        padding: 1.25rem 1.15rem;
    }

    .product-step-square p {
        -webkit-line-clamp: unset;
        display: block;
        font-size: 0.95rem;
    }

    .product-step-square h3 {
        font-size: 1.1rem;
    }

    .product-step-arrow-h {
        flex: 0 0 auto;
        width: 36px;
        height: 28px;
        margin: 0 auto;
        transform: rotate(90deg);
    }
}

.product-quotes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-quote-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}

.product-quote-text {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-dark);
    margin: 0 0 1rem;
    flex: 1;
}

.product-quote-card footer {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
    margin-top: auto;
}

.product-testimonials {
    padding-bottom: 40px;
}

.whitelist-notice {
    padding: 1.5rem 1rem 1.75rem;
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f2ff 100%);
    border-top: 1px solid rgba(0, 102, 255, 0.12);
    border-bottom: 1px solid rgba(0, 102, 255, 0.12);
}

.whitelist-notice-text {
    margin: 0;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.55;
    color: var(--text-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .whitelist-notice-text {
        font-size: 1.05rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
}

.product-footer {
    padding: 3.5rem 0 2.5rem;
    background: var(--text-dark);
}

.product-footer h2 {
    margin-bottom: 1.75rem;
}

.product-footer .footer-links {
    justify-content: center;
    margin: 0;
}

.product-footer .footer-links a {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
    .product-features-grid,
    .product-cases-grid,
    .product-quotes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-features-grid .product-feature-item:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .product-hero-cta .btn {
        width: 100%;
        max-width: 320px;
    }

    .product-features-grid,
    .product-cases-grid,
    .product-quotes-grid {
        grid-template-columns: 1fr;
    }

    .product-features-grid .product-feature-item:last-child {
        max-width: none;
    }

    .product-comparison-table {
        margin-left: 0;
        margin-right: 0;
    }

    .product-comparison-table:hover table {
        transform: translateY(-3px);
    }

    .product-comparison-table thead th {
        font-size: 1rem;
        padding: 1rem 1rem;
    }

    .product-comparison-table td {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .product-comparison-table td:first-child {
        font-size: 0.9rem;
    }

    .product-step .step-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.2rem;
    }

    .product-step h3 {
        font-size: 1.15rem;
    }
}

/* Метки секций на страницах продуктов */
.product-section-label {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.product-section-desc {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
}

.logo-text-brand {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-text-brand a {
    background-image: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Блок боли — карточки */
.product-pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.product-pain-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-left: 4px solid #e74c3c;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-pain-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.product-pain-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem;
}

.product-pain-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.product-features-grid--4 {
    grid-template-columns: repeat(2, 1fr);
}

.product-features-grid--4 .product-feature-item {
    padding: 1.75rem 1.85rem;
}

.product-features-grid--4 .product-feature-item .why-us-content h3 {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 0.65rem;
}

.product-features-grid--4 .product-feature-item .why-us-content p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.product-features-grid--4 .product-feature-item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    margin: 0;
}

/* Широкая карточка отчётов */
.product-feature-wide {
    margin-top: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.15);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-feature-wide:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(0, 102, 255, 0.18);
    border-color: rgba(0, 102, 255, 0.28);
}

.product-feature-wide:hover .product-metrics-list li {
    transform: translateX(4px);
}

.product-feature-wide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem 2.5rem;
    align-items: start;
}

.product-feature-wide-text h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
}

.product-feature-wide-text p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-light);
    margin: 0 0 1.25rem;
}

.product-metrics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-metrics-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
    transition: transform 0.3s ease;
}

.product-metrics-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Детальные кейсы */
.product-case-detailed {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-case-detailed:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 102, 255, 0.14);
    border-color: rgba(0, 102, 255, 0.25);
}

.product-case-detailed:hover .product-case-block--solution {
    border-color: rgba(0, 102, 255, 0.22);
    background: #e8f3ff;
}

.product-case-detailed h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0.5rem 0 1rem;
    line-height: 1.35;
}

.product-case-block {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.product-case-block strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.product-case-block ul {
    margin: 0;
    padding-left: 1.25rem;
    line-height: 1.55;
}

.product-case-block li {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.product-case-block--problem {
    background: #fff5f5;
    border: 1px solid rgba(231, 76, 60, 0.15);
}

.product-case-block--problem strong {
    color: #c0392b;
}

.product-case-block--solution {
    background: #f0f7ff;
    border: 1px solid rgba(0, 102, 255, 0.12);
}

.product-case-block--solution strong {
    color: var(--primary-color);
}

.product-case-detailed .advantage-result {
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 0.9rem;
}

/* Интеграции */
.product-integrations {
    background: transparent;
}

.product-integrations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-integration-tag {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    background: white;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid rgba(0, 102, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.product-integration-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.12);
}

.product-quote-card footer strong {
    color: var(--text-dark);
    font-weight: 600;
}

.product-cta-note {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    opacity: 0.9;
    color: #f0f0f0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .product-feature-wide-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-pain-grid {
        grid-template-columns: 1fr;
    }

    .product-features-grid--4 {
        grid-template-columns: 1fr;
    }

    .product-features-grid--4 .product-feature-item .why-us-content h3 {
        font-size: 1.15rem;
    }

    .product-features-grid--4 .product-feature-item .why-us-content p {
        font-size: 0.98rem;
    }

    .product-feature-wide-inner {
        padding: 1.5rem;
    }

    .product-case-detailed {
        padding: 1.25rem;
    }
}

/* ==================== Text2SQL ==================== */
.product-hero-description {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.65;
    opacity: 0.92;
    color: rgba(255, 255, 255, 0.95);
}

.product-pain-list {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0;
}

.product-pain-list li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-dark);
}

.product-pain-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 1rem;
    color: #e74c3c;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-pain-list li:last-child {
    border-bottom: none;
}

.product-pain-conclusion {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.15);
}

/* Pain block: list → brace → arrow → conclusion */
.product-pain-flow {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    max-width: 1050px;
    margin: 2rem auto 0;
}

.product-pain-flow .product-pain-list {
    flex: 1 1 auto;
    max-width: none;
    margin: 0;
    min-width: 0;
}

.product-pain-connector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    align-self: center;
}

.product-pain-brace {
    width: 28px;
    height: 100%;
    min-height: 200px;
    color: rgba(0, 102, 255, 0.4);
}

.product-pain-arrow {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color, #0066ff);
    flex-shrink: 0;
}

.product-pain-flow .product-pain-conclusion {
    flex: 0 1 300px;
    margin: 0;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 1.5rem 1.25rem;
    font-size: 1.2rem;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .product-pain-flow {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .product-pain-connector {
        justify-content: center;
        align-self: center;
    }

    .product-pain-brace {
        width: 36px;
        min-height: 48px;
        height: 48px;
        transform: rotate(90deg);
    }

    .product-pain-flow .product-pain-conclusion {
        flex: none;
        max-width: none;
        min-height: auto;
    }
}

.product-solution-steps {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    align-items: stretch;
}

.product-solution-steps .product-solution-step {
    flex: 1;
    min-width: 0;
    max-width: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.5rem;
}

.product-solution-steps .product-solution-step-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 1.45rem;
}

.product-solution-steps .product-solution-step-body h3 {
    font-size: 1.35rem;
    line-height: 1.35;
}

.product-solution-steps .product-solution-step-body p {
    font-size: 1.1rem;
    line-height: 1.55;
}

.product-solution-steps .product-solution-example {
    font-size: 1.1rem !important;
}

.product-solution-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: white;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-solution-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 102, 255, 0.1);
}

.product-solution-step-num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.product-solution-step-body h3 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.product-solution-step-body p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.product-solution-example {
    font-style: italic;
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* Таблица 3 колонки: критерий | плохо | хорошо */
.product-comparison-table--3col thead th.col-criteria {
    background: transparent;
    width: 0;
    padding: 0;
    border: none;
    visibility: hidden;
}

.product-comparison-table--3col thead th:nth-child(2) {
    background: #5a6a7a;
    text-align: left;
    width: 38%;
}

.product-comparison-table--3col thead th.highlight-col {
    width: 38%;
}

.product-comparison-table--3col td.criteria-label {
    font-weight: 600;
    color: var(--text-dark);
    background: #fafafa;
    text-align: left;
}

.product-comparison-table--3col td:nth-child(2) {
    text-align: left;
    color: var(--text-light);
    background: #fff;
}

.product-comparison-table--3col td.highlight {
    text-align: left;
}

.product-case-card--text2sql p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.product-case-card--text2sql p:last-child {
    margin-bottom: 0;
}

.product-questions {
    background: transparent;
}

.product-questions-lead {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin: -0.5rem auto 0;
    max-width: 560px;
}

.product-questions-demo {
    max-width: 900px;
    margin: 2rem auto 0;
}

.product-questions-chat {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    min-height: 200px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.12);
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-questions-message {
    padding: 0.875rem 1.125rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 92%;
}

.product-questions-message--user {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.product-questions-message--bot {
    background: #f0f7ff;
    color: var(--text-dark);
    align-self: flex-start;
    border: 1px solid rgba(0, 102, 255, 0.12);
    border-bottom-left-radius: 4px;
    max-width: 100%;
    width: 100%;
}

.product-questions-message--appear {
    animation: demoMsgIn 0.35s ease;
}

.product-questions-message--typing {
    width: auto;
    max-width: 80px;
}

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

.demo-typing {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    height: 1.25rem;
}

.demo-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.45);
    animation: demoTypingDot 1.2s infinite ease-in-out;
}

.demo-typing span:nth-child(2) { animation-delay: 0.15s; }
.demo-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes demoTypingDot {
    0%, 80%, 100% { opacity: 0.35; transform: scale(0.85); }
    40% { opacity: 1; transform: scale(1); }
}

.demo-answer-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin: 0;
}

.demo-answer-table th,
.demo-answer-table td {
    padding: 0.45rem 0.65rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.demo-answer-table th {
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.6);
}

.demo-answer-table tr:last-child td {
    border-bottom: none;
}

.demo-answer-table--compact td:first-child {
    color: var(--text-light);
}

.demo-answer-down {
    color: #e74c3c;
    font-weight: 600;
}

.demo-answer-highlight {
    margin: 0 0 0.35rem;
    font-size: 1rem;
}

.demo-answer-note {
    margin: 0.5rem 0 0;
    font-size: 0.88rem;
    color: var(--text-light);
}

.demo-answer-note:last-child,
.demo-answer-table:last-child {
    margin-bottom: 0;
}

.product-questions-message--bot p {
    margin: 0;
}

.product-questions-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.product-question-chip {
    display: inline-block;
    padding: 0.55rem 1rem;
    background: white;
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 999px;
    font-size: 0.85rem;
    line-height: 1.35;
    color: var(--text-dark);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: all 0.25s ease;
    max-width: 100%;
}

.product-question-chip:hover,
.product-question-chip.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

@media (max-width: 768px) {
    .product-solution-steps {
        flex-direction: column;
    }

    .product-solution-step {
        flex-direction: column;
        padding: 1.25rem;
    }

    .product-comparison-table--3col th,
    .product-comparison-table--3col td {
        padding: 0.65rem 0.5rem;
        font-size: 0.8rem;
    }

    .product-question-chip {
        font-size: 0.8rem;
        padding: 0.5rem 0.85rem;
    }
}

/* ==================== Text2SQL ==================== */
.product-hero-description {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
    line-height: 1.65;
    opacity: 0.95;
    color: #f0f4ff;
}

.product-pain-list {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 0;
}

.product-pain-list li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--text-dark);
}

.product-pain-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    top: 1rem;
    color: #e74c3c;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-pain-list li:last-child {
    border-bottom: none;
}

.product-pain-conclusion {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.25rem 1.5rem;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 255, 0.15);
}

/* Pain block: list → brace → arrow → conclusion */
.product-pain-flow {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    max-width: 1050px;
    margin: 2rem auto 0;
}

.product-pain-flow .product-pain-list {
    flex: 1 1 auto;
    max-width: none;
    margin: 0;
    min-width: 0;
}

.product-pain-connector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    align-self: center;
}

.product-pain-brace {
    width: 28px;
    height: 100%;
    min-height: 200px;
    color: rgba(0, 102, 255, 0.4);
}

.product-pain-arrow {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color, #0066ff);
    flex-shrink: 0;
}

.product-pain-flow .product-pain-conclusion {
    flex: 0 1 300px;
    margin: 0;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 1.5rem 1.25rem;
    font-size: 1.2rem;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .product-pain-flow {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .product-pain-connector {
        justify-content: center;
        align-self: center;
    }

    .product-pain-brace {
        width: 36px;
        min-height: 48px;
        height: 48px;
        transform: rotate(90deg);
    }

    .product-pain-flow .product-pain-conclusion {
        flex: none;
        max-width: none;
        min-height: auto;
    }
}

.product-solution-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.product-solution-step {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.1);
    text-align: center;
}

.product-solution-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.product-solution-step h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin: 0 0 0.75rem;
    line-height: 1.35;
}

.product-solution-step p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-light);
}

.product-solution-example {
    font-style: italic;
    color: var(--primary-color) !important;
    font-weight: 500;
}

.product-solution-arrow {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 300;
    padding: 0 0.25rem;
    align-self: center;
}

.product-comparison-table--3col thead th.col-criteria {
    background: transparent;
    width: 28%;
}

.product-comparison-table--3col thead th:nth-child(2) {
    background: #5a6a7a;
    text-align: left;
}

.product-comparison-table--3col thead th.highlight-col {
    background: var(--primary-color);
    text-align: left;
}

.product-comparison-table--3col td.criteria-label {
    font-weight: 600;
    color: var(--text-dark);
    background: #f8fafc;
    text-align: left;
}

.product-comparison-table--3col td:nth-child(2) {
    text-align: left;
    color: var(--text-light);
    background: #fafafa;
}

.product-comparison-table--3col td.highlight {
    text-align: left;
}

.product-case-card--before-after p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.product-case-card--before-after p strong {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .product-solution-flow {
        flex-direction: column;
        align-items: center;
    }

    .product-solution-arrow {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }

    .product-solution-step {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-hero-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .product-comparison-table--3col th,
    .product-comparison-table--3col td {
        padding: 0.65rem 0.5rem;
        font-size: 0.8rem;
    }

    .product-question-chip {
        font-size: 0.8rem;
        width: 100%;
        border-radius: 10px;
    }
}

