 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #ffffff;
            color: #1e293b;
            line-height: 1.5;
            scroll-behavior: smooth;
        }
        
        @import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300;14..32,400;14..32,600;14..32,700;14..32,800&display=swap');
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* Шапка */
        .header {
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
            background: rgba(255,255,255,0.95);
        }
        
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #E31E24 0%, #B91C1C 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
        }
        
        .logo span {
            color: #1e293b;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            font-weight: 500;
        }
        
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            font-weight: 600;
            color: #1e293b;
            transition: color 0.2s;
        }
        
        .nav-links a:hover {
            color: #E31E24;
        }
        
        .contact-phone {
            background: #E31E24;
            color: white !important;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 700;
        }
        
        .contact-phone:hover {
            background: #b91c1c;
            color: white;
        }
        
        /* Герой */
        .hero {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 60px 0 64px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-content {
            flex: 1;
            min-width: 280px;
        }
        
        .hero-badge {
            background: #E31E24;
            color: white;
            display: inline-block;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
        }
        
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #0f172a;
        }
        
        .hero h1 i {
            color: #E31E24;
            font-style: normal;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: #334155;
            margin-bottom: 24px;
            max-width: 90%;
        }
        
        /* Статистика под заголовком */
        .stats-row {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }
        
        .stat-badge {
            background: white;
            padding: 8px 20px;
            border-radius: 60px;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(0,0,0,0.03);
            border: 1px solid #e2e8f0;
        }
        
        .stat-badge span {
            color: #E31E24;
            font-size: 1.2rem;
            margin-right: 6px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: #E31E24;
            color: white;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.2s;
            display: inline-block;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            background: #b91c1c;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -5px rgba(227,30,36,0.3);
        }
        
        .btn-outline {
            border: 2px solid #cbd5e1;
            background: transparent;
            padding: 10px 30px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            color: #1e293b;
            transition: all 0.2s;
        }
        
        .btn-outline:hover {
            border-color: #E31E24;
            color: #E31E24;
        }
        
        /* Ротатор картинок */
        .hero-slider {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .slider-container {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
            background: #1e293b;
        }
        
        .slider-images {
            position: relative;
            height: 340px;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            object-fit: cover;
            background-size: cover;
            background-position: center;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 60px;
            cursor: pointer;
            font-size: 1.8rem;
            font-weight: bold;
            color: #1e293b;
            transition: all 0.2s;
            z-index: 10;
        }
        
        .slider-btn:hover {
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .slider-prev {
            left: 16px;
        }
        
        .slider-next {
            right: 16px;
        }
        
        .slider-dots {
            position: absolute;
            bottom: 16px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            background: rgba(255,255,255,0.6);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .dot.active {
            background: #E31E24;
            width: 24px;
        }
        
        /* Секции */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 48px;
            color: #0f172a;
        }
        
        /* Карточки каталога */
        .catalog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }
        
        .product-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border: 1px solid #eef2ff;
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 35px -12px rgba(0,0,0,0.1);
            border-color: #E31E24;
        }
        
        .product-img {
            height: 220px;
            background-size: cover;
            background-position: center;
            background-color: #f1f5f9;
        }
        
        .product-info {
            padding: 24px;
        }
        
        .product-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        .product-desc {
            color: #475569;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .product-price {
            font-weight: 800;
            font-size: 1.4rem;
            color: #E31E24;
            margin-bottom: 16px;
        }
        
        .card-buttons {
            display: flex;
            gap: 12px;
        }
        
        .btn-small {
            padding: 8px 16px;
            font-size: 0.9rem;
        }
        
        .btn-catalog {
            text-align: center;
            margin-top: 16px;
        }
        
        .principles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
        }
        
        .principle-card {
            background: #f8fafc;
            padding: 32px 24px;
            border-radius: 32px;
            transition: all 0.25s;
            border: 1px solid #eef2ff;
        }
        
        .principle-card:hover {
            transform: translateY(-5px);
            border-color: #E31E24;
        }
        
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        
        .why-item {
            background: white;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 4px 6px -2px rgba(0,0,0,0.03);
            border: 1px solid #eef2ff;
        }
        
        .clients-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 48px;
            margin-top: 32px;
            list-style: none;
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .clients-logos li {
            background: #f1f5f9;
            padding: 12px 28px;
            border-radius: 60px;
        }
        
        .contact-cta {
            background: linear-gradient(120deg, #0f172a, #1e293b);
            color: white;
            border-radius: 48px;
            text-align: center;
            padding: 64px 32px;
        }
        
        footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 48px 0 24px;
        }
        
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
            }
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .slider-images {
                height: 260px;
            }
        }