
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #0a0f1c;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Animation Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes slideInLeft {
            from { transform: translateX(-100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInRight {
            from { transform: translateX(100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Animated Elements */
        .animate-fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .animate-slide-up {
            opacity: 0;
            transform: translateY(50px);
        }

        .animate-slide-left {
            opacity: 0;
            transform: translateX(-100px);
        }

        .animate-slide-right {
            opacity: 0;
            transform: translateX(100px);
        }

        .animate-pulse {
            animation: pulse 2s infinite ease-in-out;
        }

        .animate-float {
            animation: float 6s infinite ease-in-out;
        }

        /* Scroll Animation Classes */
        .reveal {
            opacity: 0;
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Header */
        header {
            padding: 20px 0;
            border-bottom: 1px solid #1a2332;
            position: sticky;
            top: 0;
            background-color: rgba(10, 15, 28, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            animation: fadeIn 0.5s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo::before {
            content: "⚡";
            color: #14b8a6;
            margin-right: 8px;
            font-size: 28px;
            animation: pulse 2s infinite ease-in-out;
        }

        .launch-btn {
            background: linear-gradient(135deg, #14b8a6, #0891b2);
            background-size: 200% 200%;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            animation: gradientShift 3s ease infinite;
        }

        .launch-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
        }

        /* Hero Section */
        .hero {
            padding: 80px 0;
            text-align: left;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            animation: slideInLeft 1s ease forwards;
        }

        .hero-text h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .highlight {
            color: #14b8a6;
            position: relative;
            display: inline-block;
        }

        .highlight::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #14b8a6, transparent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .highlight:hover::after {
            transform: scaleX(1);
        }

        .hero-text p {
            font-size: 18px;
            color: #94a3b8;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        /* Features */
        .features {
            list-style: none;
            margin-bottom: 40px;
        }

        .features li {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .features li:hover {
            transform: translateX(10px);
        }

        .features li::before {
            content: "✓";
            color: #14b8a6;
            font-weight: bold;
            margin-right: 12px;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .features li:hover::before {
            transform: scale(1.2);
        }

        .import-btn {
            background: linear-gradient(135deg, #14b8a6, #0891b2);
            background-size: 200% 200%;
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: gradientShift 3s ease infinite;
        }

        .import-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(20, 184, 166, 0.3);
        }

        /* Hero Image */
        .hero-image {
            position: relative;
            animation: slideInRight 1s ease forwards;
        }

        .hero-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: all 0.5s ease;
            animation: float 6s infinite ease-in-out;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid #14b8a6;
            border-radius: 12px;
            z-index: -1;
            opacity: 0.5;
            animation: pulse 4s infinite ease-in-out;
        }

        /* Who Section */
        .who-section {
            padding: 80px 0;
        }

        .who-section h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .who-section > p {
            font-size: 18px;
            color: #94a3b8;
            margin-bottom: 60px;
            line-height: 1.7;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .audience-card {
            background: #1a2332;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #2a3441;
            transition: all 0.3s ease;
        }

        .audience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: #14b8a6;
        }

        .audience-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .audience-card.developers h3 {
            color: #14b8a6;
        }

        .audience-card.startups h3 {
            color: #f59e0b;
        }

        .audience-card.agencies h3 {
            color: #14b8a6;
        }

        .audience-card p {
            color: #94a3b8;
            line-height: 1.6;
        }

        /* Navigation */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-link {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #14b8a6;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .nav-link:hover {
            color: #14b8a6;
        }

        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 80px 0;
            background: #0f172a;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .pricing-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .pricing-header p {
            font-size: 18px;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-card {
            background: #1a2332;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a3441;
            transition: all 0.5s ease;
        }

        .pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .pricing-card-header {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #2a3441;
            transition: all 0.3s ease;
        }

        .pricing-card:hover .pricing-card-header {
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), transparent);
        }

        .plan-icon {
            font-size: 24px;
            margin-bottom: 8px;
            transition: transform 0.3s ease;
        }

        .pricing-card:hover .plan-icon {
            transform: scale(1.2);
        }

        .plan-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .plan-price {
            font-size: 32px;
            font-weight: 700;
            color: #14b8a6;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        .pricing-card:hover .plan-price {
            transform: scale(1.1);
            text-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
        }

        .plan-target {
            color: #94a3b8;
            font-size: 14px;
        }

        .pricing-card-body {
            padding: 20px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .feature-list li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
            color: #e2e8f0;
            transition: transform 0.3s ease;
        }

        .feature-list li:hover {
            transform: translateX(5px);
        }

        .feature-list li::before {
            content: "✓";
            color: #14b8a6;
            margin-right: 10px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .feature-list li:hover::before {
            transform: scale(1.2);
        }

        .feature-list li.limit::before {
            content: "⚠️";
            color: #f59e0b;
        }

        .feature-list li.advantage {
            font-weight: 600;
        }

        .pricing-card-footer {
            padding: 0 20px 20px;
            text-align: center;
        }

        .pricing-btn {
            display: inline-block;
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-free {
            background: transparent;
            border: 1px solid #14b8a6;
            color: #14b8a6;
        }

        .btn-free:hover {
            background: rgba(20, 184, 166, 0.1);
            box-shadow: 0 10px 20px rgba(20, 184, 166, 0.2);
            transform: translateY(-3px);
        }

        .btn-pro {
            background: #f59e0b;
            color: #0f172a;
            border: none;
        }

        .btn-pro:hover {
            background: #d97706;
            box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
            transform: translateY(-3px);
        }

        .btn-agency {
            background: linear-gradient(135deg, #14b8a6, #0891b2);
            background-size: 200% 200%;
            color: white;
            border: none;
            animation: gradientShift 3s ease infinite;
        }

        .btn-agency:hover {
            opacity: 0.9;
            box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
            transform: translateY(-3px);
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.1), transparent 70%);
            z-index: -1;
        }

        .about-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .about-header h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #14b8a6, #0891b2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .about-header p {
            font-size: 18px;
            color: #94a3b8;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .about-content {
            max-width: 1000px;
            margin: 0 auto;
            color: #e2e8f0;
            line-height: 1.8;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .about-item {
            margin-bottom: 40px;
            background: #1a2332;
            padding: 40px;
            border-radius: 16px;
            border: 1px solid #2a3441;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .about-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: #14b8a6;
        }

        .about-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, #14b8a6, #0891b2);
            transition: height 0.4s ease;
        }

        .about-item:hover::before {
            height: 100%;
        }

        .about-item h3 {
            color: #14b8a6;
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .about-item h3 span {
            margin-right: 15px;
            font-size: 32px;
        }

        .about-item p {
            color: #e2e8f0;
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.7;
        }

        .about-item ul {
            margin: 20px 0;
            padding-left: 20px;
        }

        .about-item li {
            color: #e2e8f0;
            margin-bottom: 12px;
            line-height: 1.6;
            position: relative;
            padding-left: 10px;
            transition: transform 0.3s ease;
        }

        .about-item li:hover {
            transform: translateX(5px);
        }

        .about-item li::before {
            content: '→';
            color: #14b8a6;
            position: absolute;
            left: -15px;
            transition: transform 0.3s ease;
        }

        .about-item li:hover::before {
            transform: translateX(5px);
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .stat-item {
            background: linear-gradient(135deg, #1a2332, #0f172a);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #2a3441;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: #14b8a6;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            color: #14b8a6;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #14b8a6, #0891b2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: #e2e8f0;
            font-size: 16px;
        }

        .team-section {
            margin-top: 80px;
            text-align: center;
        }

        .team-section h3 {
            font-size: 32px;
            margin-bottom: 40px;
            color: #14b8a6;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-member {
            background: #1a2332;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #2a3441;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: #14b8a6;
        }

        .team-photo {
            width: 100%;
            height: 200px;
            background-color: #2a3441;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            color: #14b8a6;
        }

        .team-info {
            padding: 20px;
        }

        .team-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .team-role {
            color: #14b8a6;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .team-bio {
            color: #94a3b8;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0f172a, #0a0f1c);
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent 70%);
            z-index: 0;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .contact-header h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(90deg, #14b8a6, #0891b2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .contact-header p {
            font-size: 18px;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            position: relative;
            z-index: 1;
        }

        .contact-info {
            background: #1a2332;
            border-radius: 16px;
            padding: 40px;
            border: 1px solid #2a3441;
            transition: all 0.3s ease;
        }

        .contact-info:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: #14b8a6;
        }

        .contact-info h3 {
            color: #14b8a6;
            font-size: 24px;
            margin-bottom: 30px;
            text-align: center;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            padding: 20px;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            transform: translateX(10px);
            background: rgba(15, 23, 42, 0.8);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .contact-icon {
            font-size: 32px;
            color: #14b8a6;
            margin-right: 20px;
            transition: transform 0.3s ease;
        }

        .contact-method:hover .contact-icon {
            transform: scale(1.2);
        }

        .contact-details {
            flex: 1;
        }

        .contact-label {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 18px;
        }

        .contact-value {
            color: #94a3b8;
        }

        .contact-value a {
            color: #14b8a6;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-value a:hover {
            color: #0891b2;
            text-decoration: underline;
        }

        .contact-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #0f172a;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #14b8a6;
            font-size: 24px;
            transition: all 0.3s ease;
            border: 1px solid #2a3441;
        }

        .social-link:hover {
            background: #14b8a6;
            color: #0f172a;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
        }

        .contact-form-container {
            background: #1a2332;
            padding: 40px;
            border-radius: 16px;
            border: 1px solid #2a3441;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-form-container:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: #14b8a6;
        }

        .contact-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent 70%);
            z-index: 0;
        }

        .contact-form-container h3 {
            color: #14b8a6;
            font-size: 24px;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            color: #e2e8f0;
            margin-bottom: 8px;
            font-weight: 500;
            display: flex;
            align-items: center;
        }

        .form-group label::after {
            content: '*';
            color: #ef4444;
            margin-left: 4px;
            font-size: 14px;
        }

        .form-group label.optional::after {
            content: '(optionnel)';
            color: #94a3b8;
            margin-left: 4px;
            font-size: 12px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            background: #0f172a;
            border: 1px solid #2a3441;
            border-radius: 8px;
            padding: 14px;
            color: #e2e8f0;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #14b8a6;
            box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .submit-btn {
            background: linear-gradient(135deg, #14b8a6, #0891b2);
            background-size: 200% 200%;
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
            animation: gradientShift 3s ease infinite;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: all 0.6s ease;
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(20, 184, 166, 0.3);
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .main-nav {
                flex-direction: column;
                gap: 15px;
            }

            .audience-grid, .pricing-grid, .about-grid, .team-grid {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-form-container {
                padding: 30px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Footer */
        footer {
            background: #1a2332;
            border-top: 1px solid #2a3441;
            padding: 50px 0 30px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #14b8a6, transparent);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-left p {
            color: #94a3b8;
            margin: 0;
        }

        .footer-right {
            display: flex;
            gap: 30px;
        }

        .footer-right a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .footer-right a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 1px;
            background: #14b8a6;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .footer-right a:hover {
            color: #14b8a6;
        }

        .footer-right a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }


        @media (max-width: 768px) {
    /* Empêcher le défilement quand le menu est ouvert */
    body.no-scroll {
        overflow: hidden;
    }

    /* Ajustements du héros */
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .features li {
        font-size: 16px;
    }

    .import-btn {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }

    /* Sections */
    .who-section, 
    .pricing-section, 
    .about-section, 
    .contact-section {
        padding: 50px 0;
    }

    .who-section h2,
    .pricing-header h2,
    .about-header h2,
    .contact-header h2 {
        font-size: 28px;
    }

    /* Cartes */
    .audience-card,
    .pricing-card,
    .about-item {
        padding: 20px;
    }

    /* Formulaire de contact */
    .contact-form-container {
        padding: 20px;
    }

    /* Grilles */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer */
    .footer-right {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .launch-btn, .import-btn, .submit-btn {
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 30px 0;
    }
}

/* Contact Section - Mobile Improvements */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .contact-header p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .contact-info, 
    .contact-form-container {
        padding: 25px;
        border-radius: 12px;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .contact-method {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 28px;
    }
    
    .contact-social {
        margin-top: 30px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .submit-btn {
        padding: 14px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-info,
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .contact-method {
        padding: 12px;
    }
    
    .contact-label {
        font-size: 16px;
    }
    
    .contact-value {
        font-size: 14px;
    }
}

/* Blog Preview Section */
.blog-preview-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a, #0a0f1c);
    position: relative;
    overflow: hidden;
}

.blog-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(20, 184, 166, 0.1), transparent 70%);
    z-index: 0;
}
.blog-header {
    text-align: center;
}
.blog-preview-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #14b8a6, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.blog-preview-section > p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    
}
.blog-header p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 30px;
}
.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background: #1a2332;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #2a3441;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #14b8a6;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #14b8a6, #0891b2);
    transition: height 0.4s ease;
}

.blog-card:hover::before {
    height: 100%;
}

.blog-card h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: #14b8a6;
}

.blog-card p {
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #14b8a6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #ffffff;
}

.read-more:hover::after {
    transform: translateX(5px);
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    background-size: 200% 200%;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(20, 184, 166, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-preview-section {
        padding: 60px 0;
    }
    
    .blog-preview-section h2 {
        font-size: 32px;
    }
    
    .blog-preview-section > p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .blog-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card {
        padding: 30px;
    }
    
    .blog-card h3 {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .blog-card {
        padding: 25px 20px;
    }
}

/* Style spécifique pour la carte Migration Manuel */
.pricing-card .pricing-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #2a3441;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 700;
    color: #14b8a6;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card .currency {
    font-size: 24px;
    margin-right: 5px;
}

.pricing-card .amount {
    font-size: 42px;
    line-height: 1;
}

.pricing-card .period {
    font-size: 16px;
    color: #94a3b8;
    margin-left: 5px;
    align-self: flex-end;
}

.pricing-card .description {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 10px;
}

.pricing-card .pricing-features {
    padding: 20px;
}

.pricing-card .pricing-features ul {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-card .pricing-features li {
    padding: 10px 0;
    color: #e2e8f0;
    border-bottom: 1px solid #2a3441;
    display: flex;
    align-items: flex-start;
}

.pricing-card .pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card .pricing-features li strong {
    color: #14b8a6;
    margin-right: 5px;
}

.pricing-card .pricing-footer {
    padding: 0 20px 20px;
    text-align: center;
}

.pricing-card .btn-migration {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f172a;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.pricing-card .btn-migration:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.pricing-card .note {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 10px;
    display: block;
}

/* Animation au survol de la carte */
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #f59e0b;
}

.pricing-card:hover .pricing-header {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent);
}

.pricing-card:hover .price {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}