        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #2c2d28;
        }

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

        header {
            background-color: #2c2d28;
            position: fixed;
            top: 0;
            width: 100%;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            margin-right: 50px;
            margin:center;
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        .toggle-btn {
            background: #2563eb;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .toggle-btn:hover {
            background: #2c2d28;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Стили для иконок в хедере */
        .header-icons {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-right: 20px;
        }

        .header-icon-link {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .header-icon-link:hover {
            transform: scale(1.1);
        }

        .header-icon {
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

        /* Кнопка "Личный кабинет" — иконка с тёмным hover */
        .cabinet-btn {
            padding: 8px;
            border-radius: 10px;
            background: transparent;
            border: none;
            transition: background 0.25s, transform 0.25s;
        }

        .cabinet-btn:hover {
            background: rgba(0, 0, 0, 0.45);
            transform: scale(1.08);
        }

        .cabinet-btn .header-icon {
            width: 32px;
            height: 32px;
        }

        .cabinet-btn .cabinet-text {
            display: none;
        }

        @media (max-width: 768px) {
            .header-icons {
                gap: 10px;
            }
            .header-icon {
                width: 28px;
                height: 28px;
            }
            .cabinet-btn .header-icon {
                width: 28px;
                height: 28px;
            }
        }

        .hero {
            padding: 120px 0 80px;
            margin-top: 0;
        }

        /* Заголовок hero — одна строка, fluid font */
        .hero-title {
            white-space: nowrap;
            font-size: clamp(1.4rem, 4vw, 3rem);
            line-height: 1.15;
        }

        /* Акцентный блок */
        .accent-block {
            background: #565652;
            padding: 0 0 40px 0;
            text-align: center;
        }

        .accent-block-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            max-width: 780px;
            margin: 0 auto;
            text-align: center;
        }

        .accent-block-icon {
            font-size: 4rem;
            flex-shrink: 0;
        }

        .accent-block p {
            color: #ffffff;
            font-size: 1.5rem;
            line-height: 1.6;
            text-align: center;
        }

        .accent-block strong {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .accent-block {
                padding: 40px 20px;
            }
            .accent-block-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .accent-block p {
                font-size: 1.1rem;
            }
            .accent-block-icon {
                font-size: 3rem;
            }
        }

        .hero-content {
            width: 100%;
            margin: 0;
            padding: 0;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: white;
        }

        .hero p {
            font-size: 1.25rem;
            color: #64748b;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #2c2d28;
            color: #2563eb;
            padding: 1rem 2rem;
            border: 2px solid #2563eb;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            background: #eff6ff;
            transform: translateY(-2px);
        }

        .btn-secondary {
            border: 2px solid #2563eb;
            background: #2c2d28;
            color: #2563eb;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            background: transparent;
        }

        .btn-secondary:hover {
            background: #eff6ff;
        }

        .hero-image {
            margin-top: 80px;
            height: 400px;
            background: linear-gradient(135deg, #dbeafe, #cffafe);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .hero-image-content {
            text-align: center;
            color: #94a3b8;
        }

        .hero-image-icon {
            font-size: 5rem;
            margin-bottom: 1rem;
        }

        .features {
            padding: 80px 0;
            background: #2c2d28;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: white;
        }

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

        .feature-card {
            background: linear-gradient(135deg, #eff6ff, #cffafe);
            padding: 2rem;
            border-radius: 12px;
            transition: all 0.3s;
        }

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

        .feature-number {
            width: 50px;
            height: 50px;
            background: #2563eb;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #1e293b;
            text-align: center;
        }

        .feature-card p {
            color: #64748b;
        }

        .products {
            padding: 80px 0;
            background: #2c2d28;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .section-subtitle {
            text-align: center;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

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

        .product-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

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

        .product-card.featured {
            border: 2px solid #2563eb;
            transform: translateY(-8px);
        }

        .badge {
            background: #2563eb;
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .product-card h3 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
            color: #1e293b;
        }

        .price {
            font-size: 2rem;
            font-weight: bold;
            color: #2563eb;
            margin-bottom: 1.5rem;
        }

        .product-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .product-features li {
            padding: 0.5rem 0;
            color: #4b5563;
            position: relative;
            padding-left: 1.5rem;
        }

        .product-features li:before {
            content: ">";
            position: absolute;
            left: 0;
            color: #2563eb;
            font-weight: bold;
        }

        .product-button {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            margin-top: auto;
        }

        .product-card:not(.featured) .product-button {
            background: transparent;
            border: 2px solid #2563eb;
            color: #2563eb;
        }

        .product-button:hover {
            transform: scale(1.02);
        }

        /* Карточки с фото-фоном (автоматика) */
        .product-card--photo {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }
        /* Тёмный градиентный оверлей для читаемости */
        .product-card--photo::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                160deg,
                rgba(20, 22, 20, 0.78) 0%,
                rgba(20, 22, 20, 0.60) 60%,
                rgba(20, 22, 20, 0.45) 100%
            );
            border-radius: inherit;
            z-index: 0;
        }
        .product-card--photo h3,
        .product-card--photo .product-features {
            position: relative;
            z-index: 1;
        }
        .product-card--photo h3 {
            color: #ffffff;
            text-shadow: 0 1px 4px rgba(0,0,0,0.4);
        }
        .product-card--photo .product-features li {
            color: rgba(255,255,255,0.88);
        }
        .product-card--photo .product-features li::before {
            color: #60a5fa;
        }

        .contact {
            padding: 80px 0;
            background: #565652;
            color: white;
        }

        .contact .section-title {
            color: white;
        }

        .contact .section-subtitle {
            color: #bfdbfe;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .contact-item {
            text-align: center;
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-item h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        footer {
            background: #2c2d28;
            color: #94a3b8;
            padding: 2rem 0;
            text-align: center;
        }

        @media (max-width: 768px) {
            .nav-links, .toggle-btn, .header-icons {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
                width: 100%;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .hero-image {
                height: 300px;
            }

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

            .products-grid {
                grid-template-columns: 1fr;
            }

            .product-card.featured {
                transform: none;
            }
        }

        /* ── Иконка вместо цифры в преимуществах ── */
        .feature-icon {
            font-size: 2.6rem;
            margin-bottom: 1rem;
            line-height: 1;
            text-align: center;
        }

        /* ── Статистика / соцдоказательство ── */
        .stats-section {
            background: #2c2d28;
            padding: 52px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            max-width: 700px;
            margin: 0 auto;
        }
        .stat-item {
            text-align: center;
            padding: 20px 16px;
            border-right: 1px solid rgba(255,255,255,0.1);
        }
        .stat-item:last-child { border-right: none; }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.6);
            font-weight: 500;
        }
        @media (max-width: 640px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .stat-item:nth-child(1),
            .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
        }

        /* ── Как мы работаем ── */
        .process-section {
            background: #2c2d28;
            padding: 80px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .process-section .section-title { color: #ffffff; }
        .process-steps {
            display: flex;
            align-items: flex-start;
            gap: 0;
            margin-top: 48px;
        }
        .process-step {
            flex: 1;
            text-align: center;
            padding: 0 16px;
        }
        .process-icon { font-size: 2.6rem; margin-bottom: 12px; line-height: 1; }
        .process-num {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            width: 22px; height: 22px;
            border-radius: 50%;
            line-height: 22px;
            text-align: center;
            margin-bottom: 8px;
        }
        .process-step h3 { font-size: 1.05rem; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
        .process-step p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
        .process-arrow {
            font-size: 1.8rem;
            color: rgba(255,255,255,0.3);
            padding-top: 24px;
            flex-shrink: 0;
        }
        @media (max-width: 768px) {
            .process-steps { flex-direction: column; align-items: center; gap: 4px; }
            .process-arrow { transform: rotate(90deg); padding: 0; }
            .process-step { max-width: 260px; }
        }

        /* ── Контакты: ссылки ── */
        .contact-item a {
            color: white;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .contact-item a:hover { opacity: 0.75; text-decoration: underline; }

        /* ── Новый Футер ── */
        .site-footer { background: #1a1b17; color: #9ca3af; }
        .footer-main { padding: 56px 0 40px; }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }
        .footer-brand { display: flex; align-items: flex-start; gap: 20px; }
        .footer-logo {
            height: 40px;
            object-fit: contain;
            flex-shrink: 0;
            filter: brightness(0) invert(1);
            display: block;
        }
        .footer-brand-body { flex: 1; }
        .footer-brand p { font-size: 0.875rem; line-height: 1.6; color: #9ca3af; margin-bottom: 20px; }
        .footer-social { display: flex; gap: 12px; }
        .footer-social .social-link {
            width: 36px; height: 36px;
            background: rgba(255,255,255,0.08);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s;
        }
        .footer-social .social-link:hover { background: rgba(255,255,255,0.18); }
        .footer-social .social-link img { width: 20px; height: 20px; }
        .footer-grid h4 {
            color: #fff;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }
        .footer-grid ul { list-style: none; }
        .footer-grid ul li { margin-bottom: 10px; }
        .footer-grid a { color: #9ca3af; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
        .footer-grid a:hover { color: #fff; }
        .footer-contacts p { font-size: 0.875rem; margin-bottom: 8px; }
        .footer-contacts a { color: #9ca3af; text-decoration: none; }
        .footer-contacts a:hover { color: #fff; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 16px 0;
            text-align: center;
            font-size: 0.8rem;
        }
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
        }
        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; }
        }

        /* ── Floating-виджет связи ── */
        .float-contact {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 10px;
            pointer-events: none;
        }
        .float-menu {
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            pointer-events: none;
            transform: translateY(12px);
            transition: opacity 0.25s, transform 0.25s;
        }
        .float-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
        .float-item {
            display: flex; align-items: center; gap: 10px;
            background: #fff; color: #2c2d28;
            text-decoration: none;
            padding: 10px 16px;
            border-radius: 30px;
            font-size: 0.875rem; font-weight: 600;
            box-shadow: 0 4px 16px rgba(0,0,0,0.14);
            white-space: nowrap;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .float-item:hover { transform: translateX(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
        .float-item-icon { font-size: 1.1rem; }
        .float-btn {
            width: 54px; height: 54px;
            background: #2c2d28;
            color: white;
            border: none; border-radius: 50%;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(0,0,0,0.3);
            transition: transform 0.25s, background 0.2s;
            display: flex; align-items: center; justify-content: center;
            pointer-events: auto;
        }
        .float-btn:hover { background: #3d3e38; }
        .float-btn.active { transform: rotate(45deg); background: #3d3e38; }