:root {
    --primary-color: #2563eb;
    --secondary-color: rgb(9, 22, 38);
    --accent-color: #f97316; /* Orange impactant pour les CTA et éléments importants */
    --accent-hover: #ea580c; /* Version plus foncée pour le hover */
    --text-color: #1f2937;
    --text-light: #6b7280; /* Texte secondaire */
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --max-width: 1200px;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --section-alt-bg: #eef2ff;
    --gradient-bg: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    --accent-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%); /* Gradient pour l'accent */
}

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

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: var(--accent-color);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.cta-button {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-hover);
}

.cta-button:active {
    background: var(--accent-hover);
    transform: scale(0.98);
}

.try-button {
    background: var(--accent-gradient);
    margin-right: 1rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: white;
}

.try-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.try-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(249, 115, 22, 0.3);
}

.try-button:hover::before {
    left: 100%;
}

.try-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

/* Animation pour le bouton */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.try-button {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.hero-illustration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.1;
    background-image: url('images/hero-pattern.svg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 1rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .cta-button {
    background: var(--primary-color);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    display: inline-block;
}

.hero-cta .cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.hero-cta .cta-button:active {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}



.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}



/* Cards */
.solution-card,
.pricing-card,
.career-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.solution-card:hover,
.pricing-card:hover,
.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: 'POPULAIRE';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 0 8px 0 8px;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2);
}

/* Feature Lists */
.solution-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

.solution-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    list-style: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.solution-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Pricing */
.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.engagement {
    color: #059669;
    font-weight: 500;
    margin: -0.5rem 0 1rem;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

/* Careers Section */
.careers-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Sections */
.section {
    padding: 5rem 2rem;
    position: relative;
}



.section-alt {
    background: var(--section-alt-bg);
}



.container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

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

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

/* Grids */
.solutions-grid,
.pricing-grid,
.team-grid,
.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

/* Team Cards */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: var(--card-shadow);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0.5rem 0;
}

.team-description {
    margin-top: 1rem;
    line-height: 1.6;
}

/* Pricing Grid Update */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

/* Career Cards Update */
.career-card {
    text-align: left;
}

.career-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.career-card .feature-list {
    margin: 1.5rem 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.social-link {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: var(--transition);
    opacity: 0.8;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: var(--accent-color);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav {
        padding: 1rem;
    }

    .mobile-menu-button {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .try-button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin: 0;
    }

    .contact-button {
        display: none; /* Cacher en mobile */
    }

    /* Style spécifique pour le bouton contact dans le menu mobile */
    .nav-links .contact-button {
        display: inline-block;
        width: auto;
        margin: 0.5rem auto;
    }

    .mobile-menu-button {
        margin-left: 0.5rem;
    }

    .logo-image {
        width: 25px;
        height: 25px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .pricing-card {
        margin: 0 auto;
        width: 100%;
        max-width: 320px;
    }

    .pricing-features {
        padding-left: 1rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

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

    .hero-tagline {
        font-size: 0.85rem;
    }

    .hero-cta .cta-button {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .section::before {
        height: 50px;
    }

    .section {
        padding: 3rem 1rem;
    }
    
    /* Styles responsifs pour les cartes de solutions enrichies */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-header h3 {
        font-size: 1.3rem;
    }
    
    .solution-intro {
        font-size: 1.1rem;
    }
    
    .solution-advantages h4 {
        font-size: 1rem;
    }
    
    .advantage-list li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .results-highlight {
        padding: 0.8rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
    
    /* Styles responsifs pour la section Convictions */
    .convictions-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .conviction-card {
        padding: 1.5rem;
        flex-direction: column !important;
        text-align: center;
        gap: 1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .conviction-illustration {
        width: 150px;
        height: 150px;
        order: -1 !important;
        align-self: center;
    }
    
    .conviction-image {
        width: 150px;
        height: 150px;
    }
    
    .conviction-content h3 {
        font-size: 1.2rem;
    }
    
    .conviction-content p {
        font-size: 0.95rem;
    }

    .team-photo {
        width: 150px;
        height: 150px;
    }

    .social-links {
        justify-content: center;
        padding: 0.5rem 1rem;
    }
    
    .footer-section {
        align-items: center;
        text-align: center;
    }

    .solution-illustration {
        width: 80px;
        height: 80px;
    }
    
    .hero-illustration {
        opacity: 0.05;
    }
}

/* Ajustements pour les très petits écrans */
@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    .pricing-section {
        padding: 2rem 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }
}

/* Solution Cards */
.solution-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}



.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.solution-illustration {
    width: 100%;
    height: 120px;
    margin-bottom: 1.5rem;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Nouveaux styles pour la structure enrichie des solutions */
.solution-header {
    text-align: center;
    margin-bottom: 2rem;
}

.solution-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.solution-tagline {
    color: var(--text-light);
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.solution-content {
    text-align: left;
}

.solution-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.solution-description {
    margin-bottom: 2rem;
}

.solution-description p {
    line-height: 1.6;
    color: var(--text-color);
}

.solution-advantages {
    margin-bottom: 2rem;
}

.solution-advantages h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.advantage-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.advantage-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.results-highlight {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
}

.results-highlight p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-color);
}

.solution-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.cta-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Styles pour la section Convictions */
.convictions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.conviction-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.conviction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.conviction-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.conviction-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 600;
}

.conviction-content p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

.conviction-illustration {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conviction-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
}





/* Reset des liens */
a {
    text-decoration: none;
    color: inherit;
}

/* Pricing Cards */
.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: normal;
}

.pricing-card .engagement {
    color: #059669;
    font-weight: 500;
    margin: -0.5rem 0 1rem;
    font-size: 0.9rem;
}

.pricing-card .feature-list {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-card .cta-button {
    margin-top: auto;
    text-align: center;
    display: block;
}

/* Navigation Links */
.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Social Links */
.social-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.5rem;
    transition: var(--transition);
    opacity: 0.8;
}

/* Responsive Design Update */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .pricing-card .price {
        font-size: 1.2rem;
    }
    
    .pricing-card .price span {
        font-size: 0.9rem;
    }
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links .contact-button {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0.5rem 0;
}

.nav-links .contact-button:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .nav-buttons {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .try-button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin: 0;
    }

    .nav-links .contact-button {
        width: 100%;
        text-align: center;
        margin: 0.5rem auto;
    }

    .mobile-menu-button {
        margin-left: 0.5rem;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .nav-links .contact-button {
        display: inline-block;
        width: auto;
        margin: 0.5rem auto;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Section Clients */
.clients-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin: 3rem 0;
}

.logo-item {
    flex: 0 1 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.partner-logo {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    position: relative;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.author-title {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0.25rem 0 0;
}

@media (max-width: 768px) {
    .logos-container {
        gap: 2rem;
    }

    .logo-item {
        flex: 0 1 150px;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Section IA */
#ai {
    color: var(--text-color);
}

#ai .section-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.ai-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.ai-feature-image {
    width: 100%;
    max-width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ai-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}



.ai-feature h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.ai-feature p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.ai-providers {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: transparent;
    border-radius: 12px;
}

.ai-providers p {
    text-align: center;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.provider-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.provider-logo {
    width: 60px;
    height: 60px;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.provider-logo:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
}

@media (max-width: 768px) {
    .ai-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ai-feature-image {
        max-width: 150px;
        height: 120px;
    }

    .provider-logos {
        gap: 2rem;
    }

    .provider-logo {
        width: 50px;
        height: 50px;
    }
}

/* Styles pour la page mentions légales */
.mentions-legales {
    padding: 4rem 0;
}

.mentions-legales .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mentions-legales h1 {
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.mentions-legales section {
    margin-bottom: 2rem;
}

.mentions-legales h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mentions-legales p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.back-link {
    margin-top: 3rem;
    text-align: center;
}

.back-link a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.back-link a:hover {
    background-color: var(--secondary-color);
} 

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    padding-bottom: 1rem;
}



.section-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

 

.career-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}



.career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
} 

/* Footer Styles - Plus spécifiques */
footer .footer-content {
    background: var(--text-color);
    padding: 3rem 2rem 2rem;
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}



footer .footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

footer .footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color) !important;
    color: white !important;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

footer .social-link:hover {
    background: var(--accent-hover) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.4);
}

footer .footer-bottom {
    background: var(--text-color);
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
}

/* ============================================
   ANIMATIONS PROFESSIONNELLES AU SCROLL
   ============================================ */

/* Animation de base pour tous les éléments animés */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation avec effet de stagger pour les grilles */
.stagger-animation {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-animation.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Délais pour les effets de stagger */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Animation spéciale pour les cartes de convictions */
.conviction-card {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.conviction-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.conviction-card:nth-child(even) {
    transform: translateX(50px);
}

.conviction-card:nth-child(even).animate {
    transform: translateX(0);
}

/* Animation pour les cartes de solutions */
.solution-card {
    opacity: 0;
    transform: translateY(40px) rotateX(10deg);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.solution-card.animate {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* Animation pour les cartes de tarification */
.pricing-card {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animation spéciale pour la carte featured */
.pricing-card.featured {
    opacity: 0;
    transform: translateY(60px) scale(0.85);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-card.featured.animate {
    opacity: 1;
    transform: translateY(0) scale(1.05);
}

/* Animation pour les témoignages */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px) rotateY(5deg);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0) rotateY(0deg);
}

/* Animation pour les fonctionnalités IA */
.ai-feature {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ai-feature.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animation pour les logos de providers */
.provider-logo {
    opacity: 0;
    transform: scale(0.8) rotate(10deg);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.provider-logo.animate {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Animation pour les cartes d'équipe */
.team-card {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animation pour les cartes de carrières */
.career-card {
    opacity: 0;
    transform: translateY(40px) rotateX(5deg);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.career-card.animate {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

/* Animation pour les titres de section */
.section h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section h2.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation pour les sous-titres */
.section-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
}

.section-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation pour le hero au chargement - désactivée */
.hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Effets de hover améliorés avec les animations */
.animate:hover {
    transform: translateY(-5px) !important;
}

.pricing-card.featured.animate:hover {
    transform: scale(1.05) translateY(-8px) !important;
}

/* Optimisations pour les performances */
.animate-on-scroll,
.stagger-animation,
.conviction-card,
.solution-card,
.pricing-card,
.testimonial-card,
.ai-feature,
.provider-logo,
.team-card,
.career-card {
    will-change: opacity, transform;
}

/* Réduction des animations sur les appareils avec préférences réduites */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll,
    .stagger-animation,
    .conviction-card,
    .solution-card,
    .pricing-card,
    .testimonial-card,
    .ai-feature,
    .provider-logo,
    .team-card,
    .career-card,
    .section h2,
    .section-subtitle {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   STYLES POUR STRIPE PAYMENT
   ============================================ */

/* Modale de paiement Stripe */
.stripe-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.stripe-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stripe-modal-content {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.stripe-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.stripe-modal-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.stripe-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stripe-modal-close:hover {
    background: var(--light-gray);
    color: var(--text-color);
    transform: rotate(90deg);
}

.stripe-modal-body {
    padding: 2rem;
}

/* Loading spinner */
.stripe-loading {
    text-align: center;
    padding: 3rem 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stripe-loading p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

/* Messages d'erreur */
.stripe-error {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #c33;
}

.stripe-error p {
    margin: 0;
    font-weight: 500;
}

/* Styles pour les éléments Stripe */
.StripeElement {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.StripeElement--focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.StripeElement--invalid {
    border-color: #e53e3e;
}

/* Boutons de paiement */
.stripe-payment-button {
    width: 100%;
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.stripe-payment-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.stripe-payment-button:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.stripe-payment-button:disabled:hover {
    background: var(--text-light);
    transform: none;
}

/* Informations de plan */
.plan-info {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.plan-period {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .stripe-modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .stripe-modal-header,
    .stripe-modal-body {
        padding: 1.5rem;
    }
    
    .stripe-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .plan-price {
        font-size: 1.5rem;
    }
}

/* Styles pour les boutons de tarification avec Stripe */
.pricing-card button.cta-button {
    width: 100%;
    margin-top: auto;
    text-align: center;
    display: block;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card button.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.pricing-card button.cta-button:active {
    background: var(--accent-hover);
    transform: scale(0.98);
}

.pricing-card.featured button.cta-button {
    background: var(--primary-color);
}

.pricing-card.featured button.cta-button:hover {
    background: var(--secondary-color);
}

.pricing-card.featured button.cta-button:active {
    background: var(--accent-hover);
    transform: scale(0.98);
}

 