:root {
            --primary: #2CB14B;
            --primary-dark: #1E8E3E;
            --primary-light: #E8F5E9;
            --dark: #1A1A2E;
            --light: #F9F9FF;
        }
        body {
            font-family: 'Outfit', -apple-system, sans-serif;
            color: var(--dark);
            margin: 0;
            line-height: 1.6;
            background-color: white;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            z-index: 100;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        .nav-logo {
            height: 80px;
        }
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            position: relative;
            padding: 5px 5px 5px 5px;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .nav-cta {
            background: var(--primary);
            color: white;
            padding: 10px 25px;
            border-radius: 20px;
            font-weight: 600;
            transition: transform 0.3s;
        }
        .nav-cta:hover {
            transform: translateY(-2px);
        }

        /* Conteneur */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* iPhone moderne */
        .phone-screen {
            width: 100%;
            height: 100%;
        }
        .phone-screen img {
            width: 50%;
            height: 100%;
            object-fit: contain;
        }
		.phone-screen-2 img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        /* Typographie */
        h1, h2, h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            margin-top: 0;
        }
        h1 { font-size: 2.5rem; line-height: 1.2; }
        h2 { font-size: 2rem; margin-bottom: 1.5rem; }
        h3 { font-size: 1.3rem; }
        p { 
            margin-bottom: 1.5rem;
            color: #white;
        }
        
        /* Sections */
        section {
            padding: 100px 0;
        }
        .hero {
            background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
            color: white;
            padding: 160px 0 100px;
            margin-top: 0;
        }
        .btn {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        .feature {
            text-align: center;
            margin-bottom: 40px;
            padding: 25px;
            border-radius: 15px;
            transition: transform 0.3s;
        }
        .feature:hover {
            transform: translateY(-5px);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 15px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .feature-icon svg {
            width: 32px;
            height: 32px;
        }
        .flex-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }
        .flex-section > div {
            flex: 1;
            min-width: 300px;
        }
        .gallery {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 30px 0;
            scroll-snap-type: x mandatory;
            justify-content: center;
        }
        .gallery-item {
            flex: 0 0 auto;
            scroll-snap-align: start;
            display: flex;
            justify-content: center;
        }
        
        /* Cartes */
        .card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        /* Nouveaux styles */
        .local-badge {
            display: inline-flex;
            align-items: center;
            background: var(--primary-light);
            color: var(--primary-dark);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .local-badge svg {
            width: 16px;
            height: 16px;
            margin-right: 6px;
        }
        .text-center {
            text-align: center;
        }

        /* Styles pour le formulaire de contact */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        .submit-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, background 0.3s;
            display: inline-block;
        }
        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        .form-message {
            margin-top: 20px;
            padding: 10px 15px;
            border-radius: 8px;
            display: none;
        }
        .form-message.success {
            background: var(--primary-light);
            color: var(--primary-dark);
            display: block;
        }
        .form-message.error {
            background: #FFEBEE;
            color: #C62828;
            display: block;
        }
        .honeypot-field {
            position: absolute;
            left: -9999px;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 25px;
            }
            .nav-container {
                padding: 15px 25px;
            }
            .nav-links {
                gap: 15px;
            }
            h1 { font-size: 2rem; }
            section { padding: 80px 0; }
            .contact-form {
                padding: 25px;
            }
        }
		/* Navigation - Version mobile */
/* Navigation - Version mobile */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px 25px;
        height: auto;
        flex-wrap: wrap;
    }
    
    .nav-logo {
        height: 60px;
    }
    
    /* Menu hamburger */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 101;
    }
    
    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: var(--dark);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    /* Etat ouvert du menu */
    .menu-toggle.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Menu links */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 100;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-cta {
        margin-top: 20px;
    }
    
    /* Overlay */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 99;
    }
    
    .overlay.open {
        opacity: 1;
        visibility: visible;
    }
}

/* Cache le toggle sur desktop */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}
	
	.menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
            z-index: 101;
        }
        
        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--dark);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .menu-toggle.open span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .menu-toggle.open span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.open span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 99;
        }
        
        .overlay.open {
            opacity: 1;
            visibility: visible;
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: center;
                gap: 30px;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                z-index: 100;
            }
            
            .nav-links.open {
                right: 0;
            }
            
            .nav-container {
                padding: 15px 25px;
            }
            
            .nav-logo {
                height: 60px;
            }
        }