/* 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 {
    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);
}

.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 {
        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: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.final-cta .btn-outline {
    color: white;
    border-color: white;
}

.final-cta .btn-outline:hover {
    background-color: white;
    color: var(--text-dark);
}

.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-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
    gap: 4rem;
}

.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);
        gap: 1rem;
    }
    
    .proof-grid-2 {
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .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-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;
}

.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: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
    position: relative;
}

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

    .steps .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);
    }
}

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

.step {
    position: relative;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.step h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.step ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

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

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

/* Выделение третьего шага */
@media (min-width: 768px) {
    .steps .step:nth-child(3) {
        background-color: #ffffff;
        border: 2px solid rgba(0, 102, 255, 0.25);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-6px);
    }

    .steps .step:nth-child(3) .step-number {
        box-shadow: 0 0 18px rgba(0, 102, 255, 0.5);
        transform: scale(1.05);
    }
}

/* Use Cases Section */
.use-cases {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.03) 0%, transparent 100%);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.use-case-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
}

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

.use-case-card .use-case-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 204, 102, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.use-case-card .use-case-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.use-case-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.use-case-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Единый синий цвет для всех карточек */
.use-case-card::before {
    background: linear-gradient(90deg, #0066ff, #00c6ff) !important;
}

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

@media (max-width: 600px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-card {
        padding: 1.5rem;
    }
}

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

/* Увеличиваем размер заголовка секции 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-grid-single {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.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;
}

.testimonials-grid-single {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 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-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-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.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:last-child {
    grid-column: 1 / -1;
}

.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;
}

.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 */
.cookie-banner {
    display: none;
    position: fixed;
    z-index: 10002; /* Выше других модальных окон */
    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;
}

.cookie-banner-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;
    text-align: center;
}

.cookie-banner-content p {
    margin: 0 0 1.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

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

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

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-banner-buttons .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    min-width: 150px;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px;
    }
    
    .cookie-banner-content {
        padding: 2rem 1.5rem;
        margin: 20px;
        max-width: 100%;
    }
    
    .cookie-banner-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-banner-buttons .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner-content {
        padding: 1.75rem 1.25rem;
        margin: 15px;
    }
    
    .cookie-banner-content p {
        font-size: 0.9rem;
    }
}

/* Стили для ссылок в футере */
.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);
}

@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;
    }
}

.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%;
    }
}

