/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', 'Inter', sans-serif;
    line-height: 1.6;
    color: #6f7276;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}



/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #03aebc;
}



/* Boutons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #03aebc;
    color: white;
    border: 2px solid #03aebc;
}

.btn-primary:hover {
    background-color: #028c99;
    border-color: #028c99;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #03aebc;
    border: 2px solid #03aebc;
}

.btn-outline:hover {
    background-color: #03aebc;
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Sections - Plus d'espacement */
section {
    padding: 60px 0;
}

/* Section Header Centré */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    width: 100%;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    line-height: 1.3;
    font-weight: 500;
}

.section-subtitle {
    color: #6f7276;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Clients Section */
.clients-section {
    background-color: #fff;
    text-align: center; /* Ajout pour centrer tout le contenu */
}

.clients-section .section-subtitle {
    display: block; /* S'assurer que c'est un élément bloc */
    width: 100%; /* Prendre toute la largeur */
    text-align: center; /* Centrer le texte */
    margin-bottom: 30px; /* Espacement avant les logos */
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px 0;
}

.clients-logos img {
    height: 45px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.clients-logos img:hover {
    opacity: 1;
}

/* Workflows Grid */
.workflows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.workflow-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.workflow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.workflow-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.workflow-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #2a2e32;
}

.workflow-card p {
    color: #6f7276;
    margin-bottom: 25px;
    line-height: 1.8;
}

.custom-workflow .workflow-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: #03aebc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2a2e32;
}

.benefit-card p {
    color: #6f7276;
    line-height: 1.8;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    color: #03aebc;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #6f7276;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.author-info {
    margin-left: 20px;
}

.author-info strong {
    display: block;
    font-weight: 600;
    color: #2a2e32;
    font-size: 1.1rem;
}

.author-info span {
    color: #6f7276;
    font-size: 0.95rem;
}

.testimonial-results {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.testimonial-results h4 {
    margin-bottom: 15px;
    color: #2a2e32;
}

.testimonial-results ul {
    list-style-position: inside;
    color: #6f7276;
    line-height: 1.8;
}

.testimonial-results li {
    margin-bottom: 8px;
}

/* Features Tabs */
.features-tabs {
    margin-top: 50px;
}

.tabs-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 14px 28px;
    background: none;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #6f7276;
}

.tab-btn.active {
    background-color: #03aebc;
    color: white;
}

.tab-btn:not(.active):hover {
    background-color: #f0f0f0;
    color: #2a2e32;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-content-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.tab-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.tab-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.tab-image:hover img {
    transform: scale(1.03);
}

.tab-text {
    flex: 1;
}

.tab-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2a2e32;
}

.tab-text p {
    color: #6f7276;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tab-text ul {
    margin-top: 1.5rem;
    list-style-position: outside;
    padding-left: 20px;
}

.tab-text li {
    margin-bottom: 0.8rem;
    color: #6f7276;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #03aebc 0%, #028c99 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Footer */
.main-footer {
    background-color: #2a2e32;
    color: #a0a4a8;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 15px;
}

.footer-col a {
    transition: color 0.3s;
    line-height: 1.8;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #0e3248;
    color: #7ba0c5;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 25px;
    }

    .main-nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        padding: 180px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .tab-content-inner {
        flex-direction: column;
        gap: 40px;
    }

    .workflows-grid, .benefits-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .btn-lg {
        padding: 14px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}