/* ==================================== HERO БЛОК - СТИЛИ ==================================== */ /* КОНТЕЙНЕР */ .hero-container { width: 100%; min-height: 100vh; background: linear-gradient(135deg, #f5f7fa 0%, #e8edf4 100%); display: flex; align-items: center; justify-content: center; padding: 60px 40px; position: relative; overflow: hidden; } /* КОНТЕНТ */ .hero-content { max-width: 1200px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 60px; } /* ЛЕВАЯ КОЛОННА - ТЕКСТ (60%) */ .hero-text { flex: 0 0 60%; z-index: 2; } /* ЗАГОЛОВОК H1 */ .hero-title { font-family: 'Montserrat', 'Segoe UI', sans-serif; font-size: 48px; font-weight: 700; line-height: 1.2; color: #1a1a2e; margin: 0 0 24px 0; letter-spacing: -0.5px; } .hero-title .highlight { color: #4a90e2; position: relative; display: inline-block; } /* Подчеркивание для highlight */ .hero-title .highlight::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, #4a90e2, #6bb6ff); border-radius: 2px; } /* ПОДЗАГОЛОВОК */ .hero-subtitle { font-family: 'Open Sans', Arial, sans-serif; font-size: 20px; font-weight: 400; line-height: 1.6; color: #2c3e50; margin: 0 0 20px 0; } .hero-subtitle strong { font-weight: 700; color: #4a90e2; } /* РЕЗУЛЬТАТЫ */ .hero-results { font-family: 'Open Sans', Arial, sans-serif; font-size: 18px; line-height: 1.8; color: #34495e; margin: 0 0 20px 0; padding: 20px; background: rgba(255, 255, 255, 0.6); border-radius: 12px; backdrop-filter: blur(10px); } .result-item { display: inline-block; margin-bottom: 8px; } /* ЛОКАЦИЯ */ .hero-location { font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; color: #7f8c8d; margin: 0 0 40px 0; } /* CTA КОНТЕЙНЕР */ .cta-container { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; } /* PRIMARY BUTTON */ .btn-primary { display: inline-block; padding: 18px 40px; font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 600; color: #ffffff; background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%); border: none; border-radius: 50px; text-decoration: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 20px rgba(74, 144, 226, 0.3); position: relative; overflow: hidden; } .btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent); transition: left 0.5s; } .btn-primary:hover { transform: translateX(8px); box-shadow: 0 6px 30px rgba(74, 144, 226, 0.4); } .btn-primary:hover::before { left: 100%; } .btn-primary:active { transform: translateX(8px) scale(0.98); } /* SECONDARY CTA */ .cta-secondary { font-family: 'Open Sans', Arial, sans-serif; font-size: 14px; color: #7f8c8d; margin: 0; line-height: 1.6; } .link-secondary { color: #4a90e2; text-decoration: underline; transition: color 0.2s; } .link-secondary:hover { color: #357abd; } /* ПРАВАЯ КОЛОННА - ФОТО (40%) */ .hero-image { flex: 0 0 40%; position: relative; z-index: 1; } .image-wrapper { position: relative; width: 100%; padding-bottom: 120%; /* Соотношение 3:4 */ border-radius: 20px; overflow: visible; } /* ФОТО */ .hero-photo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); } /* Zoom эффект при скролле (управляется через JS) */ .hero-photo.scrolled { transform: scale(1.05); } /* ДЕКОРАТИВНЫЕ ЭЛЕМЕНТЫ */ .decoration-circle { position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; background: linear-gradient(135deg, #4a90e2, #6bb6ff); border-radius: 50%; opacity: 0.1; z-index: -1; } .decoration-dots { position: absolute; bottom: -30px; left: -30px; width: 150px; height: 150px; background-image: radial-gradient(circle, #4a90e2 2px, transparent 2px); background-size: 20px 20px; opacity: 0.2; z-index: -1; } /* АНИМАЦИИ */ @keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } } @keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /* Применение анимаций */ [data-animate="fadeInLeft"] { animation: fadeInLeft 0.8s ease-out forwards; opacity: 0; } [data-animate="fadeInRight"] { animation: fadeInRight 0.8s ease-out forwards; opacity: 0; } [data-animate="fadeInUp"] { animation: fadeInUp 0.8s ease-out forwards; opacity: 0; } /* Задержки анимации */ [data-delay="200"] { animation-delay: 0.2s; } [data-delay="300"] { animation-delay: 0.3s; } [data-delay="400"] { animation-delay: 0.4s; } [data-delay="500"] { animation-delay: 0.5s; } /* ==================================== АДАПТИВНОСТЬ - МОБИЛЬНЫЕ УСТРОЙСТВА ==================================== */ /* Планшеты (до 1024px) */ @media (max-width: 1024px) { .hero-content { gap: 40px; } .hero-title { font-size: 42px; } .hero-subtitle { font-size: 18px; } } /* Мобильные (до 768px) */ @media (max-width: 768px) { .hero-container { min-height: auto; padding: 40px 20px; } .hero-content { flex-direction: column; gap: 40px; } .hero-text { flex: 0 0 100%; order: 2; } .hero-image { flex: 0 0 100%; max-width: 400px; margin: 0 auto; order: 1; } .hero-title { font-size: 32px; text-align: center; } .hero-subtitle, .hero-results, .hero-location { text-align: center; } .hero-results { font-size: 16px; } .cta-container { align-items: center; width: 100%; } .btn-primary { width: 100%; text-align: center; padding: 16px 32px; font-size: 16px; } .cta-secondary { text-align: center; } } /* Маленькие мобильные (до 480px) */ @media (max-width: 480px) { .hero-title { font-size: 28px; } .hero-subtitle { font-size: 16px; } .hero-results { font-size: 14px; padding: 16px; } .btn-primary { font-size: 15px; padding: 14px 28px; } }
Выявили узкое место: ручное извлечение данных
Локальная ИИ + интеграция + защищённый сервер
Обучение команды, тестирование, go-live
Улучшение точности и расширение
время обработки
(10 дней → 2 часа)
люди на процесс
(5 → 1 чел)
точность
(<0,5% ошибок)
180K инвест → 4 мес окупаемость
"Александра пришла, посмотрела, поняла. Четыре месяца спустя — наша команда свободна, ошибки почти исчезли. Это была трансформация."