<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Header */
        header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 0rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .logo img {
            width: 20vw;
            max-width: 180px;
            min-width: 130px;
            height: auto;
            border-radius: 10px;
            object-fit: contain;
            background: rgba(255, 255, 255, 0.1);
            padding: 5px;
        }
        .nav-center {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }
        .phone-contact {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 10px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .phone-contact:hover {
            background: rgba(255,255,255,0.3);
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-2px);
        }
        .phone-icon {
            font-size: 1.2rem;
            animation: pulse 2s infinite;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite alternate;
        }
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 3;
        }
        .hero-content {
            text-align: right;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: slideInUp 1s ease-out;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
        }
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: slideInUp 1s ease-out 0.2s both;
            line-height: 1.2;
            background: linear-gradient(45deg, #fff, #f0f0f0, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 100%;
            animation: slideInUp 1s ease-out 0.2s both, shimmer 3s ease-in-out infinite;
        }
        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            animation: slideInUp 1s ease-out 0.4s both;
            line-height: 1.6;
        }
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 0.6s both;
            justify-content: flex-end;
        }
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 18px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255,107,107,0.3);
            position: relative;
            overflow: hidden;
        }
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.5s ease;
        }
        .cta-button:hover::before {
            right: 100%;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255,107,107,0.4);
        }
        .cta-secondary {
            background: transparent;
            border: 2px solid rgba(255,255,255,0.3);
            color: white;
            backdrop-filter: blur(10px);
        }
        .cta-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }
        .hero-visual {
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.5s;
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Flèches de navigation */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            z-index: 10;
            backdrop-filter: blur(4px);
            transition: all 0.3s ease;
            padding: 0;
        }
        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        .slider-arrow.left {
            left: 10px;
        }
        .slider-arrow.right {
            right: 10px;
        }
        @media (max-width: 768px) {
            .slider-arrow {
                display: none;
            }
        }
        /* Carrousel d'images */
        .hero-pos-slider {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 300px;
            overflow: hidden;
            border-radius: 14px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0;
            transition: opacity 0.8s ease;
        }
        .slide.active {
            opacity: 1;
        }
        /* Légende */
        .slider-caption {
            margin-top: 12px;
            text-align: center;
            color: white;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .slider-caption.active {
            opacity: 1;
            transform: translateY(0);
        }
        .caption-title {
            font-size: 1.2em;
            font-weight: 600;
            margin: 0 0 4px 0;
        }
        .caption-text {
            font-size: 0.9em;
            margin: 0;
            color: rgba(255, 255, 255, 0.7);
        }
        /* Barre de progression */
        .slider-progress-container {
            width: 100%;
            max-width: 500px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            margin: 12px 0 8px;
            overflow: hidden;
        }
        .slider-progress-bar {
            height: 100%;
            width: 0;
            background: #fff;
            border-radius: 2px;
            transition: width 0.1s linear;
        }
        /* Points de navigation */
        .slider-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
        }
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: background 0.3s ease;
        }
        .dot.active,
        .dot:hover {
            background: #fff;
        }
        .hero-pos-display {
            position: relative;
            width: 100%;
            height: 400px;
            perspective: 1000px;
        }
        .pos-device {
            position: absolute;
            width: 280px;
            height: 200px;
            background: linear-gradient(145deg, #2c3e50, #34495e);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            animation: float3d 6s ease-in-out infinite;
            transform-style: preserve-3d;
        }
        .pos-device::before {
            content: '';
            position: absolute;
            top: 15px;
            right: 15px;
            left: 15px;
            bottom: 50px;
            background: linear-gradient(45deg, #000, #1a1a1a);
            border-radius: 10px;
            border: 2px solid #333;
        }
        .pos-device::after {
            content: '';
            position: absolute;
            bottom: 15px;
            right: 50%;
            transform: translateX(50%);
            width: 100px;
            height: 20px;
            background: linear-gradient(45deg, #3498db, #2980b9);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(52,152,219,0.3);
        }
        .pos-device-2 {
            top: 50px;
            right: 50px;
            animation-delay: -2s;
        }
        .pos-device-3 {
            top: 100px;
            right: 100px;
            width: 200px;
            height: 150px;
            animation-delay: -4s;
        }
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            animation: slideInUp 1s ease-out 1s both;
        }
        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #fff;
            display: block;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }
        @keyframes float3d {
            0%, 100% { 
                transform: translateY(0px) rotateX(0deg) rotateY(0deg); 
            }
            50% { 
                transform: translateY(-20px) rotateX(5deg) rotateY(5deg); 
            }
        }
        /* Services Section */
        .services {
            padding: 100px 0;
            background: #f8f9fa;
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(45deg, #667eea, #764ba2);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
        }
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }
        /* Products Section */
        .products {
            padding: 100px 0;
            background: white;
        }
        .pos-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }
        .pos-item {
            background: white;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        .pos-item.fade-in {
            opacity: 1;
            transform: translateY(0);
        }
        .pos-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }
        .pos-image {
            width: 100%;
            height: 180px;
            overflow: hidden;
            background: #f8f9fa;
            display: flex;
            justify-content: center;
            align-items: center;
            border-bottom: 1px solid #eee;
        }
        .pos-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
        }
        .pos-item:hover .pos-image img {
            transform: scale(1.05);
        }
        .pos-info {
            padding: 16px;
        }
        .pos-info h4 {
            margin: 0 0 8px 0;
            font-size: 1.1em;
            color: #2c3e50;
        }
        .pos-info p {
            margin: 0 0 12px 0;
            color: #666;
            font-size: 0.95em;
            line-height: 1.5;
        }
        .pos-price {
            font-weight: 600;
            color: #e74c3c;
            font-size: 1.1em;
        }
        @media (max-width: 768px) {
            .pos-gallery {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .product-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .product-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transition: all 0.3s ease;
            transform: scale(0);
        }
        .product-card:hover::before {
            transform: scale(1);
        }
        .product-card:hover {
            transform: scale(1.05);
        }
        .product-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }
        .product-card p {
            position: relative;
            z-index: 2;
        }
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: #f8f9fa;
            pointer-events: none;
        }
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }
        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 10px rgba(102,126,234,0.2);
        }
        .submit-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102,126,234,0.3);
        }
        .contact-info {
            padding: 2rem;
        }
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .contact-item:hover {
            transform: translateX(-10px);
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-left: 1rem;
            font-size: 1.2rem;
        }
        /* Footer */
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        /* Responsive */
        @media (max-width: 768px) {
            .nav-center {
                display: none;
            }
            .phone-contact {
                font-size: 0.9rem;
                padding: 0.6rem 1rem;
            }
            .logo img {
                width: 40px;
                height: 40px;
            }
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            .hero-content {
                text-align: center;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            .pos-device {
                width: 200px;
                height: 150px;
            }
            .hero-pos-display {
                height: 300px;
            }
            .contact-content {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 120px 0 80px;
                min-height: auto;
            }
        }
        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .contact-disabled-banner {
            background: #f8d7da;
            color: #721c24;
            text-align: center;
            padding: 12px 20px;
            font-size: 1em;
            font-weight: 500;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            animation: fadeIn 0.6s ease-out;
        }
        .contact-disabled-banner p {
            margin: 0;
            padding: 0;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        #contact {
            pointer-events: none;
            opacity: 0.8;
            filter: grayscale(30%);
        }
        #contact .contact-disabled-banner {
            pointer-events: auto;
        }
        #contact .contact-disabled-banner a {
            color: #721c24;
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .contact-disabled-banner {
                font-size: 0.95em;
                padding: 10px 15px;
                margin-bottom: 16px;
            }
        }
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            left: 30px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            z-index: 1000;
            text-decoration: none;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                left: 20px;
                font-size: 24px;
            }
        }
        .language-bar {
            width: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 8px 0;
            border-bottom: 0.2px dashed #C0C0C0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 1001;
            height: 48px;
        }
        .language-container {
            display: flex;
            gap: 10px;
        }
        .lang-btn {
            display: flex;
            align-items: center;
            padding: 8px 16px;
            background: white;
            color: #555;
            text-decoration: none;
            border-radius: 24px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
            border: 1px solid #ddd;
        }
        .lang-btn:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
        }
        .lang-btn.active {
            background: #00d1b2;
            color: white;
            border-color: #00d1b2;
        }
        .lang-icon {
            width: 20px;
            height: 14px;
            border-radius: 2px;
            margin-left: 6px;
        }
		
		
		
		
		
		
		
		
		
		
		
		
		
		















/* Bouton Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 21px;
    justify-content: space-between;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: left;
}

/* Animation du burger vers croix (X) */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive : afficher le burger sur mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(102, 126, 234, 0.95);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 0.8rem 0;
    }
    .nav-links a {
        padding: 0.5rem 1rem;
    }
    /* Cacher le téléphone sur mobile si besoin  
    .phone-contact {
        display: none;
    }
	*/
}













    </style>