    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <style>
        :root {
            --primary: #e30613;
            --primary-dark: #c10510;
            --primary-light: #ff4757;
            --secondary: #0f172a;
            --accent: #06d6a0;
            --accent-dark: #05b384;
            --light: #f8fafc;
            --gray: #64748b;
            --gray-light: #e2e8f0;
            --gradient: linear-gradient(135deg, #e30613 0%, #ff6b6b 100%);
            --gradient-dark: linear-gradient(135deg, #c10510 0%, #ff5252 100%);
            --gradient-accent: linear-gradient(135deg, #06d6a0 0%, #48cae4 100%);
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
            --border-radius: 16px;
            --border-radius-lg: 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: var(--secondary);
            background-color: var(--light);
            overflow-x: hidden;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Particles Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateY(0);
            border-bottom: 1px solid rgba(255, 255, 255, 0.8);
        }

        header.hidden {
            transform: translateY(-100%);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 900;
            font-size: 26px;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s;
        }

        .logo:hover::before {
            left: 100%;
        }

        .logo:hover {
            transform: scale(1.05) rotate(1deg);
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            animation: pulseGlow 3s infinite, float 6s ease-in-out infinite;
            box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
        }

        @keyframes pulseGlow {

            0%,
            100% {
                box-shadow: 0 0 15px rgba(227, 6, 19, 0.5);
            }

            50% {
                box-shadow: 0 0 25px rgba(227, 6, 19, 0.8), 0 0 40px rgba(227, 6, 19, 0.6);
            }
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        nav a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 15px;
        }

        nav a:hover {
            color: var(--primary);
            background: rgba(227, 6, 19, 0.08);
            transform: translateY(-2px);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gradient);
            transition: width 0.3s;
            border-radius: 2px;
        }

        nav a:hover::after {
            width: 70%;
        }

        .header-actions {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .btn {
            padding: 14px 28px;
            border-radius: var(--border-radius);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: none;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 25px rgba(227, 6, 19, 0.3);
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 25px rgba(227, 6, 19, 0.4);
        }

        .btn-accent {
            background: var(--gradient-accent);
            color: white;
        }

        .btn-accent:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 25px rgba(6, 214, 160, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 26px;
            cursor: pointer;
            color: var(--secondary);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            padding: 8px;
            border-radius: 10px;
        }

        .mobile-menu-btn:hover {
            transform: rotate(90deg) scale(1.1);
            color: var(--primary);
            background: rgba(227, 6, 19, 0.08);
        }

        /* Banner Slider */
        .banner-slider {
            margin-top: 90px;
            position: relative;
            height: 600px;
            overflow: hidden;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-xl);
            perspective: 1200px;
        }

        .banner-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            align-items: center;
            padding: 0 80px;
            background-size: cover;
            background-position: center;
            transform: scale(1.1) rotateX(5deg);
        }

        .banner-slide.active {
            opacity: 1;
            transform: scale(1) rotateX(0);
        }

        .banner-1 {
            background: linear-gradient(135deg, rgba(227, 6, 19, 0.92) 0%, rgba(255, 107, 107, 0.85) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" preserveAspectRatio="none"><rect width="1200" height="600" fill="%23f8fafc"/><circle cx="900" cy="100" r="80" fill="%23ffffff" opacity="0.2"/><circle cx="1000" cy="300" r="120" fill="%23ffffff" opacity="0.1"/></svg>');
            color: white;
        }

        .banner-2 {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.85) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" preserveAspectRatio="none"><rect width="1200" height="600" fill="%230f172a"/><polygon points="1000,50 1150,150 1000,250" fill="%23ffffff" opacity="0.1"/><polygon points="1100,300 1200,350 1100,400" fill="%23ffffff" opacity="0.05"/></svg>');
            color: white;
        }

        .banner-3 {
            background: linear-gradient(135deg, rgba(6, 214, 160, 0.92) 0%, rgba(5, 179, 132, 0.85) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600" preserveAspectRatio="none"><rect width="1200" height="600" fill="%2306d6a0"/><rect x="900" y="50" width="200" height="80" fill="%23ffffff" opacity="0.2"/><rect x="1000" y="200" width="150" height="100" fill="%23ffffff" opacity="0.1"/></svg>');
            color: white;
        }

        .banner-content {
            max-width: 650px;
            transform: translateX(-80px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
        }

        .banner-slide.active .banner-content {
            transform: translateX(0);
            opacity: 1;
        }

        .banner-title {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
            position: relative;
            display: inline-block;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .banner-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 4px;
            background: white;
            transition: width 1s ease 0.5s;
            border-radius: 2px;
        }

        .banner-slide.active .banner-title::after {
            width: 100%;
        }

        .banner-description {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
            transform: translateY(20px);
            transition: all 0.6s ease 0.6s;
            line-height: 1.6;
        }

        .banner-slide.active .banner-description {
            transform: translateY(0);
        }

        .banner-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }

        .banner-indicator {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
        }

        .banner-indicator::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: white;
            transition: left 0.4s;
            border-radius: 50%;
        }

        .banner-indicator.active::after {
            left: 0;
        }

        .banner-indicator.active {
            background: transparent;
            transform: scale(1.2);
        }

        .banner-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.25);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            opacity: 0;
            backdrop-filter: blur(10px);
        }

        .banner-slider:hover .banner-nav {
            opacity: 1;
        }

        .banner-nav:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: translateY(-50%) scale(1.1);
        }

        .banner-prev {
            left: 30px;
        }

        .banner-next {
            right: 30px;
        }

        /* Hero Section */
        .hero {
            padding: 100px 0 120px;
            background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23e30613" opacity="0.03"/></svg>');
            background-size: cover;
        }

        .hero-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 25px;
            animation: slideInFromLeft 0.8s ease-out, float 4s ease-in-out infinite 1s;
            box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
        }

        .hero-title {
            font-size: 58px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            animation: slideInFromLeft 0.8s ease-out 0.2s both;
        }

        .hero-title span {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: var(--gradient);
            animation: underline 1.5s ease-in-out 1s forwards;
            border-radius: 2px;
        }

        @keyframes underline {
            to {
                width: 100%;
            }
        }

        .hero-subtitle {
            font-size: 22px;
            color: var(--gray);
            margin-bottom: 35px;
            max-width: 650px;
            animation: slideInFromLeft 0.8s ease-out 0.4s both;
            line-height: 1.6;
        }

        .hero-actions {
            display: flex;
            gap: 18px;
            margin-bottom: 50px;
            flex-wrap: wrap;
            animation: slideInFromLeft 0.8s ease-out 0.6s both;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            animation: slideInFromLeft 0.8s ease-out 0.8s both;
        }

        .stat {
            display: flex;
            flex-direction: column;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .stat:hover {
            transform: translateY(-5px) scale(1.05);
        }

        .stat-value {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary);
            position: relative;
        }

        .stat-value::after {
            content: '+';
            position: absolute;
            right: -20px;
            top: 0;
            opacity: 0;
            animation: fadeIn 0.5s ease 1.5s forwards;
        }

        .stat-label {
            font-size: 16px;
            color: var(--gray);
            font-weight: 500;
        }

        .hero-visual {
            flex: 1;
            position: relative;
            animation: slideInFromRight 1s ease-out 0.5s both;
        }

        .visual-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .visual-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-lg);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-top: 5px solid var(--primary);
            transform: translateY(20px) rotateY(10deg);
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards, float 5s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .visual-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transition: left 0.6s;
        }

        .visual-card:hover::before {
            left: 100%;
        }

        .visual-card:nth-child(1) {
            animation-delay: 0.7s, 0s;
        }

        .visual-card:nth-child(2) {
            animation-delay: 0.9s, 1s;
        }

        .visual-card:nth-child(3) {
            animation-delay: 1.1s, 2s;
        }

        .visual-card:nth-child(4) {
            animation-delay: 1.3s, 3s;
        }

        .visual-card:hover {
            transform: translateY(-10px) scale(1.05) rotateY(0);
            box-shadow: var(--shadow-xl);
        }

        .visual-card i {
            font-size: 38px;
            margin-bottom: 20px;
            color: var(--primary);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .visual-card:hover i {
            transform: scale(1.3) rotate(10deg);
        }

        .visual-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .visual-card p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.5;
        }

        /* Animations */
        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px) rotateY(10deg);
            }

            to {
                opacity: 1;
                transform: translateY(0) rotateY(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes morph {

            0%,
            100% {
                border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
            }

            34% {
                border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
            }

            67% {
                border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
            }
        }

        /* Vending Section */
        .vending {
            padding: 120px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .vending::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" preserveAspectRatio="none"><circle cx="100" cy="700" r="60" fill="%23ffffff" opacity="0.03"/><circle cx="1100" cy="100" r="40" fill="%23ffffff" opacity="0.02"/><polygon points="300,100 500,50 300,0" fill="%23ffffff" opacity="0.04"/></svg>');
            background-size: cover;
        }

        .vending-container {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .vending-content {
            flex: 1;
        }

        .vending-title {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #fff 0%, #06d6a0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .vending-description {
            font-size: 20px;
            margin-bottom: 35px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .vending-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 40px;
        }

        .vending-feature {
            display: flex;
            align-items: center;
            gap: 18px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            padding: 15px;
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.05);
        }

        .vending-feature:hover {
            transform: translateX(8px);
            background: rgba(255, 255, 255, 0.08);
        }

        .vending-feature i {
            color: var(--accent);
            font-size: 24px;
            width: 50px;
            height: 50px;
            background: rgba(6, 214, 160, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vending-visual {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-xl);
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
        }

        .vending-visual:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .vending-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
        }

        .vending-stat {
            text-align: center;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .vending-stat:hover {
            transform: scale(1.1);
        }

        .vending-stat-value {
            font-size: 42px;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .vending-stat-label {
            font-size: 16px;
            opacity: 0.8;
            font-weight: 500;
        }

        /* Clients Section */
        .clients {
            padding: 100px 0;
            background: white;
        }

        .clients-section {
            margin-bottom: 70px;
        }

        .clients-title {
            text-align: center;
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 50px;
            color: var(--secondary);
            position: relative;
        }

        .clients-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--gradient);
            border-radius: 3px;
            animation: morph 4s ease-in-out infinite;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 35px;
            align-items: center;
        }

        .client-logo {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 1px solid var(--gray-light);
            transform: translateY(0) scale(1);
            opacity: 0;
            position: relative;
            overflow: hidden;
        }

        .client-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.05), transparent);
            transition: left 0.6s;
        }

        .client-logo:hover::before {
            left: 100%;
        }

        .client-logo.animate {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .client-logo:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        .client-name {
            font-weight: 700;
            color: var(--secondary);
            text-align: center;
            transition: all 0.3s;
            font-size: 16px;
        }

        .client-logo:hover .client-name {
            color: var(--primary);
        }

        /* Services Section */
        .services {
            padding: 120px 0;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" preserveAspectRatio="none"><circle cx="100" cy="100" r="50" fill="%23e30613" opacity="0.02"/><circle cx="1100" cy="700" r="80" fill="%2306d6a0" opacity="0.02"/><polygon points="200,600 400,700 200,800" fill="%23e30613" opacity="0.02"/></svg>');
            background-size: cover;
            z-index: 0;
        }

        .section-header {
            text-align: center;
            max-width: 850px;
            margin: 0 auto 70px;
            position: relative;
            z-index: 1;
        }

        .section-subtitle {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 15px;
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }

        .section-title {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 25px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .section-description {
            color: var(--gray);
            font-size: 20px;
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background: white;
            border-radius: var(--border-radius-lg);
            padding: 45px 35px;
            box-shadow: var(--shadow-lg);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            text-align: center;
            border-top: 5px solid var(--primary);
            transform: translateY(30px) scale(0.95);
            opacity: 0;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transition: left 0.6s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card.animate {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }

        .service-card.featured {
            border-top: 5px solid var(--accent);
            position: relative;
            overflow: hidden;
            animation: float 4s ease-in-out infinite, pulseGlow 4s infinite;
            animation-delay: 0.5s, 0s;
        }

        .service-card.featured::before {
            content: 'ПОПУЛЯРНО';
            position: absolute;
            top: 25px;
            right: -35px;
            background: var(--accent);
            color: white;
            padding: 8px 35px;
            font-size: 13px;
            font-weight: 700;
            transform: rotate(45deg);
            z-index: 2;
        }

        .service-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 36px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(227, 6, 19, 0.3);
        }

        .service-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.4s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .service-card:hover .service-icon::before {
            transform: scale(1);
        }

        .service-title {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 20px;
            transition: color 0.3s;
        }

        .service-card:hover .service-title {
            color: var(--primary);
        }

        .service-description {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .service-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .service-features li:hover {
            transform: translateX(8px);
        }

        .service-features li i {
            color: var(--accent);
            font-size: 18px;
        }

        /* B2B Platform Section */
        .b2b-platform {
            padding: 120px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .b2b-platform::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" preserveAspectRatio="none"><circle cx="100" cy="700" r="60" fill="%23ffffff" opacity="0.03"/><circle cx="1100" cy="100" r="40" fill="%23ffffff" opacity="0.02"/><polygon points="300,100 500,50 300,0" fill="%23ffffff" opacity="0.04"/></svg>');
            background-size: cover;
        }

        .platform-container {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .platform-content {
            flex: 1;
        }

        .platform-title {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #fff 0%, #06d6a0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .platform-description {
            font-size: 20px;
            margin-bottom: 35px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .platform-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 40px;
        }

        .platform-feature {
            display: flex;
            align-items: center;
            gap: 18px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            padding: 15px;
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.05);
        }

        .platform-feature:hover {
            transform: translateX(8px);
            background: rgba(255, 255, 255, 0.08);
        }

        .platform-feature i {
            color: var(--accent);
            font-size: 24px;
            width: 50px;
            height: 50px;
            background: rgba(6, 214, 160, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .platform-visual {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-xl);
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
        }

        .platform-visual:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .platform-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
        }

        .platform-stat {
            text-align: center;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .platform-stat:hover {
            transform: scale(1.1);
        }

        .platform-stat-value {
            font-size: 42px;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .platform-stat-label {
            font-size: 16px;
            opacity: 0.8;
            font-weight: 500;
        }

        /* CTA Section */
        .cta {
            padding: 120px 0;
            background: var(--gradient);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400" preserveAspectRatio="none"><circle cx="200" cy="100" r="80" fill="%23ffffff" opacity="0.1"/><circle cx="1000" cy="300" r="120" fill="%23ffffff" opacity="0.05"/><polygon points="100,350 300,250 100,150" fill="%23ffffff" opacity="0.08"/></svg>');
            background-size: cover;
            animation: float 6s ease-in-out infinite;
        }

        .cta-title {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 25px;
            position: relative;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .cta-description {
            font-size: 22px;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            position: relative;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: white;
            padding: 100px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
            transition: transform 0.3s;
        }

        .footer-links li:hover {
            transform: translateX(8px);
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 15px;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-contact {
            margin-top: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            color: #94a3b8;
            transition: transform 0.3s;
            font-size: 15px;
        }

        .contact-item:hover {
            transform: translateX(8px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .container {
                max-width: 1000px;
            }

            .hero-title {
                font-size: 48px;
            }

            .banner-title {
                font-size: 42px;
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }

            .hero-title {
                font-size: 42px;
            }

            .platform-container,
            .vending-container {
                flex-direction: column;
            }

            .visual-container {
                grid-template-columns: 1fr;
            }

            .banner-slide {
                padding: 0 40px;
            }

            .banner-title {
                font-size: 36px;
            }

            .clients-grid {
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                padding: 25px;
                box-shadow: var(--shadow-xl);
                border-radius: 0 0 var(--border-radius) var(--border-radius);
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                gap: 20px;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
            }

            .platform-features,
            .vending-features {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .banner-slider {
                height: 500px;
            }

            .banner-nav {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            .clients-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
                gap: 25px;
            }

            .client-logo {
                padding: 20px;
                height: 120px;
            }

            .hero-stats,
            .platform-stats,
            .vending-stats {
                flex-direction: column;
                gap: 25px;
            }
        }

        @media (max-width: 480px) {
            .banner-slider {
                height: 450px;
            }

            .banner-slide {
                padding: 0 25px;
            }

            .banner-title {
                font-size: 32px;
            }

            .hero-title {
                font-size: 36px;
            }

            .section-title {
                font-size: 36px;
            }

            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Laundry Section */
        .laundry {
            padding: 120px 0;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
        }

        .laundry-container {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .laundry-content {
            flex: 1;
        }

        .laundry-visual {
            flex: 1;
            background: white;
            border-radius: var(--border-radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-xl);
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .laundry-visual:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .laundry-title {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 25px;
            color: var(--secondary);
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
        }

        /* Feedback Form Section */
        .feedback-section {
            padding: 100px 0;
            background: #0f172a;
            position: relative;
            overflow: hidden;
        }

        .feedback-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(227, 6, 19, 0.15), transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(6, 214, 160, 0.1), transparent 40%);
            z-index: 1;
        }

        .feedback-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .feedback-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 60px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        .feedback-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }

        .form-group {
            margin-bottom: 30px;
            position: relative;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 18px 25px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-size: 16px;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .form-textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 4px rgba(6, 214, 160, 0.1);
        }

        .form-label {
            position: absolute;
            left: 25px;
            top: 18px;
            color: rgba(255, 255, 255, 0.6);
            pointer-events: none;
            transition: all 0.3s;
        }

        .form-textarea~.form-label {
            top: 18px;
        }

        .form-input:focus~.form-label,
        .form-input:not(:placeholder-shown)~.form-label,
        .form-textarea:focus~.form-label,
        .form-textarea:not(:placeholder-shown)~.form-label {
            top: -12px;
            left: 15px;
            font-size: 12px;
            background: #0f172a;
            padding: 0 8px;
            color: var(--accent);
            border-radius: 4px;
        }

        .form-submit {
            width: 100%;
            padding: 20px;
            background: var(--gradient-accent);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 800;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 10px 25px rgba(6, 214, 160, 0.3);
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s;
        }

        .form-submit:hover::before {
            left: 100%;
        }

        .form-submit:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(6, 214, 160, 0.4);
        }
