        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f5f7fc;
            color: #1a2c3e;
            line-height: 1.5;
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
        }

        .container {
            max-width: 1280px;
            width: 100%;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }

/* ========== POPUP СТИЛИ ========== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9;
    display: none;
    align-items: flex-start;        /* ← выравниваем по верху */
    justify-content: center;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;               /* ← скролл у оверлея */
    padding: 40px 20px;             /* ← отступы сверху и снизу */
}
.popup-overlay.active { display: flex; }
.popup-container {
    background: white;
    border-radius: 32px;
    max-width: 500px;
    width: 100%;
    margin: auto;                   /* ← центрируем */
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
    z-index:9;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-close:hover { color: #c0392b; transform: rotate(90deg); }
.popup-header {
    background: linear-gradient(135deg, #c0392b, #e05a4a);
    padding: 30px 30px 20px;
    border-radius: 32px 32px 0 0;
    color: white;
    text-align: center;
}
.popup-header h3 { font-size: 1.6rem; margin-bottom: 8px; color: white; }
.popup-header p { opacity: 0.9; font-size: 0.9rem; }
.popup-body { padding: 30px; }
.popup-body input, .popup-body select, .popup-body textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.popup-body input:focus, .popup-body select:focus, .popup-body textarea:focus {
    outline: none;
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.popup-body .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.popup-body button { width: 100%; margin-top: 10px; }
.popup-note { font-size: 0.7rem; color: #a0a0b0; text-align: center; margin-top: 15px; }
@media (max-width: 500px) {
    .popup-body .form-row { grid-template-columns: 1fr; }
    .popup-header h3 { font-size: 1.3rem; }
    .popup-container {
        width: 100%;
        border-radius: 24px;
        margin: auto;
    }
    .popup-body { padding: 20px; }
    .popup-header { padding: 24px 20px 16px; border-radius: 24px 24px 0 0; }
    .popup-close { top: 16px; right: 16px; }
    .popup-overlay { padding: 20px 12px; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn { from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
		
		
		
		

        /* ========== Header ========== */
        header {
            background: rgba(1, 1, 16, 0.95);
            box-shadow: 0 2px 20px rgba(0,0,0,0.2);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 3;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }
        header.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            background: rgba(1, 1, 22, 0.98);
        }
        .navbar {
            display: grid;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: all 0.3s ease;
grid-template-areas: "logo header-phone mobile-menu-btn";
gap: 0;
            flex-wrap: wrap;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #ffffff;
            transition: all 0.3s ease;
            white-space: nowrap;
			grid-area: logo;
        }
        @media (max-width: 480px) { .logo { font-size: 1.3rem;} }
        .logo span { color: #c0392b; }
        .header-phone {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(192, 57, 43, 0.2);
            padding: 6px 14px;
            border-radius: 40px;
            transition: 0.3s ease;
            white-space: nowrap;
            backdrop-filter: blur(4px);
			grid-area: header-phone;
        }
        .header-phone a {color: #ffffffd1; text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: 0.3s; }
        .header-phone:hover { background: #c0392b; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(192,57,43,0.3); }
        .header-phone:hover a { color: white; }
        .header-phone i { color: #e07a5f; font-size: 0.8rem; transition: 0.3s; }
        .header-phone:hover i { color: white; }
        .mobile-menu-btn {
            background: none;
            border: none;
            cursor: pointer;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
			grid-area: mobile-menu-btn;
        }
        .mobile-menu-btn span {
            display: block;
			width: 33px;
			height: 5px;
			background: #c0392b;
			margin: 3px 0;	
			transition: 0.3s;
			border-radius: 2px;
        }
        .mobile-nav {
            position: fixed;
			top: 0;
			right: -100%;
			width: 280px;
			height: 100vh;
			max-height: 100%;
			overflow-y: auto;
			background: #0a0a1a;
			z-index:3;
			padding: 80px 25px 30px;
			transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
			box-shadow: -5px 0 30px rgba(0,0,0,0.5);
        }
		.mobile-nav::-webkit-scrollbar {
    width: 3px;
}
.mobile-nav::-webkit-scrollbar-track {
    background: transparent;
}
.mobile-nav::-webkit-scrollbar-thumb {
    background: rgba(192, 57, 43, 0.5);
    border-radius: 10px;
}
.mobile-nav::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}
        .mobile-nav.active { right: 0; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav ul li { margin-bottom: 20px; opacity: 0; transform: translateX(50px); transition: all 0.3s ease; }
        .mobile-nav.active ul li { opacity: 1; transform: translateX(0); }
        .mobile-nav ul li a { color: #ffffff; text-decoration: none; font-size: 1rem; font-weight: 500; transition: 0.2s; display: block; }
        .mobile-nav ul li a:hover { color: #c0392b; padding-left: 10px; }
        .mobile-nav .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 26px;
            cursor: pointer;
            transition: 0.3s;
        }
        .mobile-nav .close-btn:hover { transform: rotate(90deg); color: #c0392b; }
        .mobile-nav .mobile-phone {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.3s ease 0.5s;
        }
        .mobile-nav.active .mobile-phone { opacity: 1; transform: translateX(0); }
        .mobile-nav .mobile-phone a { color: #c0392b; font-weight: 600; text-decoration: none; display: inline-block; }
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 2;
            display: none;
            transition: 0.3s;
        }
        .overlay.active { display: block; }
       
        main { padding-top: 0; }
		@media (max-width: 600px) {
			.navbar {
				padding: 10px 20px;
			}
		}
		
		@media (max-width: 400px) {
			.header-phone a {
				line-height: normal;
				font-size: 12px;
			}
		}
		@media (max-width: 360px) {
			.navbar {
				grid-template-areas:         "logo logo mobile-menu-btn"        "header-phone header-phone mobile-menu-btn";
				padding: 0 20px 0;
				
			}
			.header-phone {
				width: fit-content;
				padding: 3px 9px;
				border-radius: 8px;
				margin-bottom: 10px;
			}
			.logo {
				padding-top: 5px;
			}
		}

        /* ========== Buttons ========== */
        .btn {
            display: inline-block;
            background: #c0392b;
            color: white;
            padding: 12px 24px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .btn:hover::before { width: 300px; height: 300px; }
        .btn-outline { background: transparent; border: 1.5px solid #c0392b; color: #c0392b; }
        .btn-outline:hover { background: #c0392b; color: white; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(192,57,43,0.2); }
        .btn-sm { padding: 6px 16px; font-size: 0.8rem; }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(192,57,43,0.3); }

        /* ========== Typography ========== */
        h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
        h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.01em; }
        h3 { margin: 16px 0 12px; }
        @media (max-width: 768px) { h1 { font-size: 1.8rem; } h2 { font-size: 1.5rem; } }
        @media (max-width: 480px) { h1 { font-size: 1.5rem; } h2 { font-size: 1.3rem; } }
        .section { padding: 50px 0; border-bottom: 1px solid #eef2f6; position: relative; overflow: hidden; }
        @media (max-width: 768px) { .section { padding: 40px 0; } }
        .section-gray { background: #f8fafc; }

        .section-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.06;
            z-index: 0;
            pointer-events: none;
        }
        .bg-laptop { background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=2072&auto=format'); }
        .section > .container { position: relative; z-index: 2; }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

        .grid-3-sym { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        @media (max-width: 600px) { .grid-3-sym { grid-template-columns: 1fr; } }

        .card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            border: 1px solid rgba(255,255,255,0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);
            border-color: #e8c5c0;
            background: white;
        }

        .quick-form {
            background: white;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            margin-top: 20px;
            width: 100%;
            transition: all 0.3s ease;
            border: 1px solid #eef2f6;
        }
        .quick-form:hover { transform: translateY(-3px); box-shadow: 0 25px 50px rgba(0,0,0,0.12); }
        .quick-form h3 { font-size: 1.2rem; margin-bottom: 6px; color: #1a1a2e; }
        .quick-form p { color: #5a6a7a; margin-bottom: 16px; font-size: 0.85rem; }
        .quick-form input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #cfdfd9;
            border-radius: 30px;
            font-family: inherit;
            font-size: 0.9rem;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            background: white;
        }
        .quick-form input:focus { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,0.1); outline: none; }
        .quick-form button { width: 100%; }
        .quick-note { font-size: 0.65rem; color: #a0a0b0; margin-top: 12px; text-align: center; }

        /* ========== HERO ========== */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 700px;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        #space-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        .hero-content-wrapper {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .hero-content {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }
        .hero-left { flex: 1.2; min-width: 280px; }
        .hero-right { flex: 0.8; }
        @media (max-width: 900px) {
            .hero-content { flex-direction: column; }
            .hero-left, .hero-right { width: 100%; }
        }
        .pre-header {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(192, 57, 43, 0.15);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(192, 57, 43, 0.4);
            border-radius: 40px;
            padding: 6px 18px;
            margin-bottom: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #e07a5f;
            letter-spacing: 0.3px;
        }
        .pre-header i { font-size: 0.85rem; color: #c0392b; }
        .hero h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
            color: white;
        }
        .hero h1 span {
            color: #e74c3c;
            position: relative;
            display: inline-block;
        }
        #.hero h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #c0392b, #e74c3c);
            border-radius: 4px;
        }
        .slider-container { margin-bottom: 25px; }
        .slider-text {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            min-height: 80px;
            line-height: 1.5;
        }
        .slider-dots { display: flex; gap: 12px; margin-top: 15px; }
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s;
        }
        .dot.active { width: 28px; background: #c0392b; }
        .dot:hover { background: #c0392b; transform: scale(1.2); }
        .fade-slide { animation: fadeEffect 0.5s ease-in-out; }
        @keyframes fadeEffect {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 10px; }
        .scene-caption {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.6);
            z-index: 1;
            pointer-events: none;
        }
        @media (max-width: 768px) {
            .hero { padding-top: 70px; min-height: 600px; }
            .hero h1 { font-size: 2rem; }
            .slider-text { font-size: 0.95rem; min-height: 100px; }
            .pre-header { font-size: 0.7rem; padding: 4px 14px; }
            .scene-caption { font-size: 0.6rem; bottom: 10px; left: 10px; }
        }
        @media (max-width: 480px) {
            .hero { padding-top: 60px; min-height: 550px; }
            .hero h1 { font-size: 1.5rem; }
            .hero-buttons .btn { padding: 10px 18px; font-size: 0.8rem; }
            .slider-text { font-size: 0.85rem; min-height: 80px; }
        }

        /* ========== БЛОК "Комплексный подход к e‑commerce" ========== */
        .services {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #1a2c3e 0%, #2c3e50 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .section-header p {
            color: #6c7a8a;
            max-width: 650px;
            margin: 0 auto;
            font-size: 1.05rem;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .service-card {
            background: rgba(255,255,255,0.7);
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.35s ease;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-6px);
            background: white;
            border-color: rgba(192,57,43,0.15);
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.12);
        }
        .service-image {
            height: 200px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .service-card:hover .service-image img { transform: scale(1.05); }
        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(192,57,43,0.25), rgba(0,0,0,0.1));
        }
        .service-icon {
            position: absolute;
            bottom: 16px;
            left: 16px;
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.95);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            z-index: 2;
            transition: all 0.3s ease;
        }
        .service-icon i {
            font-size: 1.4rem;
            color: #c0392b;
            transition: all 0.3s ease;
        }
        .service-card:hover .service-icon {
            background: #c0392b;
            transform: scale(1.05);
        }
        .service-card:hover .service-icon i { color: white; }
        .service-content {
            padding: 24px 24px 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .service-content h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a2c3e;
        }
        .service-content p {
            color: #6c7a8a;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 16px 0;
        }
        .badge {
            background: #f0f2f8;
            color: #4a5b6e;
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            display: inline-block;
        }
        .badge-green { background: #e3f7ec; color: #2e7d32; }
        .badge-orange { background: #fff3e0; color: #ed6c02; }
        .badge-red { background: #fee8e6; color: #c0392b; }
        .prices {
            margin: 20px 0 16px;
            display: flex;
            gap: 12px;
            align-items: baseline;
            flex-wrap: wrap;
            margin-top: auto;
        }
        .price-old {
            font-size: 1rem;
            color: #9aa6b5;
            text-decoration: line-through;
            font-weight: 500;
        }
        .price-new {
            font-size: 1.6rem;
            font-weight: 800;
            color: #c0392b;
        }
        .price-new small { font-size: 0.8rem; font-weight: 500; }
        .card-button {
            display: inline-block;
            width: 100%;
            text-align: center;
            background: linear-gradient(135deg, #c0392b, #96281b);
            color: white;
            padding: 12px 20px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 8px;
        }
        .card-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(192,57,43,0.3);
            background: linear-gradient(135deg, #96281b, #c0392b);
        }
        .small-text {
            font-size: 0.7rem;
            color: #8a99aa;
            text-align: center;
            margin-top: 12px;
        }
        @media (max-width: 992px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .service-card:nth-child(3) { grid-column: span 2; }
        }
        @media (max-width: 640px) {
            .services-grid { grid-template-columns: 1fr; gap: 20px; }
            .service-card:nth-child(3) { grid-column: span 1; }
            .section-header h2 { font-size: 1.8rem; }
            .service-image { height: 180px; }
        }

        /* ========== БЛОК "ЧТО МЫ РАЗРАБАТЫВАЕМ" ========== */
        .what-we-build {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        .build-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .build-card {
            background: rgba(255,255,255,0.7);
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.35s ease;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
            height: 100%;
        }
        .build-card:hover {
            transform: translateY(-6px);
            background: white;
            border-color: rgba(192,57,43,0.15);
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.12);
        }
        .build-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .build-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .build-card:hover .build-image img { transform: scale(1.05); }
        .build-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0.1));
        }
        .build-number {
            position: absolute;
            top: 16px;
            left: 20px;
            font-size: 2.8rem;
            font-weight: 800;
            color: rgba(255,255,255,0.2);
            z-index: 2;
            line-height: 1;
            transition: all 0.3s ease;
            font-family: 'Inter', monospace;
        }
        .build-card:hover .build-number {
            color: rgba(255,255,255,0.4);
            transform: translateX(4px);
        }
        .build-icon {
            position: absolute;
            bottom: 16px;
            left: 16px;
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.95);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            z-index: 2;
            transition: all 0.3s ease;
        }
        .build-icon i {
            font-size: 1.4rem;
            color: #c0392b;
            transition: all 0.3s ease;
        }
        .build-card:hover .build-icon {
            background: #c0392b;
            transform: scale(1.05);
        }
        .build-card:hover .build-icon i { color: white; }
        .build-content {
            padding: 22px 24px 26px;
        }
        .build-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1a2c3e;
        }
        .build-content p {
            color: #6c7a8a;
            line-height: 1.55;
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        .build-dot {
            margin-top: 20px;
            width: 32px;
            height: 3px;
            background: #c0392b;
            border-radius: 4px;
            opacity: 0.4;
            transition: all 0.3s ease;
        }
        .build-card:hover .build-dot { opacity: 1; width: 48px; }
        @media (max-width: 992px) {
            .build-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .build-card:nth-child(9) { grid-column: span 2; }
        }
        @media (max-width: 640px) {
            .build-grid { grid-template-columns: 1fr; gap: 20px; }
            .build-card:nth-child(9) { grid-column: span 1; }
            .build-image { height: 180px; }
            .build-number { font-size: 2.2rem; top: 12px; left: 16px; }
        }

        /* ========== БЛОК «ИНДИВИДУАЛЬНАЯ РАЗРАБОТКА» ========== */
        .individual-dev-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 100%);
            position: relative;
            overflow: hidden;
        }
        .individual-dev-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: repeating-linear-gradient(90deg, rgba(192,57,43,0.03) 0px, rgba(192,57,43,0.03) 1px, transparent 1px, transparent 60px), repeating-linear-gradient(0deg, rgba(192,57,43,0.03) 0px, rgba(192,57,43,0.03) 1px, transparent 1px, transparent 60px);
            pointer-events: none;
        }
        .individual-dev-section::after {
            content: '</>';
            position: absolute;
            bottom: 20px;
            right: 30px;
            font-size: 7rem;
            font-weight: 800;
            color: rgba(192,57,43,0.05);
            font-family: monospace;
            pointer-events: none;
        }
        .individual-dev-section .section-header h2 {
            background: linear-gradient(135deg, #ffffff 0%, #e07a5f 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .individual-dev-section .section-header p { color: #8a9ab0; }
        .indev-hero {
            background: linear-gradient(135deg, rgba(192,57,43,0.15) 0%, rgba(0,0,0,0.3) 100%);
            border: 1px solid rgba(192,57,43,0.3);
            border-radius: 32px;
            padding: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }
        .indev-hero:hover {
            border-color: rgba(192,57,43,0.6);
            box-shadow: 0 20px 40px -15px rgba(192,57,43,0.2);
            transform: translateY(-5px);
        }
        .indev-hero-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        .indev-hero-top h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin: 0;
        }
        .price-badge-large {
            background: linear-gradient(135deg, #c0392b, #96281b);
            padding: 10px 24px;
            border-radius: 40px;
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
            box-shadow: 0 5px 15px rgba(192,57,43,0.3);
        }
        .indev-description {
            color: #b8c5d6;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 80%;
        }
        .indev-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .indev-feature-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 20px;
            transition: all 0.3s ease;
            height: 100%;
        }
        .indev-feature-card:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(192,57,43,0.4);
            transform: translateY(-5px);
        }
        .indev-feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(192,57,43,0.15);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }
        .indev-feature-icon i {
            font-size: 1.5rem;
            color: #e07a5f;
        }
        .indev-feature-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
        }
        .indev-feature-card p {
            font-size: 0.8rem;
            color: #8a9ab0;
            line-height: 1.5;
        }
        .indev-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 30px 0 25px;
        }
        .tech-pill {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            padding: 8px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: #b8c5d6;
            transition: all 0.3s ease;
        }
        .tech-pill:hover {
            background: rgba(192,57,43,0.2);
            border-color: rgba(192,57,43,0.5);
            color: #e07a5f;
            transform: translateY(-2px);
        }
        .indev-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #c0392b, #96281b);
            color: white;
            padding: 14px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .indev-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(192,57,43,0.4);
            gap: 16px;
        }
        .advantages-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }
        .advantage-item {
            text-align: center;
            padding: 25px 20px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        .advantage-item:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.05);
            border-color: rgba(192,57,43,0.3);
        }
        .advantage-number {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff, #e07a5f);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 8px;
        }
        .advantage-label { font-size: 0.8rem; color: #8a9ab0; }
        @media (max-width: 1024px) {
            .indev-features-grid { grid-template-columns: repeat(2, 1fr); }
            .advantages-section { grid-template-columns: repeat(2, 1fr); }
            .indev-description { max-width: 100%; }
        }
        @media (max-width: 768px) {
            .indev-features-grid { grid-template-columns: 1fr; }
            .indev-hero-top { flex-direction: column; text-align: center; }
            .indev-hero-top h3 { font-size: 1.5rem; }
        }
        @media (max-width: 480px) {
            .advantages-section { grid-template-columns: 1fr; }
            .indev-hero { padding: 25px; }
        }

        /* ========== БЛОК «ИНТЕГРАЦИИ» ========== */
        .integrations-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 100%);
            position: relative;
            overflow: hidden;
        }
        .integrations-section .section-header h2 {
            background: linear-gradient(135deg, #ffffff 0%, #e07a5f 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .integrations-section .section-header p { color: #8a9ab0; }
        .integrations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            position: relative;
            z-index: 2;
            margin-bottom: 50px;
        }
        .integration-category {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 28px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .integration-category:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.06);
            border-color: rgba(192,57,43,0.4);
        }
        .integration-category h3 {
            color: #ffffff;
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .integration-category h3 i {
            font-size: 1.5rem;
            color: #e07a5f;
            transition: all 0.3s ease;
        }
        .integration-category:hover h3 i {
            transform: scale(1.1);
            color: #c0392b;
        }
        .integration-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
        }
        .integration-item {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 40px;
            padding: 6px 16px;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #b8c5d6;
            transition: all 0.3s ease;
        }
        .integration-item i { font-size: 0.9rem; color: #e07a5f; }
        .integration-item:hover {
            background: rgba(192,57,43,0.2);
            border-color: rgba(192,57,43,0.5);
            color: #e07a5f;
            transform: translateY(-2px);
        }
        .integration-item:hover i { color: #c0392b; }
        .category-description {
            font-size: 0.8rem;
            color: #8a9ab0;
            line-height: 1.5;
            margin-top: 15px;
        }
        .integration-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            position: relative;
            z-index: 2;
            margin-top: 20px;
        }
        .integration-feature {
            text-align: center;
            padding: 25px 20px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        .integration-feature:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.05);
            border-color: rgba(192,57,43,0.3);
        }
        .integration-feature i {
            font-size: 2.2rem;
            color: #e07a5f;
            margin-bottom: 15px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .integration-feature:hover i {
            transform: scale(1.1);
            color: #c0392b;
        }
        .integration-feature h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: white;
        }
        .integration-feature p {
            font-size: 0.8rem;
            color: #8a9ab0;
            line-height: 1.5;
        }
        .integrations-footer {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }
        .btn-integration {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #c0392b, #96281b);
            color: white;
            padding: 14px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .btn-integration:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(192,57,43,0.4);
            gap: 16px;
        }
        .integrations-slider {
            display: none;
            position: relative;
            z-index: 2;
            padding: 0 30px;
            margin-bottom: 40px;
            padding-bottom: 40px;
        }
        .integrations-slider .swiper-pagination {
            position: relative;
            bottom: auto;
            margin-top: 25px;
        }
        .swiper-button-next, .swiper-button-prev {
            color: white;
            background: #c0392b;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
		.projects-slider-wrapper .swiper-button-prev, .projects-slider-wrapper .swiper-button-next {
			color: #fff;
		}
        .swiper-button-next:after, .swiper-button-prev:after { font-size: 1.2rem; }
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background: rgba(0,0,0,0.5);
            color: #e07a5f;
        }
        .swiper-pagination-bullet { background: #e07a5f; }
        .swiper-pagination-bullet-active { background: #c0392b; }
        @media (max-width: 992px) {
            .integrations-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .integration-features { grid-template-columns: 1fr; gap: 15px; }
        }
        @media (max-width: 768px) {
            .integrations-grid { display: none; }
            .integrations-slider { display: block; }
            .integrations-section .section-header h2 { font-size: 1.8rem; }
            .integration-category { padding: 24px; }
        }

        /* ========== БЛОК «ПОЛУЧИТЕ КП ЗА 24 ЧАСА» ========== */
        .kp-section {
            padding: 80px 0 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            position: relative;
        }
        .kp-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .kp-form {
            background: white;
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.3s ease;
        }
        .kp-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 50px rgba(0,0,0,0.08);
        }
        .kp-form h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a2c3e;
        }
        .kp-form .subtitle {
            color: #6c7a8a;
            font-size: 0.9rem;
            margin-bottom: 30px;
            border-left: 3px solid #c0392b;
            padding-left: 12px;
        }
        .form-group { margin-bottom: 20px; }
        .form-group input, .form-group select {
            width: 100%;
            padding: 14px 18px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 40px;
            font-family: inherit;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: #c0392b;
            box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
        }
        .form-group input::placeholder { color: #9aa6b5; }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .submit-btn {
            width: 100%;
            padding: 14px 24px;
            background: linear-gradient(135deg, #c0392b, #96281b);
            border: none;
            border-radius: 40px;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(192,57,43,0.3);
            gap: 15px;
        }
        .form-note {
            font-size: 0.7rem;
            color: #9aa6b5;
            text-align: center;
            margin-top: 16px;
        }
        .feedback-message {
            margin-top: 12px;
            font-size: 0.8rem;
            text-align: center;
            padding: 8px;
            border-radius: 30px;
        }
        .feedback-message.success { background: #e3f7ec; color: #2e7d32; }
        .feedback-message.error { background: #fee8e6; color: #c0392b; }
        .kp-visual {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .kp-visual img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .kp-visual:hover img { transform: scale(1.05); }
        .visual-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.35) 100%);
            z-index: 1;
        }
        .features-on-image {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 20px;
            z-index: 2;
        }
        .feature-card {
            background: rgba(255,255,255,0.95);
            border-radius: 18px;
            padding: 12px 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.3);
        }
        .feature-card:hover {
            transform: translateY(-5px);
            background: white;
            border-color: #c0392b;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .feature-card i {
            font-size: 1.3rem;
            color: #c0392b;
            margin-bottom: 6px;
            display: inline-block;
        }
        .feature-card h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #1a2c3e;
            margin-bottom: 3px;
        }
        .feature-card p { font-size: 0.65rem; color: #6c7a8a; }
        @media (max-width: 900px) {
            .kp-content { grid-template-columns: 1fr; gap: 30px; }
            .kp-form { order: 1; }
            .kp-visual { order: 0; max-height: 320px; }
            .kp-visual img { height: 320px; width: 100%; object-fit: cover; object-position: center 30%; }
            .features-on-image { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; gap: 10px; }
            .feature-card { padding: 8px 6px; }
            .feature-card i { font-size: 1.1rem; }
            .feature-card h4 { font-size: 0.75rem; }
            .feature-card p { font-size: 0.6rem; }
            .form-row { grid-template-columns: 1fr; gap: 20px; }
        }

        /* ========== БЛОК «ОПТИМИЗАЦИЯ» ========== */
        .optimization-section {
            padding: 80px 0 60px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        .optimization-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .optimization-card {
            background: rgba(255,255,255,0.7);
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.35s ease;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .optimization-card:hover {
            transform: translateY(-6px);
            background: white;
            border-color: rgba(192,57,43,0.15);
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.12);
        }
        .optimization-image {
            height: 220px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }
        .optimization-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .optimization-card:hover .optimization-image img { transform: scale(1.05); }
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0.1));
        }
        .optimization-number {
            position: absolute;
            top: 16px;
            left: 20px;
            font-size: 2.8rem;
            font-weight: 800;
            color: rgba(255,255,255,0.2);
            z-index: 2;
            line-height: 1;
            transition: all 0.3s ease;
            font-family: 'Inter', monospace;
        }
        .optimization-card:hover .optimization-number {
            color: rgba(255,255,255,0.4);
            transform: translateX(4px);
        }
        .optimization-icon {
            position: absolute;
            bottom: 16px;
            left: 16px;
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.95);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            z-index: 2;
            transition: all 0.3s ease;
        }
        .optimization-icon i {
            font-size: 1.4rem;
            color: #c0392b;
            transition: all 0.3s ease;
        }
        .optimization-card:hover .optimization-icon {
            background: #c0392b;
            transform: scale(1.05);
        }
        .optimization-card:hover .optimization-icon i { color: white; }
        .optimization-content {
            padding: 22px 24px 26px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .optimization-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a2c3e;
        }
        .optimization-content p {
            color: #6c7a8a;
            line-height: 1.55;
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        .optimization-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 16px 0 12px;
        }
        .meta-badge {
            background: #f0f2f8;
            color: #4a5b6e;
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            display: inline-block;
        }
        .meta-badge.highlight { background: #fee8e6; color: #c0392b; }
        .optimization-dot {
            margin-top: 20px;
            width: 32px;
            height: 3px;
            background: #c0392b;
            border-radius: 4px;
            opacity: 0.4;
            transition: all 0.3s ease;
        }
        .optimization-card:hover .optimization-dot { opacity: 1; width: 48px; }
        @media (max-width: 992px) { .optimization-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
        @media (max-width: 640px) { .optimization-grid { grid-template-columns: 1fr; gap: 20px; } }

        /* ========== БЛОК «ПЛАТФОРМЫ» ========== */
		i.fab.fa-bitrix img {
			width: 37px;
		}
		.platform-card:hover .platform-icon i.fab.fa-bitrix img {
			filter: brightness(0) saturate(100%) invert(100%);
		}
        .platforms-section {
            padding: 60px 0 80px;
            background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 100%);
            position: relative;
            overflow: hidden;
        }
        .platforms-section .section-header h2 {
            background: linear-gradient(135deg, #ffffff 0%, #e07a5f 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .platforms-section .section-header p { color: #8a9ab0; }
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            position: relative;
            z-index: 2;
        }
        .platform-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            transition: all 0.3s ease;
            height: 100%;
            padding: 28px;
        }
        .platform-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.06);
            border-color: rgba(192,57,43,0.4);
        }
        .platform-icon {
            width: 70px;
            height: 70px;
            background: rgba(192,57,43,0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .platform-card:hover .platform-icon {
            background: #c0392b;
            transform: scale(1.05);
        }
        .platform-icon i {
            font-size: 2rem;
            color: #e07a5f;
            transition: all 0.3s ease;
        }
        .platform-card:hover .platform-icon i { color: white; }
        .platform-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: white;
        }
        .platform-card p {
            color: #8a9ab0;
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        .platform-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .platform-item {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 40px;
            padding: 5px 14px;
            font-size: 0.7rem;
            font-weight: 500;
            color: #b8c5d6;
            transition: all 0.3s ease;
        }
        .platform-item:hover {
            background: rgba(192,57,43,0.2);
            border-color: rgba(192,57,43,0.5);
            color: #e07a5f;
            transform: translateY(-2px);
        }
        .platforms-slider {
            display: none;
            position: relative;
            z-index: 2;
            padding: 0 30px;
        }
        .platforms-slider .swiper-pagination {
            position: relative;
            bottom: auto;
            margin-top: 25px;
        }
        @media (max-width: 992px) { .platforms-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
        @media (max-width: 768px) {
            .platforms-grid { display: none; }
            .platforms-slider { display: block; }
            .platforms-section .section-header h2 { font-size: 1.8rem; }
            .platform-card { padding: 24px; }
        }

        /* ========== ПРОДВИЖЕНИЕ ========== */
        .promotion-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        .promo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-bottom: 30px;
        }
        .promo-card {
            background: rgba(255,255,255,0.7);
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.35s ease;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .promo-card:hover {
            transform: translateY(-6px);
            background: white;
            border-color: rgba(192,57,43,0.15);
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.12);
        }
        .promo-image {
            height: 200px;
            overflow: hidden;
            position: relative;
            flex-shrink: 0;
        }
        .promo-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .promo-card:hover .promo-image img { transform: scale(1.05); }
        .promo-number {
            position: absolute;
            top: 16px;
            left: 20px;
            font-size: 2.5rem;
            font-weight: 800;
            color: rgba(255,255,255,0.2);
            z-index: 2;
            line-height: 1;
            transition: all 0.3s ease;
            font-family: 'Inter', monospace;
        }
        .promo-card:hover .promo-number {
            color: rgba(255,255,255,0.4);
            transform: translateX(4px);
        }
        .promo-icon {
            position: absolute;
            bottom: 16px;
            left: 16px;
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.95);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            z-index: 2;
            transition: all 0.3s ease;
        }
        .promo-icon i {
            font-size: 1.4rem;
            color: #c0392b;
            transition: all 0.3s ease;
        }
        .promo-card:hover .promo-icon {
            background: #c0392b;
            transform: scale(1.05);
        }
        .promo-card:hover .promo-icon i { color: white; }
        .promo-content {
            padding: 22px 24px 26px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .promo-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1a2c3e;
        }
        .promo-content p {
            color: #6c7a8a;
            line-height: 1.55;
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        .promo-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 16px 0 12px;
        }
        .promo-dot {
            margin-top: 20px;
            width: 32px;
            height: 3px;
            background: #c0392b;
            border-radius: 4px;
            opacity: 0.4;
            transition: all 0.3s ease;
        }
        .promo-card:hover .promo-dot { opacity: 1; width: 48px; }
        @media (max-width: 768px) { .promo-grid { grid-template-columns: 1fr; gap: 20px; } }

        /* ========== СТРАТЕГИИ ПОД ВАШ БИЗНЕС ========== */
        .dark-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 100%);
            position: relative;
            overflow: hidden;
        }
        .dark-section .section-header h2 {
            background: linear-gradient(135deg, #ffffff 0%, #e07a5f 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .dark-section .section-header p { color: #8a9ab0; }
        .strategies-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }
        .strategy-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 28px 24px;
            text-align: left;
            transition: all 0.3s ease;
        }
        .strategy-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.06);
            border-color: rgba(192,57,43,0.4);
        }
        .strategy-card .strategy-icon {
            width: 60px;
            height: 60px;
            background: rgba(192,57,43,0.15);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .strategy-card:hover .strategy-icon {
            background: #c0392b;
            transform: scale(1.05);
        }
        .strategy-card .strategy-icon i {
            font-size: 1.6rem;
            color: #e07a5f;
            transition: all 0.3s ease;
        }
        .strategy-card:hover .strategy-icon i { color: white; }
        .strategy-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #ffffff;
        }
        .strategy-card p {
            font-size: 0.85rem;
            color: #8a9ab0;
            line-height: 1.5;
        }
        .strategies-slider {
            display: none;
            position: relative;
            z-index: 2;
            padding: 0 30px;
            padding-bottom: 60px;
            margin-bottom: 40px;
        }
        .strategies-slider .swiper-pagination {
            position: relative;
            bottom: auto;
            margin-top: 25px;
        }
        .strategies-slider .swiper-button-next:after,
        .strategies-slider .swiper-button-prev:after { font-size: 1.2rem; }
        .strategies-slider .swiper-button-next:hover,
        .strategies-slider .swiper-button-prev:hover {
            background: #c0392b;
            color: white;
        }
        .strategies-slider .swiper-pagination-bullet { background: #e07a5f; }
        .strategies-slider .swiper-pagination-bullet-active { background: #c0392b; }
        
        .guarantees-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            position: relative;
            z-index: 2;
            margin-top: 20px;
        }
        .guarantee-item {
            text-align: center;
            padding: 25px 20px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        .guarantee-item:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.05);
            border-color: rgba(192,57,43,0.3);
        }
        .guarantee-item i {
            font-size: 3.2rem;
			margin-bottom: 15px;
			display: inline-block;
			transition: all 0.3s ease;
			background: linear-gradient(135deg, #ffffff, #e07a5f);
			-webkit-background-clip: text;
			color: transparent;
        }
        .guarantee-item:hover i {
            transform: scale(1.1);
            color: #c0392b;
        }
        .guarantee-item h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #ffffff;
        }
        .guarantee-item p {
            font-size: 0.8rem;
            color: #8a9ab0;
            line-height: 1.5;
        }
        @media (max-width: 992px) {
            .strategies-grid, .guarantees-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .strategies-grid { display: none; }
            .strategies-slider { display: block; }
            .dark-section .section-header h2 { font-size: 1.8rem; }
            .guarantees-grid { grid-template-columns: 1fr; gap: 20px; }
        }
        @media (max-width: 992px) and (min-width: 769px) {
            .strategies-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
        }

        /* ========== НАШИ ПРОЕКТЫ (ПОРТФОЛИО-СЛАЙДЕР) ========== */
        .our-projects-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }
        .projects-slider-wrapper {
            position: relative;
            padding: 0 40px;
        }
        .project-slide-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.35s ease;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .project-slide-card:hover {
            transform: translateY(-6px);
            border-color: rgba(192,57,43,0.2);
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.12);
        }
        .project-slide-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        .project-slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
			padding: 10px 10px 0;
        }
        .project-slide-card:hover .project-slide-image img { transform: scale(1.05); }
        .project-slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 8%));
        }
        .project-slide-number {
            position: absolute;
            top: 16px;
            left: 20px;
            font-size: 2rem;
            font-weight: 800;
            color: rgba(255,255,255,0.3);
            z-index: 2;
            font-family: 'Inter', monospace;
        }
        .project-slide-icon {
            position: absolute;
            bottom: 16px;
            right: 16px;
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.95);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.12);
            z-index: 2;
            transition: all 0.3s ease;
        }
        .project-slide-icon i {
            font-size: 1.4rem;
            color: #c0392b;
            transition: all 0.3s ease;
        }
        .project-slide-card:hover .project-slide-icon {
            background: #c0392b;
            transform: scale(1.05);
        }
        .project-slide-card:hover .project-slide-icon i { color: white; }
        .project-slide-content {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .project-slide-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #1a2c3e;
        }
        .project-tag {
            display: inline-block;
            background: #f0f2f8;
            color: #4a5b6e;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            margin: 10px 0 12px;
            width: fit-content;
        }
        .project-slide-content p {
            color: #6c7a8a;
            line-height: 1.55;
            font-size: 0.9rem;
            margin-bottom: 16px;
        }
        .project-metrics {
            background: #f8fafc;
            padding: 12px 16px;
            border-radius: 16px;
            margin: 8px 0 16px;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .metric-item {
            display: flex;
            flex-direction: column;
        }
        .metric-value {
            font-size: 1.1rem;
            font-weight: 800;
            color: #c0392b;
        }
        .metric-label {
            font-size: 0.65rem;
            color: #8a9ab0;
        }
        .btn-project-slide {
            margin-top: 8px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1.5px solid #c0392b;
            color: #c0392b;
            padding: 8px 20px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            width: fit-content;
            cursor: pointer;
			margin-top: auto;
        }
        .btn-project-slide:hover {
            background: #c0392b;
            color: white;
            gap: 12px;
            transform: translateY(-2px);
        }
        .projects-footer {
            text-align: center;
            margin-top: 50px;
        }
        .our-projects-section .swiper-pagination {
            position: relative;
            bottom: auto;
            margin-top: 40px;
        }
        @media (max-width: 768px) {
            .our-projects-section { padding: 50px 0; }
            .projects-slider-wrapper { padding: 0 10px; }
            .project-slide-image { height: 180px; }
            .our-projects-section .swiper-pagination { margin-top: 30px; }
        }

        /* ========== ДОБАВЛЕННЫЕ БЛОКИ ========== */
        /* Блок 1: Нам доверяют 85+ брендов (логотипы) */
        .trust-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        .ticker-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            background: rgba(255,255,255,0.6);
            border-radius: 60px;
            padding: 18px 0;
            backdrop-filter: blur(2px);
        }
        .ticker-track {
            display: flex;
            width: max-content;
            animation: scrollTicker 48s linear infinite;
        }
        .ticker-track:hover { animation-play-state: paused; }
        .ticker-item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 35px;
            flex-shrink: 0;
            filter: grayscale(100%) brightness(0.92);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .ticker-item:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }
        .ticker-item img {
            max-height: 50px;
            width: auto;
            object-fit: contain;
        }
        @keyframes scrollTicker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .logo-ticker-title { text-align: center; margin-bottom: 40px; }
        .logo-ticker-title h3 {
            font-size: 1.7rem;
            font-weight: 700;
            margin: 0 0 10px 0;
            color: #1a2c3e;
        }
        .logo-ticker-title h3 span {
            color: #c0392b;
            background: linear-gradient(135deg, #c0392b, #e07a5f);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        @media (max-width: 768px) {
            .ticker-item { margin: 0 24px; }
            .ticker-item img { max-height: 40px; }
            .logo-ticker-title h3 { font-size: 1.4rem; }
        }
        @media (max-width: 480px) {
            .ticker-item { margin: 0 18px; }
            .ticker-item img { max-height: 32px; }
            .logo-ticker-title h3 { font-size: 1.2rem; }
        }

        /* Блок 2: Создаём e‑commerce решения, которые приносят прибыль */
        .about-company-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .about-left h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #1a2c3e 0%, #2c3e50 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
		.about-left .about-highlight {
			font-size: 1.1rem;
			color: #c0392b;
			font-weight: 600;
			margin-bottom: 20px;
			display: flex;
			align-items: center;
			gap: 10px;
		}
        .about-left p {
            color: #5a6a7a;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        .about-features {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 24px;
        }
        .about-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(192,57,43,0.05);
            padding: 8px 16px;
            border-radius: 40px;
            transition: all 0.3s ease;
        }
        .about-feature:hover {
            background: rgba(192,57,43,0.12);
            transform: translateX(5px);
        }
        .about-feature i {
            font-size: 1.1rem;
            color: #c0392b;
        }
        .about-feature span {
            font-size: 0.85rem;
            font-weight: 500;
            color: #1a2c3e;
        }
        .about-right {
            background: #06061b;
            border-radius: 32px;
            padding: 35px;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
            border: 1px solid rgba(192,57,43,0.08);

        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        .stat-card {
               text-align: center;
				padding: 20px 15px;
				border-radius: 24px;
				transition: all 0.3s ease;
				background: rgba(255, 255, 255, 0.03);
				border: 1px solid rgb(255 255 255 / 17%);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: rgba(192,57,43,0.2);
        }
        .stat-number {
            font-size: 2.3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #c0392b, #e07a5f);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 0.8rem;
            color: #6c7a8a;
            font-weight: 500;
        }
        .btn-about {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #c0392b, #96281b);
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            margin-top: 30px;
            border: none;
            cursor: pointer;
        }
        .btn-about:hover {
            transform: translateY(-3px);
            gap: 14px;
            box-shadow: 0 10px 25px rgba(192,57,43,0.3);
        }
        @media (max-width: 900px) {
            .about-grid { grid-template-columns: 1fr; gap: 40px; }
            .about-left h2 { font-size: 1.6rem; }
            .about-right { padding: 28px; }
        }

        /* Блок 3: 35+ экспертов с глубокой экспертизой (слайдер) */
        .team-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        .team-slider-wrapper {
            position: relative;
            padding: 0 40px;
        }
        .team-slide-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.35s ease;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .team-slide-card:hover {
            transform: translateY(-6px);
            border-color: rgba(192,57,43,0.2);
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.12);
        }
        .team-slide-header {
            padding: 32px 24px 20px 24px;
            position: relative;
            background: linear-gradient(135deg, #fafbfe 0%, #ffffff 100%);
            border-bottom: 1px solid rgba(192,57,43,0.08);
        }
        .team-slide-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(192,57,43,0.1), rgba(224,122,95,0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .team-slide-card:hover .team-slide-icon {
            background: linear-gradient(135deg, #c0392b, #e07a5f);
            transform: scale(1.03);
        }
        .team-slide-icon i {
            font-size: 2rem;
            color: #c0392b;
            transition: all 0.3s ease;
        }
        .team-slide-card:hover .team-slide-icon i { color: white; }
        .team-slide-number {
            position: absolute;
            bottom: 16px;
            right: 24px;
            font-size: 3rem;
            font-weight: 800;
            color: rgba(192,57,43,0.06);
            font-family: 'Inter', monospace;
            line-height: 1;
        }
        .team-slide-content {
            padding: 20px 24px 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .team-slide-content h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: #1a2c3e;
        }
        .team-dept {
            color: #c0392b;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        .team-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 16px;
        }
        .team-stat-item {
            background: #f8fafc;
            border-radius: 30px;
            padding: 4px 12px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #c0392b;
        }
        .team-stat-item i { margin-right: 4px; font-size: 0.65rem; }
        .team-slide-content p {
            color: #6c7a8a;
            line-height: 1.55;
            font-size: 0.85rem;
            margin-bottom: 18px;
        }
        .team-expertise {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 22px;
        }
        .expertise-tag {
            background: rgba(192,57,43,0.06);
            border-radius: 30px;
            padding: 4px 12px;
            font-size: 0.65rem;
            font-weight: 500;
            color: #4a5b6e;
            transition: all 0.2s ease;
        }
        .expertise-tag:hover {
            background: rgba(192,57,43,0.15);
            color: #c0392b;
        }
        .btn-team-slide {
            margin-top: auto;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1.5px solid #c0392b;
            color: #c0392b;
            padding: 8px 20px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            width: fit-content;
            cursor: pointer;
        }
        .btn-team-slide:hover {
            background: #c0392b;
            color: white;
            gap: 12px;
            transform: translateY(-2px);
        }
        .team-footer { text-align: center; margin-top: 50px; }
        .team-section .swiper-pagination {
            position: relative;
            bottom: auto;
            margin-top: 40px;
        }
        @media (max-width: 768px) {
            .team-slider-wrapper { padding: 0 10px; }
            .team-slide-header { padding: 24px 20px 16px 20px; }
            .team-slide-icon { width: 55px; height: 55px; }
            .team-slide-icon i { font-size: 1.6rem; }
            .team-slide-number { font-size: 2.2rem; bottom: 10px; right: 16px; }
            .team-slide-content { padding: 16px 20px 22px; }
            .team-slide-content h3 { font-size: 1.2rem; }
        }
		@media (max-width: 400px) {
		.stats-grid {
			grid-template-columns: repeat(1, 1fr);
		}
		}

        /* ========== ТЕХНОЛОГИЧЕСКИЙ СТЕК ========== */
        .tech-stack-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 100%);
            position: relative;
            overflow: hidden;
        }
        .tech-stack-section .section-header h2 {
            background: linear-gradient(135deg, #ffffff 0%, #e07a5f 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .tech-stack-section .section-header p { color: #8a9ab0; }
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 2;
        }
        .tech-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px;
            padding: 24px 20px;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
            transition: left 0.5s ease;
        }
        .tech-card:hover::before { left: 100%; }
        .tech-card:hover {
            transform: translateY(-8px);
            border-color: rgba(192,57,43,0.4);
            background: rgba(255,255,255,0.06);
            box-shadow: 0 20px 35px -10px rgba(0,0,0,0.3);
        }
        .tech-icon {
            width: 60px;
            height: 60px;
            background: rgba(192,57,43,0.15);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        .tech-card:hover .tech-icon {
            background: #c0392b;
            transform: scale(1.05) rotate(5deg);
        }
        .tech-icon i {
            font-size: 2rem;
            color: #e07a5f;
            transition: all 0.3s ease;
        }
        .tech-card:hover .tech-icon i { color: white; }
        .tech-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #ffffff;
        }
        .tech-card .tech-desc {
            font-size: 0.8rem;
            color: #8a9ab0;
            line-height: 1.5;
            margin-bottom: 16px;
        }
        .tech-metrics {
            display: flex;
            gap: 15px;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .tech-metric {
            font-size: 0.7rem;
            color: #6a7a90;
        }
        .tech-metric span {
            color: #e07a5f;
            font-weight: 600;
        }
        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 60px;
            position: relative;
            z-index: 2;
        }
        .stat-item {
            text-align: center;
            padding: 25px 20px;
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.05);
            border-color: rgba(192,57,43,0.3);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff, #e07a5f);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 8px;
        }
        .stat-label { font-size: 0.8rem; color: #8a9ab0; }
        .tech-footer {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }
        .btn-digital {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #c0392b, #96281b);
            color: white;
            padding: 14px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .btn-digital:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(192,57,43,0.4);
            gap: 15px;
        }
        @media (max-width: 1024px) {
            .tech-grid { grid-template-columns: repeat(3, 1fr); }
            .stats-row { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .tech-grid { grid-template-columns: repeat(2, 1fr); }
            .tech-stack-section .section-header h2 { font-size: 1.8rem; }
        }
        @media (max-width: 480px) {
            .tech-grid { grid-template-columns: 1fr; }
            .stats-row { grid-template-columns: 1fr; }
        }

        /* ========== Footer ========== */
        .footer {
            background: #0a0a15;
            color: #b8b8d0;
            padding: 40px 0 25px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer a {
            color: #b8b8d0;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .footer a:hover {
            color: #c0392b;
            transform: translateX(5px);
        }
        .footer h4 {
            font-size: 1rem;
            margin-bottom: 12px;
            color: #ffffff;
        }
        .footer p {
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 8px;
        }

        .icon-medium { font-size: 1.8rem; }
        .mt-16 { margin-top: 16px; }
        .mt-25 { margin-top: 25px; }
        .mb-40 { margin-bottom: 40px; }
        .text-center { text-align: center; }
        .price-badge {
            display: inline-block;
            background: #c0392b;
            color: white;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 12px;
        }
        @media (max-width: 600px) {
            .hero h1 { font-size: 2rem; }
            .hero { padding: 80px 0 60px; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
        }
        canvas { height: 100%; }
        .hero { height: 100%; padding-bottom: 50px; }


#space-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#bgImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bgVideo {
	width:100%;
	height:100%;
	object-fit: cover;
    object-position: 26% center;
}
/* ========== КНОПКА С ЭФФЕКТОМ СОЛНЕЧНОГО ЛУЧА ========== */
.fixed-bottom-btn {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 999;
    text-decoration: none;
    display: none;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #c0392b, #96281b);
    box-shadow: 0 8px 30px rgba(192, 57, 43, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    overflow: hidden;
}

/* СОЛНЕЧНЫЙ ЛУЧ */
.fixed-bottom-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.5) 40%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: sunBeam 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.fixed-bottom-btn i,
.fixed-bottom-btn span {
    z-index: 1;
    position: relative;
}

.fixed-bottom-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 40px rgba(192, 57, 43, 0.5);
    color: white;
}

@keyframes sunBeam {
    0% {
        left: -150%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

.fixed-bottom-btn.show {
    display: flex !important;
    opacity: 1 !important;
}

.fixed-bottom-btn.hide {
    opacity: 0 !important;
}
.footer-grid svg {
    width: 40px;
    height: 40px;
    border: solid 2px #ffffff45;
    border-radius: 10px;
}
.about-highlight svg {
    width: 30px;
    height: 30px;
	flex-shrink: 0;
}
@media (max-width: 480px) {
	.fixed-bottom-btn {
		display: flex;
	}
}
/* ========== КНОПКА С ЭФФЕКТОМ СОЛНЕЧНОГО ЛУЧА ========== */
.fixed-bottom-btn {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 999;
    text-decoration: none;
    display: none;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #c0392b, #96281b);
    box-shadow: 0 8px 30px rgba(192, 57, 43, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    overflow: hidden;
}

/* СОЛНЕЧНЫЙ ЛУЧ */
.fixed-bottom-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.5) 40%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: sunBeam 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.fixed-bottom-btn i,
.fixed-bottom-btn span {
    z-index: 1;
    position: relative;
}

.fixed-bottom-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 40px rgba(192, 57, 43, 0.5);
    color: white;
}

@keyframes sunBeam {
    0% {
        left: -150%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

.fixed-bottom-btn.show {
    display: flex !important;
    opacity: 1 !important;
}

.fixed-bottom-btn.hide {
    opacity: 0 !important;
}
#space-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

#bgImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bgVideo {
	width:100%;
	height:100%;
	object-fit: cover;
    object-position: 26% center;
}
a {
    color: #a0a0b0;
}
@media (max-width: 480px) {
	.fixed-bottom-btn {
		display: flex;
	}
	.footer {
		padding: 40px 0 70px;
	}
}
