/* Variables */
        :root {
            --primary-color: #9DEFE5; /* Menthe du logo */
            --primary-dark: #7DD9CE;
            --secondary-color: #1A2B3C; /* Bleu marine foncé */
            --secondary-light: #2A3B4C;
            --text-dark: #1A2B3C;
            --text-light: #6B7C8C;
            --bg-light: #F8FAFB;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #9DEFE5 0%, #7DD9CE 100%);
            --gradient-secondary: linear-gradient(135deg, #1A2B3C 0%, #2A3B4C 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(11, 32, 56, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(157, 239, 229, 0.1);
            padding: 0;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 40px;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .logo img {
            height: 50px;
            width: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
            justify-content: center;
            margin: 0;
            padding: 0;
        }

        .nav-menu a:not(.btn-primary) {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 15px;
        }

        .nav-menu a:not(.btn-primary):hover {
            color: var(--primary-color);
        }

        .nav-cta {
            justify-self: end;
            display: flex;
            align-items: center;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .nav-container {
                padding: 20px 30px;
                gap: 30px;
            }

            .logo img {
                height: 45px;
            }

            .nav-menu {
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                grid-template-columns: 1fr auto;
                padding: 16px 20px;
                gap: 20px;
            }

            .logo img {
                height: 40px;
            }

            .nav-menu {
                display: none;
            }

            .nav-cta {
                justify-self: end;
            }
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--secondary-color);
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(157, 239, 229, 0.4);
        }

        /* Hero Section */
        .hero {
            background: var(--gradient-secondary);
            padding: 280px 40px 120px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(157, 239, 229, 0.1), transparent 70%);
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 56px;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .hero-content h1 span {
            color: var(--primary-color);
        }

        .hero-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 12px 28px;
            border: 2px solid var(--primary-color);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--secondary-color);
        }

        /* Mockup Container */
        .mockup-container {
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }


        .mockup-desktop {
            background: var(--secondary-color);
            border-radius: 16px;
            box-shadow: 0 30px 60px rgba(141,228,217, 0.808);
            padding: 10px;
            position: relative;
        }

        .mockup-desktop::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 40px;
            background: var(--secondary-light);
            border-radius: 16px 16px 0 0;
        }

        .mockup-desktop img {
            width: 100%;
            border-radius: 8px;
            margin-top: 32px;
            display: block;
        }


        .mockup-mobile {
            position: absolute;
            bottom: -30px;
            right: -40px;
            width: 35%;
        }

        .mockup-mobile img {
            width: 200%;
            border-radius: 16px;
            display: block;
        }

        /* Mockup Industries */
        .mockup-container2 {
            position: relative;
            width: 140%; 
            margin-top: 180px;
        }

        .mockup-desktop2 {
            background: var(--secondary-color);
            border-radius: 16px;
            box-shadow: 0 30px 60px rgba(141,228,217, 0.808);
            padding: 10px;
            position: relative;
        }

        .mockup-desktop2 img {
            width: 100%;
            border-radius: 8px;
            display: block;
        }


        .mockup-mobile2 {
            position: absolute;
            bottom: -30px;
            right: -40px;
            width: 35%;
        }

        .mockup-mobile2 img {
            width: 200%;
            border-radius: 16px;
            display: block;
        }

        /* Features Section */
        .features {
            padding: 120px 40px;
            background: var(--bg-light);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(157, 239, 229, 0.15);
            color: var(--primary-dark);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header h2 {
            font-size: 48px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.7;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(157, 239, 229, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 32px;
            color: var(--secondary-color);
        }

        .feature-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 16px;
        }

        /* AI Planning Section */
        .ai-planning {
            padding: 120px 40px;
            background: linear-gradient(135deg, #1A2B3C 0%, #0F1922 100%);
            position: relative;
            overflow: hidden;
        }

        .ai-planning::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(157, 239, 229, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .ai-planning::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(157, 239, 229, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .ai-planning-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: flex-start;
            position: relative;
            z-index: 1;
        }

        .ai-planning-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
        }

        /* Image d'arrière-plan dans le cadre noir */
        .ai-background-image {
            width: 100%;
            max-width: 500px;
            border: 1px solid rgba(157, 239, 229, 0.2);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(157, 239, 229, 0.2);
            transition: all 0.4s ease;
        }

        .ai-background-image:hover {
            border-color: rgba(157, 239, 229, 0.4);
            box-shadow: 0 20px 60px rgba(157, 239, 229, 0.3);
        }

        .ai-background-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .ai-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(157, 239, 229, 0.2);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(157, 239, 229, 0.2);
            width: 100%;
            max-width: 500px;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .ai-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .ai-card:hover::before {
            transform: scaleX(1);
        }

        .ai-card:hover {
            transform: translateY(-10px);
            border-color: rgba(157, 239, 229, 0.4);
            box-shadow: 0 20px 60px rgba(157, 239, 229, 0.3);
        }

        .ai-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 24px;
            color :white
        }

        .ai-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            font-size: 28px;
            color: var(--secondary-color);
        }

        .ai-features-list {
            margin-bottom: 24px;
        }

        .ai-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: white;
        }

        .ai-feature-item i {
            color: var(--primary-color);
            margin-right: 8px;
        }

        .ai-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            padding-top: 20px;
            color: white;
        }

        .ai-stat {
            text-align: center;
        }

        .ai-stat-value {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }

        .ai-stat-label {
            font-size: 14px;
            color: var(--primary-color);
        }

        .ai-planning-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ai-planning-content .section-tag {
            background: rgba(157, 239, 229, 0.2);
            color: var(--primary-color);
        }

        .ai-planning-content h2 {
            font-size: 48px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .ai-intro {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .ai-benefits {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .ai-benefit {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(157, 239, 229, 0.2);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: all 0.3s ease;
        }

        .ai-benefit:hover {
            border-color: rgba(157, 239, 229, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(157, 239, 229, 0.15);
        }

        .ai-benefit-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--secondary-color);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .ai-benefit:hover .ai-benefit-icon {
            transform: scale(1.1);
        }

        .ai-benefit-content h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }

        .ai-benefit-content p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .ai-cta {
            display: flex;
            gap: 20px;
        }

        .ai-cta-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .ai-cta-link:hover {
            color: var(--secondary-color);
        }

        /* WhatsApp Integration Section */
        .whatsapp-integration {
            padding: 120px 40px;
            background: var(--bg-light);
        }

        .whatsapp-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .whatsapp-content {
            max-width: 600px;
        }

        .whatsapp-highlight {
            color: var(--primary-color);
            font-weight: 700;
        }

        .whatsapp-intro {
            margin-bottom: 40px;
            line-height: 1.7;
            font-size: 18px;
            color: var(--text-light);
        }

        .whatsapp-flow {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }

        .flow-step {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
        }

        .flow-step-number {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            margin-right: 16px;
        }

        .flow-arrow {
            font-size: 24px;
            color: var(--primary-color);
            margin-right: 16px;
        }

        .whatsapp-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .whatsapp-feature {
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .whatsapp-feature i {
            font-size: 28px;
            color: var(--primary-color);
        }

        .whatsapp-stats-bar {
            display: flex;
            justify-content: space-between;
            background: var(--white);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

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

        /* Industries Section */
        .industries {
            padding: 120px 40px;
            background: linear-gradient(135deg, #1A2B3C 0%, #0F1922 100%);
            position: relative;
            overflow: hidden;
        }

        .industries::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(157, 239, 229, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .industries::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(157, 239, 229, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }

        .industries-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .industries-content .section-tag {
            background: rgba(157, 239, 229, 0.2);
            color: var(--primary-color);
        }

        .industries-content h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--white);
        }

        .industries-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .industry-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .industry-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(157, 239, 229, 0.2);
            border-radius: 12px;
            transition: all 0.3s;
            border-left: 4px solid transparent;
        }

        .industry-item:hover {
            border-left-color: var(--primary-color);
            border-color: rgba(157, 239, 229, 0.4);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(157, 239, 229, 0.15);
        }

        .industry-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--secondary-color);
            flex-shrink: 0;
        }

        .industry-item h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--white);
        }

        /* Screenshot Section */
        .screenshots {
            padding: 120px 40px;
            background: var(--bg-light);
        }

        .screenshots-grid {
            max-width: 1400px;
            margin: 60px auto 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .screenshot-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }

        .screenshot-card:hover {
            transform: scale(1.02);
        }

        .screenshot-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        .screenshot-label {
            padding: 24px;
            background: var(--gradient-secondary);
            color: var(--white);
            font-weight: 600;
            text-align: center;
            font-size: 18px;
        }

        /* CTA Section */
.cta {
    padding: 120px 40px 60px; /* Réduit le padding-bottom de 120px à 60px */
    background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(157, 239, 229, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 239, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-box {
    background: var(--gradient-secondary);
    border-radius: 30px;
    padding: 80px 60px;
    box-shadow: 0 30px 80px rgba(26, 43, 60, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(157, 239, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(157, 239, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h2,
.cta-box p {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    /* ...existing code... */

    .cta {
        padding: 80px 20px 40px; /* Réduit aussi pour mobile */
    }

    .pricing {
        padding: 40px 20px 80px; /* Réduit aussi pour mobile */
    }

    .cta-box {
        padding: 60px 30px;
        border-radius: 20px;
    }

    .cta h2 {
        font-size: 36px;
    }

    .cta p {
        font-size: 18px;
    }

    .cta .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* Pricing Section */
.pricing {
    padding: 60px 40px 120px;
    background: linear-gradient(135deg, #1A2B3C 0%, #0F1922 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 239, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(157, 239, 229, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing .section-header {
    margin-bottom: 80px;
}

.pricing .section-header .section-tag {
    background: rgba(157, 239, 229, 0.2);
    color: var(--primary-color);
}

.pricing .section-header h2 {
    color: var(--white);
}

.pricing .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(157, 239, 229, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pricing-header p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-price {
    margin-bottom: 20px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-light);
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.price-period {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.price-savings {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 8px;
}

.pricing-details {
    margin-bottom: 30px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.pricing-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    margin-top: auto;
}

.pricing-btn.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.pricing-btn.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.pricing-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(157, 239, 229, 0.4);
}

/* Pricing FAQ */
.pricing-faq {
    background: var(--white);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.pricing-faq h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.faq-item i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.faq-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    /* ...existing code... */

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 80px;
    }

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

@media (max-width: 768px) {
    /* ...existing code... */

    .cta {
        padding: 80px 20px 40px; /* Réduit aussi pour mobile */
    }

    .pricing {
        padding: 40px 20px 80px; /* Réduit aussi pour mobile */
    }

    .pricing-card {
        padding: 40px 30px;
    }

    .price-amount {
        font-size: 48px;
    }

    .pricing-faq {
        padding: 40px 30px;
    }

    .pricing-faq h3 {
        font-size: 24px;
    }
}

/* ...existing code... */

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A2B3C 0%, #0F1922 100%);
    padding: 80px 40px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(157, 239, 229, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(157, 239, 229, 0.1);
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    margin-bottom: 8px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 350px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(157, 239, 229, 0.1);
    border: 1px solid rgba(157, 239, 229, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(157, 239, 229, 0.3);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column ul li {
    margin: 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-column a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits i {
    color: #ff6b6b;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-credits a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-credits a:hover {
    color: var(--white);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 1200px) {
    /* ...existing code... */

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    /* ...existing code... */

    .footer {
        padding: 60px 20px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-credits {
        justify-content: center;
    }

    .footer-column a::before {
        display: none;
    }

    .footer-column a:hover {
        transform: none;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        grid-template-columns: auto 1fr auto;
    }

    .nav-menu {
        gap: 25px;
    }

    .hero-container,
    .industries-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .ai-planning-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ai-planning-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto;
    }

    .nav-menu {
        display: none;
    }

    .nav-cta {
        justify-self: end;
    }

    .hero-content h1 {
        font-size: 40px;
    }

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

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

    .section-header h2,
    .cta h2 {
        font-size: 36px;
    }

    .mockup-mobile {
        position: relative;
        right: 0;
        bottom: 0;
        width: 60%;
        margin: 30px auto 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ai-planning {
        padding: 80px 40px;
    }

    .ai-planning-visual {
        gap: 20px;
    }

    .ai-card,
    .ai-background-image {
        max-width: 100%;
    }

    .ai-card {
        padding: 30px;
    }

    .ai-benefits {
        grid-template-columns: 1fr;
    }
        }

        /* WhatsApp Integration Section */
        .whatsapp-integration {
            padding: 120px 40px;
            background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 100%);
            position: relative;
            overflow: hidden;
        }

        .whatsapp-integration::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .whatsapp-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .whatsapp-highlight {
            color: #25D366;
            position: relative;
        }

        .whatsapp-highlight::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 3px;
            background: #25D366;
        }

        .whatsapp-intro {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 50px;
            line-height: 1.7;
        }

        /* Flow Steps */
        .whatsapp-flow {
            margin-bottom: 50px;
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .flow-step {
            display: grid;
            grid-template-columns: 60px 1fr auto;
            gap: 20px;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
        }

        .flow-step:last-child {
            margin-bottom: 0;
        }

        .flow-step:last-child .flow-arrow {
            display: none;
        }

        .flow-step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        .flow-step-content h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .flow-step-content p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .flow-arrow {
            font-size: 28px;
            color: #25D366;
            font-weight: 700;
        }

        /* WhatsApp Features Grid */
        .whatsapp-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .whatsapp-feature {
            background: var(--white);
            padding: 24px;
            border-radius: 16px;
            border: 2px solid rgba(37, 211, 102, 0.1);
            transition: all 0.3s;
        }

        .whatsapp-feature:hover {
            border-color: rgba(37, 211, 102, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
        }

        .whatsapp-feature i {
            font-size: 32px;
            color: #25D366;
            margin-bottom: 16px;
        }

        .whatsapp-feature h5 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .whatsapp-feature p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Phone Mockup */
        .whatsapp-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .phone-mockup {
            width: 100%;
            max-width: 380px;
            background: var(--white);
            border-radius: 40px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
            padding: 20px;
            border: 12px solid #1A2B3C;
            position: relative;
            animation: phoneFloat 4s ease-in-out infinite;
        }

        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        .phone-header {
            background: #075E54;
            padding: 16px;
            border-radius: 20px 20px 0 0;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--white);
            font-weight: 600;
        }

        .phone-header i {
            font-size: 24px;
        }

        .phone-content {
            background: #ECE5DD;
            min-height: 500px;
            padding: 20px;
            border-radius: 0 0 20px 20px;
            position: relative;
            overflow-y: auto;
        }

        /* WhatsApp Messages */
        .whatsapp-message {
            display: flex;
            margin-bottom: 16px;
            animation: messageSlide 0.3s ease-out;
        }

        @keyframes messageSlide {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .whatsapp-message.received {
            justify-content: flex-start;
            gap: 8px;
        }

        .whatsapp-message.sent {
            justify-content: flex-end;
        }

        .message-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #9DEFE5, #7DD9CE);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--secondary-color);
            font-size: 18px;
        }

        .message-bubble {
            max-width: 75%;
            background: var(--white);
            padding: 12px 16px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .whatsapp-message.sent .message-bubble {
            background: #DCF8C6;
        }

        .message-sender {
            font-size: 12px;
            font-weight: 600;
            color: #128C7E;
            margin-bottom: 4px;
        }

        .message-text {
            font-size: 14px;
            color: #1A2B3C;
            line-height: 1.5;
        }

        .message-time {
            font-size: 11px;
            color: #667781;
            text-align: right;
            margin-top: 4px;
        }

        /* Quick Replies */
        .quick-replies {
            display: flex;
            gap: 12px;
            margin: 20px 0;
            justify-content: center;
        }

        .quick-reply {
            padding: 12px 24px;
            border: none;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .quick-reply.accept {
            background: #25D366;
            color: var(--white);
        }

        .quick-reply.accept:hover {
            background: #128C7E;
            transform: scale(1.05);
        }

        .quick-reply.decline {
            background: var(--white);
            color: #667781;
            border: 2px solid #E9EDEF;
        }

        .quick-reply.decline:hover {
            background: #F5F6F6;
        }

        /* Typing Indicator */
        .typing-indicator {
            display: flex;
            gap: 6px;
            padding: 12px;
            background: var(--white);
            border-radius: 20px;
            width: fit-content;
            margin-top: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .typing-indicator span {
            width: 8px;
            height: 8px;
            background: #90949C;
            border-radius: 50%;
            animation: typingDot 1.4s infinite;
        }

        .typing-indicator span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-indicator span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typingDot {
            0%, 60%, 100% {
                opacity: 0.3;
                transform: scale(0.8);
            }
            30% {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            /* ...existing code... */

            .whatsapp-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .whatsapp-visual {
                order: -1;
            }

            .flow-step {
                grid-template-columns: 50px 1fr;
            }

            .flow-arrow {
                display: none;
            }
        }

        @media (max-width: 768px) {
            /* ...existing code... */

            .whatsapp-integration {
                padding: 80px 40px;
            }

            .whatsapp-features,
            .whatsapp-stats-bar {
                grid-template-columns: 1fr;
            }

            .phone-mockup {
                max-width: 100%;
            }

            .flow-step {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .flow-step-number {
                margin: 0 auto;
            }
        }

        /* Innovations Techniques Section */
.innovations {
    padding: 120px 40px;
    background: linear-gradient(135deg, #1A2B3C 0%, #0F1922 100%);
    position: relative;
    overflow: hidden;
}

.innovations::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 239, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.innovations::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(157, 239, 229, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.innovations-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.innovations .section-header {
    margin-bottom: 80px;
}

.innovations .section-header h2,
.innovations .section-header p {
    color: var(--white);
}

.innovations .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.innovations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 239, 229, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.innovation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.innovation-card:hover::before {
    transform: scaleX(1);
}

.innovation-card:hover {
    transform: translateY(-10px);
    border-color: rgba(157, 239, 229, 0.4);
    box-shadow: 0 20px 60px rgba(157, 239, 229, 0.2);
}

.innovation-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
    opacity: 0.7;
}

.innovation-icon {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    align-items: center;
}

.innovation-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-icon i {
    transform: scale(1.1);
}

.innovation-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.innovation-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.innovation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(157, 239, 229, 0.1);
    border: 1px solid rgba(157, 239, 229, 0.2);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(157, 239, 229, 0.2);
    border-color: rgba(157, 239, 229, 0.4);
}

.feature-tag i {
    font-size: 12px;
}

/* Tech Bar */
.tech-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 239, 229, 0.15);
    padding: 40px;
    border-radius: 20px;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tech-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.tech-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.tech-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1200px) {
    /* ...existing code... */

    .innovations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* ...existing code... */

    .innovations {
        padding: 80px 40px;
    }

    .innovations-grid,
    .tech-bar {
        grid-template-columns: 1fr;
    }

    .innovation-number {
        font-size: 36px;
    }

    .innovation-icon {
        justify-content: center;
    }

    .innovation-card {
        padding: 30px;
        text-align: center;
    }

    .innovation-features {
        justify-content: center;
    }
}

/* Social Follow Section */
.social-follow {
    padding: 40px 40px; /* Réduit de 60px à 40px */
    background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.social-follow::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 400px; /* Réduit de 500px à 400px */
    height: 400px; /* Réduit de 500px à 400px */
    background: radial-gradient(circle, rgba(157, 239, 229, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.social-follow::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px; /* Réduit de 600px à 500px */
    height: 500px; /* Réduit de 600px à 500px */
    background: radial-gradient(circle, rgba(157, 239, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.social-follow-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-follow-box {
    background: var(--gradient-secondary);
    border-radius: 24px; /* Réduit de 30px à 24px */
    padding: 40px 50px; /* Réduit de 60px à 40px */
    box-shadow: 0 30px 80px rgba(26, 43, 60, 0.15);
    position: relative;
    overflow: hidden;
}

.social-follow-box::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 300px; /* Réduit de 350px à 300px */
    height: 300px; /* Réduit de 350px à 300px */
    background: radial-gradient(circle, rgba(157, 239, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.social-follow-box::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 250px; /* Réduit de 300px à 250px */
    height: 250px; /* Réduit de 300px à 250px */
    background: radial-gradient(circle, rgba(157, 239, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.social-follow-icon {
    width: 60px; /* Réduit de 80px à 60px */
    height: 60px; /* Réduit de 80px à 60px */
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px; /* Réduit de 30px à 20px */
    font-size: 28px; /* Réduit de 36px à 28px */
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(157, 239, 229, 0.4);
    animation: heartbeat 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

.social-follow-box h2 {
    font-size: 32px; /* Réduit de 42px à 32px */
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px; /* Réduit de 20px à 12px */
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.social-follow-box p {
    font-size: 16px; /* Réduit de 18px à 16px */
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px; /* Réduit de 40px à 30px */
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.social-buttons {
    display: flex;
    gap: 16px; /* Réduit de 20px à 16px */
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px; /* Réduit de 40px à 30px */
    position: relative;
    z-index: 1;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px; /* Réduit de 12px à 10px */
    padding: 12px 24px; /* Réduit de 16px 32px à 12px 24px */
    border-radius: 10px; /* Réduit de 12px à 10px */
    font-weight: 700;
    font-size: 14px; /* Réduit de 16px à 14px */
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 160px; /* Réduit de 180px à 160px */
    justify-content: center;
}

.social-btn i {
    font-size: 18px; /* Réduit de 20px à 18px */
}

.social-btn.facebook {
    background: #1877F2;
    color: var(--white);
}

.social-btn.facebook:hover {
    background: #145DBF;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

.social-btn.linkedin {
    background: #0A66C2;
    color: var(--white);
}

.social-btn.linkedin:hover {
    background: #084F94;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 102, 194, 0.4);
}

/* WhatsApp Button */
.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
}

.social-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #E1306C 0%, #F77737 50%, #FCAF45 100%);
    color: var(--white);
}

.social-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 10px; /* Réduit de 12px à 10px */
    background: rgba(157, 239, 229, 0.15);
    border: 1px solid rgba(157, 239, 229, 0.3);
    padding: 10px 20px; /* Réduit de 14px 28px à 10px 20px */
    border-radius: 24px; /* Réduit de 30px à 24px */
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px; /* Réduit de 15px à 13px */
}

.stat-badge i {
    font-size: 16px; /* Réduit de 20px à 16px */
}

/* Responsive */
@media (max-width: 768px) {
    /* ...existing code... */

    .social-follow {
        padding: 30px 20px; /* Réduit de 40px 20px à 30px 20px */
    }

    .social-follow-box {
        padding: 30px 25px; /* Réduit de 40px 30px à 30px 25px */
        border-radius: 20px;
    }

    .social-follow-box h2 {
        font-size: 26px; /* Réduit de 32px à 26px */
    }

    .social-follow-box p {
        font-size: 15px;
    }

    .social-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px; /* Réduit de 16px à 12px */
    }

    .social-btn {
        width: 100%;
        min-width: auto;
    }

    .social-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-badge {
        width: 100%;
        justify-content: center;
    }

    .social-follow-icon {
        width: 50px; /* Réduit de 70px à 50px */
        height: 50px; /* Réduit de 70px à 50px */
        font-size: 24px; /* Réduit de 30px à 24px */
    }
}

/* Contact Section */
.contact {
    padding: 120px 40px;
    background: linear-gradient(135deg, #1A2B3C 0%, #0F1922 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 239, 229, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(157, 239, 229, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact .section-header {
    margin-bottom: 80px;
}

.contact .section-header .section-tag {
    background: rgba(157, 239, 229, 0.2);
    color: var(--primary-color);
}

.contact .section-header h2 {
    color: var(--white);
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-intro h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-intro p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 239, 229, 0.2);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    border-color: rgba(157, 239, 229, 0.4);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-detail-item h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail-item p,
.contact-detail-item a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-decoration: none;
}

.contact-detail-item a:hover {
    color: var(--primary-color);
}

/* CTA Box - Modifié pour être en pleine largeur */
.contact-cta-box {
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    grid-column: 1 / -1; /* Prend toute la largeur */
    margin-top: 20px;
    box-shadow: 0 20px 60px rgba(157, 239, 229, 0.3);
    transition: all 0.4s ease;
}

.contact-cta-box:hover {
    box-shadow: 0 30px 80px rgba(157, 239, 229, 0.4);
    transform: translateY(-5px);
}



.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 43, 60, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--secondary-color);
    margin: 0 auto 20px;
}

.contact-cta-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.contact-cta-box p {
    font-size: 15px;
    color: rgba(26, 43, 60, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-cta-box .btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-cta-box .btn-primary:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 239, 229, 0.2);
    border-radius: 24px;
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(157, 239, 229, 0.2);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239DEFE5' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group select option {
    background: var(--secondary-color);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height:  120px;
}

.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    margin-top: 8px;
}

.form-info {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: -8px;
}

/* Responsive */
@media (max-width: 1200px) {
    /* ...existing code... */

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

    .contact-cta-box {
        grid-column: 1;
        order: 3;
    }

    .contact-form-wrapper {
        order: 2;
    }

    .contact-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    /* ...existing code... */

    .contact {
        padding: 80px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-intro h3 {
        font-size: 24px;
    }

    .contact-cta-box {
        padding: 25px;
    }
}

