@import url('https://fonts.cdnfonts.com/css/lufga'); :root { /* Couleurs principales */ --orange-500: #40BDEA; --orange-600: #444; --orange-100: #FFF4F1; --orange-50: #FFFAF8; /* Couleurs secondaires */ --emerald-500: #10B981; --emerald-600: #059669; --blue-500: #3B82F6; --purple-500: #8B5CF6; /* Couleurs neutres */ --gray-900: #111827; --gray-800: #1F2937; --gray-700: #374151; --gray-600: #4B5563; --gray-500: #6B7280; --gray-400: #9CA3AF; --gray-300: #D1D5DB; --gray-200: #E5E7EB; --gray-100: #F3F4F6; --gray-50: #F9FAFB; --white: #FFFFFF; /* Gradients */ --gradient-orange: linear-gradient(135deg, #40BDEA 0%, #444 100%); --gradient-africa: linear-gradient(135deg, #40BDEA 0%, #10B981 50%, #3B82F6 100%); --gradient-dark: linear-gradient(135deg, #111827 0%, #1F2937 100%); /* Shadows */ --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05); --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25); /* Typography */ --font-heading: 'Lufga','Space Grotesk', system-ui, sans-serif; --font-body: 'Lufga','Inter', system-ui, sans-serif; } .logo img{ width: 150px; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--font-body); line-height: 1.6; color: var(--gray-800); overflow-x: hidden; scroll-behavior: smooth; } /* ===== NAVIGATION ===== */ .navbar { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--gray-200); transition: all 0.3s ease; } .navbar.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: var(--shadow-lg); } .nav-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 80px; } .logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--gray-900); text-decoration: none; } .logo-icon { width: 40px; height: 40px; background: var(--gradient-orange); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; } .nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; } .nav-link { text-decoration: none; color: var(--gray-700); font-weight: 500; padding: 0.5rem 1rem; border-radius: 8px; transition: all 0.3s ease; position: relative; } .nav-link:hover, .nav-link.active { color: var(--orange-500); background: var(--orange-50); } .nav-actions { display: flex; align-items: center; gap: 1rem; } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 12px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease; font-size: 0.875rem; } .btn-primary { background: var(--gradient-orange); color: white; box-shadow: var(--shadow-md); } .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); color: white; } .btn-secondary { background: white; color: var(--gray-700); border: 1px solid var(--gray-300); } .btn-secondary:hover { background: var(--gray-50); color: var(--gray-900); } /* ===== HERO SECTION ===== */ .hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--gray-50) 0%, var(--orange-50) 100%); position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="4" height="4" patternUnits="userSpaceOnUse"><path d="M 4 0 L 0 0 0 4" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>'); opacity: 0.5; } .hero-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; } .hero-content { animation: slideInUp 1s ease; } .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--orange-100); color: var(--orange-600); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 2rem; } .hero-title { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; line-height: 1.1; color: var(--gray-900); margin-bottom: 1.5rem; } .hero-title .highlight { background: var(--gradient-orange); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-subtitle { font-size: 1.25rem; color: var(--gray-600); margin-bottom: 2rem; line-height: 1.7; } .hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; } .btn-hero { padding: 1rem 2rem; font-size: 1rem; } .hero-stats { display: flex; gap: 2rem; } .stat { text-align: center; } .stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--orange-500); display: block; } .stat-label { font-size: 0.875rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; } .hero-visual { position: relative; animation: slideInUp 1s ease 0.3s both; } .hero-image { width: 100%; height: auto; border-radius: 24px; box-shadow: var(--shadow-2xl); } .floating-card { position: absolute; background: white; border-radius: 16px; padding: 1.5rem; box-shadow: var(--shadow-xl); animation: float 6s ease-in-out infinite; } .floating-card-1 { top: 20px; right: -20px; animation-delay: 0s; } .floating-card-2 { bottom: 20px; left: -20px; animation-delay: 3s; } .card-icon { width: 40px; height: 40px; background: var(--gradient-orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; margin-bottom: 0.5rem; } .card-title { font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; } .card-subtitle { font-size: 0.875rem; color: var(--gray-500); } /* ===== SERVICES SECTION ===== */ .services { padding: 6rem 0; background: white; } .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; } .section-header { text-align: center; margin-bottom: 4rem; } .section-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--orange-100); color: var(--orange-600); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; } .section-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1rem; } .section-subtitle { font-size: 1.125rem; color: var(--gray-600); max-width: 600px; margin: 0 auto; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; } .service-card { background: white; border: 1px solid var(--gray-200); border-radius: 24px; padding: 2rem; transition: all 0.3s ease; position: relative; overflow: hidden; } .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-orange); } .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--orange-200); } .service-icon { width: 60px; height: 60px; background: var(--gradient-orange); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; margin-bottom: 1.5rem; } .service-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; } .service-desc { color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.6; } .service-features { list-style: none; margin-bottom: 1.5rem; } .service-features li { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.875rem; color: var(--gray-600); } .service-features i { color: var(--emerald-500); font-size: 0.75rem; } .service-action { display: flex; align-items: center; gap: 0.5rem; color: var(--orange-500); font-weight: 600; text-decoration: none; transition: all 0.3s ease; } .service-action:hover { color: var(--orange-600); gap: 0.75rem; } /* ===== HOW IT WORKS SECTION ===== */ .how-it-works { padding: 6rem 0; background: var(--gray-50); } .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; } .step-card { background: white; border-radius: 20px; padding: 2.5rem 2rem; text-align: center; position: relative; box-shadow: var(--shadow-md); transition: all 0.3s ease; } .step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); } .step-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--gradient-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: white; font-size: 1.2rem; } .step-icon { width: 80px; height: 80px; background: var(--orange-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 2rem auto 1.5rem; font-size: 2rem; color: var(--orange-500); transition: all 0.3s ease; } .step-card:hover .step-icon { background: var(--gradient-orange); color: white; transform: scale(1.1); } .step-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; } .step-desc { color: var(--gray-600); line-height: 1.6; } /* ===== WEBSITE MODELS SECTION ===== */ .website-models { padding: 6rem 0; background: white; } .models-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; } .model-card { background: white; border: 1px solid var(--gray-200); border-radius: 20px; overflow: hidden; transition: all 0.3s ease; position: relative; } .model-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--orange-300); } .model-image { position: relative; height: 200px; background: linear-gradient(135deg, var(--orange-50) 0%, var(--gray-50) 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; } .model-preview { width: 90%; height: 80%; background: white; border-radius: 8px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden; } .preview-header { height: 30px; background: var(--gray-100); display: flex; align-items: center; padding: 0 1rem; gap: 0.5rem; } .preview-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-400); } .preview-content { flex: 1; padding: 1rem; background: white; } .preview-bar { height: 8px; background: var(--orange-500); border-radius: 4px; margin-bottom: 0.5rem; } .preview-line { height: 4px; background: var(--gray-200); border-radius: 2px; margin-bottom: 0.3rem; } .model-content { padding: 2rem; } .model-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; } .model-desc { color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.6; } .model-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; } .feature-tag { background: var(--orange-100); color: var(--orange-600); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; } .model-price { font-size: 1.1rem; color: var(--gray-700); margin-bottom: 1.5rem; } .price-highlight { color: var(--orange-500); font-weight: 700; font-size: 1.3rem; } .model-action { width: 100%; padding: 0.75rem; background: var(--gradient-orange); color: white; border: none; border-radius: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; } .model-action:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } /* ===== AI MODELS SECTION ===== */ .ai-models { padding: 6rem 0; background: var(--gray-50); } .ai-models-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; } .ai-model-card { background: white; border-radius: 20px; padding: 2rem; transition: all 0.3s ease; position: relative; border: 2px solid transparent; } .ai-model-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--orange-500); } .ai-model-header { text-align: center; margin-bottom: 2rem; } .ai-model-icon { width: 80px; height: 80px; background: var(--gradient-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 2rem; color: white; position: relative; } .ai-model-icon::after { content: ''; position: absolute; top: -4px; right: -4px; width: 24px; height: 24px; background: var(--emerald-500); border-radius: 50%; border: 3px solid white; } .ai-model-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; } .ai-model-tag { background: var(--orange-100); color: var(--orange-600); padding: 0.3rem 1rem; border-radius: 15px; font-size: 0.8rem; font-weight: 600; display: inline-block; } .ai-model-desc { color: var(--gray-600); line-height: 1.6; margin-bottom: 1.5rem; text-align: left; } .ai-features { margin-bottom: 2rem; } .ai-feature { display: flex; align-items: center; margin-bottom: 0.8rem; padding: 0.5rem; background: var(--gray-50); border-radius: 8px; } .ai-feature i { margin-right: 0.8rem; font-size: 1rem; color: var(--emerald-500); } .ai-feature span { color: var(--gray-700); font-weight: 500; } .ai-model-status { text-align: center; padding: 1rem; border-radius: 12px; font-weight: 600; } .status-available { background: var(--emerald-50); color: var(--emerald-600); border: 1px solid var(--emerald-200); } .status-coming-soon { background: var(--orange-50); color: var(--orange-600); border: 1px solid var(--orange-200); } /* ===== COMPANIES SECTION ===== */ .companies { padding: 6rem 0; background: var(--gray-900); color: white; } .companies-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 4rem; } .company-stat { text-align: center; padding: 2rem; background: rgba(255, 255, 255, 0.05); border-radius: 16px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s ease; } .company-stat:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); } .company-stat-icon { width: 60px; height: 60px; background: var(--gradient-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; color: white; } .company-stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--orange-500); margin-bottom: 0.5rem; } .company-stat-label { color: rgba(255, 255, 255, 0.8); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; } .companies-slider { overflow: hidden; margin: 2rem 0; position: relative; } .companies-slider::before, .companies-slider::after { content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; pointer-events: none; } .companies-slider::before { left: 0; background: linear-gradient(to right, var(--gray-900), transparent); } .companies-slider::after { right: 0; background: linear-gradient(to left, var(--gray-900), transparent); } .companies-track { display: flex; gap: 2rem; animation: scroll 30s linear infinite; width: max-content; } .companies-track:hover { animation-play-state: paused; } .company-logo { background: rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 10px; line-height : 0px; text-align: center; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1); flex-shrink: 0; } .company-logo img{ height: 80px; } .company-logo:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); } .company-name { font-weight: 600; color: white; } .company-industry { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); } @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } /* ===== ABOUT MISSION SECTION ===== */ .about-mission { padding: 6rem 0; background: white; } .mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .mission-content h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1.5rem; } .mission-content p { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 2rem; line-height: 1.7; } .mission-values { display: grid; gap: 1rem; } .value-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--gray-50); border-radius: 12px; transition: all 0.3s ease; } .value-item:hover { background: var(--orange-50); transform: translateX(8px); } .value-icon { width: 48px; height: 48px; background: var(--gradient-orange); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; } .value-content h4 { font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; } .value-content p { font-size: 0.875rem; color: var(--gray-600); margin: 0; } .mission-visual { position: relative; } .mission-image { width: 100%; height: 400px; background: var(--gradient-africa); border-radius: 24px; display: flex; align-items: center; justify-content: center; color: white; font-size: 3rem; position: relative; overflow: hidden; } .mission-image::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 L90 50 L50 90 L10 50 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat; opacity: 0.3; } .mission-stats { position: absolute; bottom: -20px; right: 20px; background: white; border-radius: 16px; padding: 1.5rem; box-shadow: var(--shadow-xl); display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; min-width: 200px; } .mini-stat { text-align: center; } .mini-stat-number { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--orange-500); display: block; } .mini-stat-label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; } /* ===== WHY SECTION ===== */ .why { padding: 6rem 0; background: #ddeeff; } .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .why-content h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1.5rem; } .why-content p { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 2rem; line-height: 1.7; } .why-features { display: grid; gap: 1rem; } .why-feature { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: white; border-radius: 12px; box-shadow: var(--shadow-sm); transition: all 0.3s ease; } .why-feature:hover { box-shadow: var(--shadow-md); transform: translateX(8px); } .why-feature-icon { width: 48px; height: 48px; background: var(--gradient-orange); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; } .why-feature-content h4 { font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; } .why-feature-content p { font-size: 0.875rem; color: var(--gray-600); margin: 0; } .why-visual { position: relative; } .stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } .stat-card { background: white; border-radius: 16px; padding: 1.5rem; text-align: center; box-shadow: var(--shadow-lg); transition: all 0.3s ease; } .stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); } .stat-card-icon { width: 48px; height: 48px; background: var(--gradient-orange); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; margin: 0 auto 1rem; } .stat-card-number { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--orange-500); margin-bottom: 0.25rem; } .stat-card-label { font-size: 0.875rem; color: var(--gray-600); } /* ===== CTA SECTION ===== */ .cta { padding: 6rem 0; background: var(--gradient-dark); color: white; text-align: center; position: relative; overflow: hidden; } .cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat; animation: rotate 60s linear infinite; } .cta-content { position: relative; z-index: 2; } .cta h2 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; } .cta p { font-size: 1.125rem; opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; } .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; } /* ===== FOOTER ===== */ .footer { background: var(--gray-900); color: white; padding: 4rem 0 2rem; } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; } .footer-section h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 1.5rem; } .footer-section p { color: rgba(255, 255, 255, 0.7); line-height: 1.6; margin-bottom: 1.5rem; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 0.5rem; } .footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: var(--orange-500); } .social-links { display: flex; gap: 1rem; margin-top: 1rem; } .social-link { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s ease; } .social-link:hover { background: var(--orange-500); transform: translateY(-2px); } .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; } .footer-bottom p { color: rgba(255, 255, 255, 0.6); margin: 0; } .footer-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: white; } .footer-logo-icon { width: 32px; height: 32px; background: var(--gradient-orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; } /* ===== ANIMATIONS ===== */ @keyframes slideInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } /* ===== RESPONSIVE ===== */ @media (max-width: 768px) { .hero-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; padding-top: 20px; } .hero-title { font-size: 2.5rem; } .why-grid, .mission-grid { grid-template-columns: 1fr; gap: 2rem; } .services-grid, .models-grid, .ai-models-grid { grid-template-columns: 1fr; } .stats-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } .steps-grid { grid-template-columns: 1fr; } .companies-stats { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); } .companies-slider::before, .companies-slider::after { width: 50px; } } .mobile-user-icon{ display: none; } /* Mobile menu toggle */ .mobile-menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; } .mobile-menu-toggle span { width: 24px; height: 2px; background: var(--gray-700); transition: 0.3s; } @media (max-width: 768px) { .mobile-menu-toggle { display: flex; } .mobile-user-icon{ display: block; } } /* Mobile menu toggle */ .mobile-menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; } .mobile-menu-toggle span { width: 24px; height: 2px; background: var(--gray-700); transition: 0.3s; } /* Mobile menu styles */ @media (max-width: 768px) { .mobile-menu-toggle { display: flex; } .nav-actions { display: none; } .mobile-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); } .mobile-actions .btn { width: 100%; justify-content: center; } .nav-menu { position: fixed; top: 80px; left: 0; right: 0; background: white; flex-direction: column; padding: 10px; box-shadow: var(--shadow-xl); transform: translateY(-100%); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 999; border-top: 1px solid var(--gray-200); max-height: calc(100vh - 80px); overflow-y: auto; row-gap:0px; } .nav-menu.mobile-open { transform: translateY(0); opacity: 1; visibility: visible; } .nav-menu li { margin: 0.5rem 0; } .hero.mobile{ display: none; } } /* ===== ABOUT MISSION SECTION ===== */ .mission-content { padding: 2rem 0; } .mission-text { color: var(--text-light); font-size: 1.1rem; line-height: 1.7; margin-bottom: 1.5rem; } .mission-values { margin-top: 2rem; } .value-item { display: flex; align-items: center; margin-bottom: 1rem; padding: 1rem; background: #f8f9fa; border-radius: 10px; transition: all 0.3s ease; } .value-item:hover { background: var(--gradient-primary); color: white; transform: translateX(10px); } .value-item:hover i { color: white !important; } .value-item i { margin-right: 1rem; font-size: 1.2rem; } .mission-visual { position: relative; } .mission-stats { position: absolute; bottom: -20px; right: 20px; background: white; border-radius: 15px; padding: 1.5rem; box-shadow: var(--shadow-soft); } .stat-mini-card { text-align: center; } .stat-mini-card h4 { font-size: 1.5rem; font-weight: 800; color: var(--primary-color); margin-bottom: 0.3rem; } .stat-mini-card p { font-size: 0.8rem; color: var(--text-light); margin: 0; } /* ===== WHY AFRICA SECTION ===== */ .africa-visual { position: relative; text-align: center; } .africa-countries { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 1rem; } .country-stat { background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.2); border-radius: 15px; padding: 1rem; text-align: center; color: white; } .country-flag { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; } .country-count { font-size: 0.8rem; font-weight: 600; } .africa-text { color: #e0e0e0; font-size: 1.1rem; line-height: 1.7; margin-bottom: 2rem; } .africa-stats { margin-top: 2rem; } .africa-stat-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.2); border-radius: 15px; padding: 1.5rem; text-align: center; transition: all 0.3s ease; } .africa-stat-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-5px); } .africa-stat-card h3 { font-size: 2rem; font-weight: 800; color: var(--primary-color); margin-bottom: 0.5rem; } .africa-stat-card p { color: #e0e0e0; margin: 0; font-weight: 500; } /* ===== MODULE WHATSAPP ===== */ .whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; align-items: center; gap: 1rem; } .whatsapp-button { width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: all 0.3s ease; position: relative; animation: whatsappBounce 2s infinite; } .whatsapp-button:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6); animation-play-state: paused; } .whatsapp-button i { font-size: 28px; color: white; } /* Animation de pulsation */ .whatsapp-pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: rgba(37, 211, 102, 0.3); animation: whatsappPulse 2s infinite; } @keyframes whatsappPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } } @keyframes whatsappBounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } } /* Tooltip/Bulle d'information */ .whatsapp-tooltip { background: white; border-radius: 12px; padding: 1rem 1.5rem; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); border: 1px solid var(--gray-200); opacity: 0; transform: translateX(10px); transition: all 0.3s ease; pointer-events: none; max-width: 200px; position: relative; } .whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); } .tooltip-content strong { color: var(--gray-900); font-size: 0.875rem; display: block; margin-bottom: 0.25rem; } .tooltip-content p { color: var(--gray-600); font-size: 0.75rem; margin: 0; line-height: 1.4; } .tooltip-arrow { position: absolute; right: -8px; top: 50%; transform: translateY(-50%); width: 0; height: 0; border-left: 8px solid white; border-top: 8px solid transparent; border-bottom: 8px solid transparent; } .tooltip-arrow::before { content: ''; position: absolute; right: 1px; top: -9px; width: 0; height: 0; border-left: 9px solid var(--gray-200); border-top: 9px solid transparent; border-bottom: 9px solid transparent; } /* Version mobile */ @media (max-width: 768px) { .whatsapp-float { bottom: 20px; right: 20px; } .whatsapp-button { width: 55px; height: 55px; } .whatsapp-button i { font-size: 24px; } .whatsapp-tooltip { display: none; /* Cache le tooltip sur mobile */ } } /* Animation d'entrée */ @keyframes whatsappFadeIn { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } } .whatsapp-float { animation: whatsappFadeIn 0.5s ease-out; } /* État actif (quand on clique) */ .whatsapp-button:active { transform: scale(0.95); } /* Variante avec notification badge (optionnel) */ .whatsapp-button::after { content: ''; position: absolute; top: -2px; right: -2px; width: 18px; height: 18px; background: #FF4444; border-radius: 50%; border: 2px solid white; opacity: 0; animation: notificationPulse 2s infinite; } @keyframes notificationPulse { 0%, 70%, 100% { opacity: 0; transform: scale(1); } 35% { opacity: 1; transform: scale(1.1); } } /* Activer la notification (ajouter la classe 'has-notification') */ .whatsapp-button.has-notification::after { opacity: 1; }
