
        /* Reset and base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: #202020;
            line-height: 1.6;
            background: white;
            overflow-x: hidden;
        }

        /* Variables */
        :root {
            --primary-blue: #0069FF;
            --dark-blue: #001B3D;
            --light-blue: #E8F1FF;
            --text-dark: #202020;
            --text-gray: #64748b;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --section-padding: 3rem 2rem;
            --card-radius: 16px;
            --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --card-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
            --max-width: 1100px;
        }

        /* Navigation */
        header {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 105, 255, 0.05);
            border-bottom: 1px solid rgba(229, 231, 235, 0.8);
        }

        .nav-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 23px;
        }

        .logo img {
            height: 100%;
            width: auto;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1rem;
        }

        nav a:hover {
            color: var(--gray-100);
        }

        /* Common Styles */
        .section {
            padding: var(--section-padding);
        }

        .section-gray {
            background: var(--gray-100);
        }

        .section-header {
            text-align: left;
            margin-bottom: 2.5rem;
            max-width: var(--max-width);
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-family: 'DM Mono', monospace;
            font-size: 1.25rem;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
            letter-spacing: 0.3em;
        }

        .section-header p {
            font-family: 'DM Mono', monospace;
            font-size: 1rem;
            color: var(--text-gray);
        }

        .button {
            background: var(--text-dark);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            transition: all 0.3s;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
        }

        .button:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 105, 255, 0.3);
        }

        .button-call {
            background: var(--primary-blue);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            transition: all 0.3s;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
        }

        .button-call:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 105, 255, 0.3);
        }

        .card {
            background: white;
            border-radius: var(--card-radius);
            padding: 1.5rem;
            box-shadow: var(--card-shadow);
            transition: all 0.3s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow-hover);
        }

        .grid {
            display: grid;
            gap: 1.5rem;
        }

        .grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        /* Updated Hero Section with iPhone */
        .hero {
            padding: 8rem 2rem 4rem;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.03;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 105, 255, 0.1) 35px, rgba(0, 105, 255, 0.1) 70px),
                repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(0, 105, 255, 0.05) 35px, rgba(0, 105, 255, 0.05) 70px);
            pointer-events: none;
        }

        .hero-content {
            max-width: 1200px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 4rem;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            flex: 1;
            max-width: 500px;
            animation: fadeInUp 1s ease-out;
            text-align: center;
        }

        .hero-logo {
            width: 350px;
            max-width: 100%;
            margin-bottom: 2rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-gray);
            margin-bottom: 3rem;
            line-height: 1.5;
            font-family: 'DM Mono', monospace;
        }

        .hero-keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
            justify-content: center
        }

        .keyword {
            font-size: 0.9rem;
            padding: 0.4rem 0.9rem;
            border-radius: 50px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: default;
        }

        .keyword-blue {
            background: var(--text-dark);
            color: white;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 105, 255, 0.2);
        }

        .keyword-blue:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 105, 255, 0.3);
        }

        .keyword-gray {
            background: white;
            color: var(--text-gray);
            border: 1px solid var(--gray-300);
        }

        .keyword-gray:hover {
            background: var(--gray-100);
        }

        /* iPhone Demo Container */
        .demo-container {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .iphone-container {
            position: relative;
            filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.12));
        }

        .iphone {
            width: 400px;
            height: 760px;
            background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
            border-radius: 50px;
            position: relative;
            padding: 12px;
            box-shadow: 
                0 0 0 2px #E0E0E0,
                inset 0 0 0 1px rgba(0, 0, 0, 0.05);
        }

        .screen {
            width: 100%;
            height: 100%;
            background: #a1a1a19b;
            border-radius: 42px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(183, 183, 183, 0.515);
        }

        .dynamic-island {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 28px;
            background: #000;
            border-radius: 18px;
            z-index: 100;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .island-indicator {
            width: 6px;
            height: 6px;
            background: var(--primary-blue);
            border-radius: 50%;
            opacity: 0.8;
            animation: pulse 2s infinite;
        }

        .demo-frame {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 42px;
            background: var(--light-gray);
        }

        .side-button {
            position: absolute;
            background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
            border-radius: 2px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }

        .volume-up { left: -3px; top: 120px; width: 6px; height: 30px; }
        .volume-down { left: -3px; top: 160px; width: 6px; height: 30px; }
        .action-button { left: -3px; top: 200px; width: 6px; height: 30px; }
        .power-button { right: -3px; top: 150px; width: 6px; height: 45px; }

        @keyframes pulse {
            0%, 100% { 
                opacity: 0.8;
                transform: scale(1);
            }
            50% { 
                opacity: 1;
                transform: scale(1.1);
            }
        }

        /* Notre approche Section - Simplified Design */
        .schema-wrapper {
            max-width: var(--max-width);
            margin: 1em auto;
        }

        .schema-actors {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
            flex-wrap: nowrap;
            overflow-x: auto;
            padding: 1rem 1rem;
        }

        .actor-box {
            background: white;
            border-radius: 12px;
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s;
            box-shadow: var(--card-shadow);
            cursor: default;
            flex-shrink: 0;
            min-width: fit-content;
        }

        .actor-box:hover {
            transform: translateY(-3px);
            box-shadow: var(--card-shadow-hover);
        }

        .actor-icon {
            color: var(--primary-blue);
            font-size: 24px;
        }

        .actor-name {
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-dark);
        }

        /* Simplified pillar cards */
        .pillar-card {
            background: white;
            border-radius: 12px;
            padding: 1.25rem;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            border: 1px solid var(--gray-200);
        }

        .pillar-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            border-color: var(--primary-blue);
        }

        .pillar-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .pillar-icon {
            color: var(--primary-blue);
            font-size: 28px;
        }

        .pillar-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .pillar-items {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .pillar-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.2rem 0;
            color: var(--text-gray);
        }

        .pillar-item-icon {
            color: var(--primary-blue);
            font-size: 18px;
        }

        .pillar-item-text {
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        /* Bottom sections container */
        .bottom-sections {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 1.5rem;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        /* Updated Fabrique section with icons on first line */
        .fabrique-section {
            background: var(--primary-blue);
            border-radius: var(--card-radius);
            padding: 1rem;
            text-align: center;
        }

        .fabrique-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
        }

        .fabrique-items {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .fabrique-items::-webkit-scrollbar {
            display: none;
        }

        .fabrique-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 0.75rem;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            min-width: 80px;
            flex-shrink: 0;
        }
        
        .fabrique-item-icon {
            color: white;
            font-size: 24px;
        }

        .fabrique-item-text {
            color: white;
            font-weight: 400;
            font-size: 0.8rem;
            line-height: 1.1;
            text-align: center;
        }

        /* Connexions card */
        .connexions-card {
            background: white;
            border-radius: var(--card-radius);
            padding: 1rem;
            box-shadow: var(--card-shadow);
            border: 1px solid var(--gray-200);
        }

        .connexion-item {
            background: var(--gray-100);
            border-radius: 10px;
            padding: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            border: 1px dashed var(--primary-blue);
            flex-direction: column;
        }

        /* Blue impact cards for more impact */
        .impact-card {
            background: var(--primary-blue);
            border-radius: var(--card-radius);
            padding: 1.25rem;
            text-align: center;
            color: white;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(0, 105, 255, 0.2);
        }

        .impact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 105, 255, 0.3);
        }

        .impact-icon {
            font-size: 32px;
            color: white;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .impact-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.4rem;
            line-height: 1;
        }

        .impact-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.3;
            font-weight: 500;
        }

        /* Cas d'usage - Better layout */
        .cas-usage-section {
            background: white;
            padding: var(--section-padding);
        }

        .cas-usage-content {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        /* Desktop layout: 2 colonnes */
        .cas-usage-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .cas-usage-left {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .cas-usage-header {
            text-align: left;
        }

        .cas-usage-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .cas-usage-partner {
            font-size: 1rem;
            color: var(--primary-blue);
            font-weight: 600;
        }

        .cas-usage-image-container {
            text-align: left;
        }

        .cas-usage-image {
            width: 100%;
            max-width: 500px;
        }

        .cas-usage-right {
            display: flex;
            align-items: center;
        }

        .cas-usage-contexte {
            color: var(--text-dark);
            line-height: 1.8;
            padding: 2rem;
            background: var(--gray-100);
            border-radius: 12px;
            font-size: 0.95rem;
        }

        .cas-usage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.25rem;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .cas-usage-block {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--gray-200);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .cas-usage-block:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-blue);
        }

        .cas-usage-block h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.75rem;
        }

        .cas-usage-block p,
        .cas-usage-block ul {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        .cas-usage-block ul {
            list-style: none;
            padding-left: 0;
        }

        .cas-usage-block ul li {
            position: relative;
            padding-left: 1.25rem;
            margin-bottom: 0.4rem;
        }

        .cas-usage-block ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: bold;
        }

        /* Solutions Section Container */
        .solutions-container {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        /* Solutions Grid */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .solution-card {
            background: white;
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s;
            border: 1px solid var(--gray-200);
            position: relative;
            cursor: pointer;
        }

        .solution-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow-hover);
            border-color: var(--primary-blue);
        }

        .demo-container-small {
            width: 100%;
            height: 400px;
            position: relative;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .iphone-frame {
            width: 180px;
            height: 300px;
            position: relative;
        }

        .iphone-screen {
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 23px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .iphone-screen iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .dynamic-island-small {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 24px;
            background: #f5F5F5;
            border-radius: 18px;
            z-index: 10;
        }

        .solution-info {
            padding: 2rem;
        }

        .solution-badge {
            display: inline-block;
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .solution-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
            font-weight: 700;
        }

        .solution-info p {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .solution-features {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .feature-icon {
            color: #34C759;
            font-size: 20px;
        }

        .solution-cta {
            background: var(--primary-blue);
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 105, 255, 0.2);
        }

        .solution-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 105, 255, 0.3);
        }

        .solution-cta:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Coming soon style pour Simu */
        .coming-soon {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            flex-direction: column;
            gap: 1rem;
        }

        .coming-soon-icon {
            font-size: 48px;
            color: #0064ff;
        }

        .coming-soon-text {
            color: var(--text-gray);
            font-weight: 600;
        }

        /* Partners */
        .partners-carousel {
            max-width: var(--max-width);
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .partners-track {
            display: flex;
            gap: 3rem;
            animation: scroll 20s linear infinite;
            width: fit-content;
        }

        .partner-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 80px;
            padding: 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .partner-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .partner-item img {
            max-height: 100px;
            max-width: 200px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }

        .partner-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Contact simple */
        .contact-container {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .contact-image {
            flex: 0 0 400px;
        }

        .contact-image img {
            width: 100%;
            height: auto;
            border-radius: var(--card-radius);
        }

        .contact-form {
            flex: 1;
            background: white;
            border-radius: var(--card-radius);
            padding: 2.5rem;
            box-shadow: var(--card-shadow);
        }

        /* Footer */
        footer {
            background: #202020;
            color: white;
            padding: 3rem 2rem 2rem;
        }

        .footer-content {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }

        .footer-section h3 {
            font-size: 1rem;
            margin-bottom: 0.75rem;
            color: white;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.6rem;
        }

        .footer-section ul li a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .footer-section ul li a:hover {
            color: var(--primary-blue);
        }

        .footer-logo {
            font-family: 'DM Mono', monospace;
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
            background-image: url('logo-omyn-hero.png');
            background-size: auto 20px;
            background-repeat: no-repeat;
            background-position: left center;
            height: 25px;
        }
       
        .footer-description {
            color: #999;
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 1.25rem;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
            font-size: 18px;
        }

        .social-links a:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #666;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--primary-blue);
            text-decoration: none;
        }

        /* Modal/Popin styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            animation: fadeIn 0.3s;
        }

        .modal-content {
            position: relative;
            background-color: white;
            margin: 2% auto;
            width: 90%;
            max-width: 1200px;
            height: 90vh;
            border-radius: 12px;
            overflow: hidden;
            animation: slideIn 0.3s;
        }

        .modal-header {
            padding: 20px;
            background: var(--gray-100);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-close {
            font-size: 32px;
            font-weight: 300;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--text-gray);
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: var(--text-dark);
        }

        .modal-body {
            height: calc(100% - 70px);
        }

        .modal-iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Solution Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .modal-overlay.active {
            display: flex;
        }

        /* Solution Modal Specific Styles */
        .solution-modal-content {
            position: relative;
            background: transparent;
            max-width: 450px;
            width: 90%;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .solution-modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }

        .solution-modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .solution-modal-body {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* iPhone wrapper for desktop */
        .modal-iphone-wrapper {
            position: relative;
            filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
        }

        .modal-iphone {
            width: 400px;
            height: 760px;
            background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
            border-radius: 50px;
            position: relative;
            padding: 12px;
            box-shadow: 
                0 0 0 2px #E0E0E0,
                inset 0 0 0 1px rgba(145, 145, 145, 0.05);
        }

        .modal-screen {
            width: 100%;
            height: 100%;
            background: #000;
            border-radius: 42px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .modal-dynamic-island {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 28px;
            background: #000;
            border-radius: 18px;
            z-index: 100;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modal-demo-frame {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 42px;
        }

        /* Mobile styles for solution modal */
        @media (max-width: 768px) {
            .solution-modal-content {
                background: white;
                max-width: 100%;
                width: 100%;
                height: 100vh;
                max-height: 100vh;
                border-radius: 0;
            }

            .solution-modal-close {
                position: fixed;
                top: 20px;
                right: 20px;
                background: white;
                color: var(--text-dark);
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            }

            .modal-iphone-wrapper {
                display: none;
            }

            .mobile-modal-frame {
                width: 100%;
                height: 100%;
                border: none;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from { 
                transform: translateY(-30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            nav {
                position: fixed;
                right: -100%;
                top: 0;
                height: 100vh;
                width: 70%;
                background: white;
                box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                z-index: 999;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                padding: 5rem 2rem 2rem;
                gap: 1.5rem;
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
                gap: 3rem;
            }

            .hero-text {
                max-width: 100%;
            }

            .hero-logo {
                width: 300px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-keywords {
                justify-content: center;
            }

            .iphone {
                width: 320px;
                height: 640px;
            }

            .dynamic-island {
                width: 100px;
                height: 24px;
            }

            .schema-actors {
                gap: 0.5rem;
                padding: 0 0.5rem;
            }

            .actor-box {
                padding: 0.6rem;
                gap: 0.5rem;
            }

            .actor-icon {
                font-size: 20px;
            }

            .actor-name {
                font-size: 0.85rem;
            }

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

            .bottom-sections {
                grid-template-columns: 1fr;
            }

            .fabrique-items {
                flex-direction: column;
            }

            .cas-usage-layout {
                grid-template-columns: 1fr;
            }

            .cas-usage-grid {
                grid-template-columns: 1fr;
            }

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

            .contact-container {
                flex-direction: column;
            }

            .contact-image {
                flex: 0 0 auto;
                max-width: 350px;
            }

            .contact-form {
                width: 100%;
                padding: 1.5rem;
            }
            
            .modal-content {
                width: 100%;
                height: 100vh;
                border-radius: 0;
                margin: 0;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 3rem 1rem;
            }

            .hero-logo {
                width: 250px;
            }

            .iphone {
                width: 280px;
                height: 560px;
            }

            .actor-box {
                padding: 0.5rem;
            }

            .actor-icon {
                font-size: 18px;
            }

            .actor-name {
                font-size: 0.75rem;
            }

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

            .hero-keywords {
                gap: 0.5rem;
            }

            .keyword {
                font-size: 0.7rem;
                padding: 0.35rem 0.7rem;
            }

            .partner-item {
                padding: 1rem;
            }

            .partner-item img {
                max-height: 35px;
                max-width: 100px;
            }

            .fabrique-item {
                min-width: 60px;
                padding: 0.35rem;
            }

            .fabrique-item-icon {
                font-size: 16px;
            }

            .fabrique-item-text {
                font-size: 0.55rem;
            }

            .contact-image {
                max-width: 300px;
            }
        }
