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

/* Amélioration de l'accessibilité mobile et des interactions tactiles */
@media (hover: none) and (pointer: coarse) {
    a, button, .btn-primary, .btn-contact {
        min-height: 44px;
        min-width: 44px;
    }
    
    nav a {
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-detail:hover,
    .module-card:hover {
        transform: none;
    }
    
    .contact-card {
        min-height: 80px;
    }
    
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .hero-badge,
    .stat,
    .feature-detail,
    .module-card {
        animation: none;
    }
    
    a, button, .btn-primary, .btn-contact {
        transition: all 0.2s ease;
    }
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s;
}

a:hover {
    color: #004d99;
}

ul {
    list-style: none;
}

/* Modules Sub-Navigation */
.modules-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0;
    position: fixed;
    top: 70px; /* Hauteur du header + padding */
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
}

.modules-nav-content {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modules-nav-content::-webkit-scrollbar {
    display: none;
}

.modules-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 15px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.modules-nav a:hover {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.05);
}

.modules-nav a.active {
    color: #0066cc;
    border-bottom-color: #0066cc;
    background: rgba(0, 102, 204, 0.1);
}

.modules-nav i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .modules-nav-content {
        padding: 0 15px;
    }
    
    .modules-nav a {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

/* En-tête */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

nav a:hover,
nav a.active {
    background-color: #0066cc;
    color: white;
}

.btn-contact {
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

/* Menu mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    border: none;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger i {
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    z-index: 9999;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu nav {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.mobile-menu nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.mobile-menu nav a {
    display: block;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 20px 40px;
    margin: 5px 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mobile-menu .btn-contact {
    margin-top: 20px;
    background: white;
    color: #0066cc;
    border: 2px solid white;
    max-width: 250px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu .btn-contact:hover {
    background: transparent;
    color: white;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Contenu principal */
main {
    margin-top: 80px;
}

/* Contenu principal pour la page d'accueil avec hero */
.homepage-hero main,
main:has(.homepage-hero) {
    margin-top: 20px;
}

/* Contenu principal avec sous-menu modules */
.modules-page main {
    margin-top: 130px; /* Header (70px) + Modules nav (60px) */
}

/* Section Hero */
.hero {
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.header-text {
    text-align: left;
}

.header-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-illustration img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.hero-badge.new-feature {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: pulse-glow 2s ease-in-out infinite alternate;
    margin-left: 0;
    margin-top: 8px;
}

/* Conteneur des badges */
.hero-text .hero-badge {
    display: inline-flex;
    margin-bottom: 16px;
}

/* Badge NOUVEAU positionné en haut à droite du hero */
.homepage-hero {
    position: relative;
}

.hero-text .hero-badge.new-feature {
    position: absolute;
    top: 20px;
    right: 20px;
    margin-left: 0;
    margin-top: 0;
    z-index: 10;
}

/* Conteneur des boutons CTA côte à côte */
.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
        transform: scale(1.02);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.header-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary {
    background: white;
    color: #0066cc;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #0066cc;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #0066cc;
    transform: translateY(-2px);
}

.btn-learn-more {
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    width: calc(100% - 60px); /* Largeur de la carte - padding */
    justify-content: center;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    margin: 0;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
    background: linear-gradient(135deg, #0052a3, #3e8e41);
    color: white;
    text-decoration: none;
}

.btn-learn-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.btn-learn-more:hover i {
    transform: translateX(3px);
}

/* Style pour les boutons de contact */
.btn-contact {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
    box-shadow: none;
}

.btn-contact:hover {
    background: #e9ecef;
    color: #495057;
    transform: none;
    box-shadow: none;
}

.btn-contact i {
    color: #6c757d;
}

.btn-contact:hover i {
    transform: none;
    color: #495057;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

section p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Grilles */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    position: relative;
    min-height: 300px;
    padding-bottom: 80px; /* Espace pour le bouton */
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.module-card h3 {
    color: #0066cc;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.module-card .icon {
    color: #4CAF50;
    font-size: 1.5rem;
}

.module-card p {
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

.module-card ul {
    list-style: none;
}

.module-card li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.module-card li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.module-card .optional {
    color: #999;
    font-style: italic;
}

.module-card .optional::before {
    content: '○';
    color: #999;
}

/* Features list dans les cartes modules */
.module-card .features-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-card .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
    padding: 8px 0;
}

.module-card .feature-item i {
    color: #4CAF50;
    font-size: 1rem;
    min-width: 16px;
    flex-shrink: 0;
}

.module-card .feature-item span {
    line-height: 1.4;
}

/* Module header avec badges */
.module-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.module-header h3 {
    margin-bottom: 0;
}

.dev-badge,
.option-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.dev-badge {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

.option-badge {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
}

/* Avantages */
.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.advantage-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    max-width: 350px;
}

.advantage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.advantage-card .icon {
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.advantage-card h3 {
    color: #0066cc;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.advantage-card p {
    color: #666;
    text-align: center;
    margin: 0;
}

/* Sécurité */
.security-features {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.security-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.security-item h4 {
    color: #0066cc;
    margin-bottom: 10px;
}

.security-item ul {
    margin-left: 15px;
}

.security-item li {
    color: #555;
    margin-bottom: 5px;
    list-style: disc;
}

/* Business Benefits Section */
.business-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #4CAF50);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    color: #0066cc;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.benefit-metrics {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.metric {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-card:hover .metric {
    background: rgba(0, 102, 204, 0.1);
    border-color: rgba(0, 102, 204, 0.2);
    color: #0066cc;
}

.metric i {
    color: #4CAF50;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    border-radius: 20px;
    padding: 50px;
    margin-top: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

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

.cta-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    background: white;
    color: #0066cc;
    border: 2px solid white;
    font-weight: 600;
    min-width: 200px;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #0066cc;
    border-color: white;
    transform: translateY(-2px);
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #999;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 40px;
        max-width: 70px;
    }
    
    nav ul {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .header-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .header-text {
        text-align: center;
    }
    
    .header-text h1,
    .header-text p {
        text-align: center;
    }
    
    .header-illustration {
        order: -1;
    }
    
    .header-illustration img {
        max-height: 250px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .business-benefits {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 25px;
    }
    
    .cta-section {
        padding: 40px 25px;
        margin-top: 40px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }
    
    .module-card,
    .advantage-card {
        padding: 20px;
    }
    
    .security-features {
        padding: 25px;
    }
    
    section {
        padding: 50px 0;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo img {
        height: 35px;
        max-width: 60px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Page spécifique - Détails module */
.module-detail {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.module-detail h2 {
    color: #0066cc;
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.module-detail .icon {
    color: #4CAF50;
    font-size: 2rem;
}

.module-detail .description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: left;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-group h4 {
    color: #0066cc;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-group ul {
    list-style: none;
}

.feature-group li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-group li::before {
    content: '•';
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.adaptability-note {
    background: #f8f9fa;
    border-left: 4px solid #4CAF50;
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 10px 10px 0;
}

.adaptability-note p {
    margin: 0;
    color: #555;
    text-align: left;
    font-style: italic;
}

/* Navigation entre pages */
.page-navigation {
    margin: 40px 0;
    width: 100%;
}

.page-navigation .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.nav-button {
    background: #0066cc;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    flex: 0 0 auto;
}

.nav-button:hover {
    background: #004d99;
    transform: translateY(-2px);
    color: white;
}

.nav-button.prev {
    background: #4CAF50;
}

.nav-button.prev:hover {
    background: #45a049;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    color: #666;
}

.breadcrumb-list a {
    color: #0066cc;
    text-decoration: none;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: #999;
}

/* Homepage Hero Styles */
.homepage-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

.homepage-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text .highlight {
    color: #4CAF50;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.homepage-hero .hero-buttons {
    justify-content: flex-start;
    margin: 30px 0;
}

.homepage-hero .btn-primary,
.homepage-hero .btn-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.homepage-hero .btn-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.homepage-hero .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.homepage-hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.homepage-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature-item i {
    color: #4CAF50;
    font-size: 1rem;
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.dashboard-header {
    background: #f8f9fa;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.dashboard-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.dashboard-controls {
    display: flex;
    gap: 6px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red { background: #ff5f56; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #27ca3f; }

.dashboard-content {
    display: flex;
    height: 300px;
}

.dashboard-sidebar {
    width: 180px;
    background: #f8f9fa;
    padding: 20px 0;
    border-right: 1px solid #e0e0e0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 0.85rem;
    color: #666;
    transition: all 0.2s ease;
}

.sidebar-item.active {
    background: #0066cc;
    color: white;
}

.sidebar-item i {
    width: 16px;
    font-size: 0.9rem;
}

.dashboard-main {
    flex: 1;
    padding: 20px;
    background: white;
}

.widget {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-title {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.widget-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
}

.widget-trend {
    font-size: 0.8rem;
    font-weight: 600;
}

.widget-trend.positive {
    color: #4CAF50;
}

/* ========================================
   STYLES POUR LA PAGE RESTRUCTURÉE BAC
   ======================================== */

/* Hero Benefits - Nouvelles icônes au lieu des métriques */
.hero-benefits {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-benefits .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.hero-benefits .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.hero-benefits .benefit-item span {
    font-weight: 500;
    color: #333;
    text-align: center;
    font-size: 14px;
}

/* Section Bénéfices Business */
.business-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefits-grid .benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefits-grid .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
}

.benefits-grid .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefits-grid .benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.benefits-grid .benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.benefits-grid .benefit-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.benefit-details {
    text-align: left;
    margin-top: 20px;
}

.benefit-details li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.benefit-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Section Avantages Différenciants */
.competitive-advantages {
    padding: 80px 0;
    background: white;
}

.advantages-comparison {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.advantage-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #0066cc;
}

.advantage-item:nth-child(even) {
    grid-template-columns: 2fr 1fr;
    border-left: 5px solid #4CAF50;
}

.advantage-item:nth-child(even) .advantage-visual {
    order: 2;
}

.advantage-item:nth-child(even) .advantage-content {
    order: 1;
}

.icon-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.competitor-icon, .facigest-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.competitor-icon i {
    font-size: 40px;
    color: #ccc;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 50%;
}

.facigest-icon i {
    font-size: 40px;
    color: white;
    padding: 20px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.vs {
    font-weight: bold;
    font-size: 1.2rem;
    color: #666;
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.label {
    font-size: 12px;
    color: #666;
    text-align: center;
    max-width: 80px;
}

.advantage-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.advantage-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.advantage-proof {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.proof-item {
    color: #4CAF50;
    font-weight: 500;
    font-size: 14px;
}

/* Section Garantie */
.guarantee-section {
    position: relative;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    border-radius: 15px;
    color: white;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.guarantee-icon {
    font-size: 48px;
    opacity: 0.9;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.guarantee-text p {
    opacity: 1;
    line-height: 1.6;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
}

.guarantee-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #0066cc;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.guarantee-badge i {
    font-size: 0.8rem;
    color: #4CAF50;
}

/* Section Caractéristiques Techniques */
.technical-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tech-overview {
    margin-bottom: 60px;
}

.tech-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.module-item {
    padding: 15px 10px;
    background: #f0f0f0;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.module-item.active {
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    transform: scale(1.05);
}

.module-item.plus {
    background: #333;
    color: white;
    font-weight: bold;
}

.tech-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.tech-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.module-categories {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.category-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.category-count {
    font-size: 12px;
    color: #666;
}

.tech-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spec-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.spec-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.spec-item ul {
    text-align: left;
}

.spec-item li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.spec-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.final-cta {
    margin-top: 60px;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    border-radius: 15px;
    color: white;
}

.final-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #0066cc;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0066cc;
    transform: translateY(-2px);
}

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

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

/* Responsive Design pour les nouvelles sections */
@media (max-width: 768px) {
    .hero-benefits {
        gap: 20px;
    }
    
    .hero-benefits .benefit-item {
        min-width: 120px;
    }
    
    .hero-benefits .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantage-item {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .advantage-item:nth-child(even) .advantage-visual,
    .advantage-item:nth-child(even) .advantage-content {
        order: initial;
    }
    
    .icon-comparison {
        gap: 15px;
    }
    
    .competitor-icon i,
    .facigest-icon i {
        font-size: 30px;
        padding: 15px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .tech-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .module-categories {
        flex-direction: column;
        gap: 15px;
    }
    
    .tech-specs {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .final-cta {
        padding: 40px 20px;
    }
    
    .final-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Styles pour les numéros de modules design */
.module-card h3 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.module-card h3::before {
    content: attr(data-number);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.module-card:hover h3::before {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

/* Ajustement pour les modules avec header */
.module-header h3 {
    margin-bottom: 0;
}

.module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.module-header h3 {
    flex: 1;
}

/* Responsive pour les numéros */
@media (max-width: 768px) {
    .module-card h3::before {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .module-card h3 {
        gap: 10px;
    }
}

.chart-area {
    height: 120px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: end;
}

.chart-bars {
    display: flex;
    gap: 8px;
    align-items: end;
    width: 100%;
    height: 100%;
}

.bar {
    background: linear-gradient(to top, #0066cc, #4CAF50);
    width: 100%;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}

.bar:hover {
    opacity: 0.8;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.elem-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.elem-2 {
    bottom: 30%;
    right: 5%;
    animation-delay: 2s;
}

.elem-3 {
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

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

/* ===== STYLES POUR LA PAGE PRODUIT ===== */

/* Section Avantages */
.benefits-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Section Fonctionnalités avec Onglets */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-tabs {
    margin-top: 50px;
}

.tab-buttons {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    background: white;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    white-space: nowrap;
}

.tab-btn:hover {
    background: #f0f8ff;
    color: #0066cc;
}

.tab-btn.active {
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 102, 204, 0.3);
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-panel {
    display: none;
    padding: 40px;
}

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

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-text h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.feature-text p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
    font-size: 1rem;
}

.feature-list i {
    color: #4CAF50;
    font-size: 1.1rem;
    width: 20px;
}

/* Visuels des onglets */
.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Interface Comptable - Nouveaux styles */
.accounting-interface {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: none;
}

/* Ajustements pour .accounting-interface dans .devis-demo */
.devis-demo .accounting-interface {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

.devis-demo .demo-content {
    margin-top: 0;
}

.journal-section {
    margin-bottom: 20px;
}

.journal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.journal-header i {
    color: #0066cc;
    font-size: 1.1rem;
}

.period-selector {
    background: #0066cc;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-left: auto;
}

.journal-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.journal-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #ddd;
}

.journal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.journal-card.achats {
    border-left-color: #ff9800;
}

.journal-card.ventes {
    border-left-color: #4CAF50;
}

.journal-card.reglements {
    border-left-color: #2196F3;
}

.journal-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.journal-card.achats .journal-icon {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.journal-card.ventes .journal-icon {
    background: linear-gradient(135deg, #4CAF50, #388e3c);
}

.journal-card.reglements .journal-icon {
    background: linear-gradient(135deg, #2196F3, #1976d2);
}

.journal-info {
    flex: 1;
}

.journal-info h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.journal-stats {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.journal-stats .amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0066cc;
}

.journal-stats .entries {
    font-size: 0.85rem;
    color: #666;
}

.journal-status {
    color: #4CAF50;
    font-size: 1.3rem;
}

.export-section {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.export-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.export-title i {
    color: #0066cc;
}

.export-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-export {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
}

.btn-export:hover {
    background: #f0f8ff;
    border-color: #0066cc;
    color: #0066cc;
}

.btn-export.primary {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.btn-export.primary:hover {
    background: #0052a3;
}

.btn-export.secondary {
    background: #f8f9fa;
}

/* Statistiques Dashboard - Nouveaux styles */
.statistics-dashboard {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 500px;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.stats-period {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.stats-period i {
    color: #0066cc;
}

.stats-filters {
    display: flex;
    gap: 10px;
}

.filter-select {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 0.85rem;
    cursor: pointer;
}

.chart-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.chart-title > span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.chart-values {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.value-item .value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.value-item .label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 2px;
}

.value-item .trend {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
}

.value-item .trend.up {
    background: #e8f5e8;
    color: #4CAF50;
}

.chart-legend {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-item.current .legend-color {
    background: #0066cc;
}

.legend-item.previous .legend-color {
    background: #ccc;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 120px;
    gap: 15px;
    margin-bottom: 10px;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 80px;
}

.bar-container {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 100px;
    margin-bottom: 8px;
    position: relative;
}

.bar {
    width: 20px;
    border-radius: 3px 3px 0 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.bar.current {
    background: linear-gradient(to top, #0066cc, #4da6ff);
}

.bar.previous {
    background: linear-gradient(to top, #ccc, #e0e0e0);
}

.bar:hover {
    transform: scaleY(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.month-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.stats-actions {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.action-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.action-title i {
    color: #0066cc;
}

.action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-export.excel {
    background: #217346;
    color: white;
    border-color: #217346;
}

.btn-export.excel:hover {
    background: #1a5d38;
}

.btn-export.report {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.btn-export.report:hover {
    background: #e55a2b;
}

.btn-export.filter {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.btn-export.filter:hover {
    background: #5a6268;
}

/* Styles pour la section journal-summary */
.journal-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.journal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #ddd;
    transition: all 0.3s ease;
}

.journal-item:hover {
    background: #f0f8ff;
    transform: translateX(3px);
}

.journal-item.achats {
    border-left-color: #ff9800;
}

.journal-item.ventes {
    border-left-color: #4CAF50;
}

.journal-item.reglements {
    border-left-color: #2196F3;
}

.journal-item .journal-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.journal-item.achats .journal-icon {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.journal-item.ventes .journal-icon {
    background: linear-gradient(135deg, #4CAF50, #388e3c);
}

.journal-item.reglements .journal-icon {
    background: linear-gradient(135deg, #2196F3, #1976d2);
}

.journal-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.journal-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.journal-amount {
    font-weight: 700;
    color: #0066cc;
    font-size: 1rem;
}

.journal-item .journal-status {
    color: #4CAF50;
    font-size: 1.1rem;
}

/* Styles pour la section .feature-text modernisée */
.feature-header {
    margin-bottom: 25px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-badge i {
    font-size: 1rem;
}

.feature-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    margin-top: 10px;
    font-weight: 400;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    border-radius: 12px;
    border-left: 4px solid #ddd;
    background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-card.primary {
    border-left-color: #0066cc;
}

.feature-card.secondary {
    border-left-color: #4CAF50;
}

.feature-card.accent {
    border-left-color: #ff9800;
}

.card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.feature-card.primary .card-icon {
    background: linear-gradient(135deg, #0066cc, #4da6ff);
}

.feature-card.secondary .card-icon {
    background: linear-gradient(135deg, #4CAF50, #81c784);
}

.feature-card.accent .card-icon {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.card-content {
    flex: 1;
}

.card-content h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.card-content p {
    margin: 0 0 10px 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.card-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #0066cc;
    font-weight: 500;
}

.stat-item i {
    font-size: 0.9rem;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.benefit-item i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Responsive pour les feature cards */
@media (max-width: 768px) {
    .feature-cards {
        gap: 12px;
    }
    
    .feature-card {
        padding: 15px;
        gap: 12px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .card-content h4 {
        font-size: 1rem;
    }
    
    .feature-benefits {
        padding: 15px;
    }
}

/* Styles pour la section .adaptability-content modernisée */
.adaptability-content-full {
    width: 100%;
    max-width: none;
}

.adaptability-content-full .feature-header {
    text-align: center;
    margin-bottom: 40px;
}

.adaptability-content-full .feature-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.adaptability-content-full .feature-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.adaptability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.adaptation-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ddd;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.adaptation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.adaptation-card:hover::before {
    transform: translateX(100%);
}

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

.adaptation-card.primary {
    border-left-color: #0066cc;
}

.adaptation-card.secondary {
    border-left-color: #4CAF50;
}

.adaptation-card.accent {
    border-left-color: #ff9800;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.adaptation-card .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.adaptation-card.primary .card-icon {
    background: linear-gradient(135deg, #0066cc, #4da6ff);
}

.adaptation-card.secondary .card-icon {
    background: linear-gradient(135deg, #4CAF50, #81c784);
}

.adaptation-card.accent .card-icon {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.card-header h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.card-body {
    color: #666;
}

.card-body > p {
    margin: 0 0 20px 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
}

.feature-item i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #81c784);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.feature-item span {
    flex: 1;
    line-height: 1.4;
}

/* CTA moderne */
.cta-modern {
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid #e0e0e0;
    margin-top: 30px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
}

.cta-text p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.cta-action {
    flex-shrink: 0;
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-modern::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: left 0.6s ease;
}

.btn-cta-modern:hover::before {
    left: 100%;
}

.btn-cta-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #0052a3, #388e3c);
}

.btn-cta-modern i:first-child {
    font-size: 1.1rem;
}

.btn-cta-modern i:last-child {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-cta-modern:hover i:last-child {
    transform: translateX(3px);
}

/* Responsive pour adaptability */
@media (max-width: 768px) {
    .adaptability-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .adaptation-card {
        padding: 20px;
    }
    
    .card-header {
        gap: 12px;
    }
    
    .adaptation-card .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .card-header h4 {
        font-size: 1.1rem;
    }
    
    .cta-modern {
        padding: 25px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-text {
        min-width: auto;
    }
    
    .btn-cta-modern {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Arborescence de produits */
.product-tree {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 2px dashed #ddd;
    width: 100%;
    max-width: 400px;
}

.tree-node {
    margin: 8px 0;
    padding: 8px 12px;
    background: white;
    border-radius: 6px;
    border-left: 3px solid #0066cc;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tree-node:hover {
    background: #f0f8ff;
    transform: translateX(5px);
}

.tree-node.level-2 {
    margin-left: 20px;
    border-left-color: #4CAF50;
}

.tree-node.level-3 {
    margin-left: 40px;
    border-left-color: #ff9800;
    font-size: 0.9rem;
}

.tree-children {
    margin-top: 5px;
}

/* Démo de recherche */
.search-demo {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.search-input {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-input i {
    color: #0066cc;
    font-size: 1.1rem;
}

.search-input input {
    border: none;
    background: transparent;
    font-size: 1rem;
    color: #333;
    flex: 1;
    outline: none;
}

.search-results {
    padding: 0;
}

.result-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.3s ease;
}

.result-item:hover {
    background: #f8f9fa;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item i {
    color: #0066cc;
    width: 20px;
}

.result-item .price {
    margin-left: auto;
    font-weight: 600;
    color: #4CAF50;
}

/* Démo de tarification */
.pricing-demo {
    width: 100%;
    max-width: 350px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-card h4 {
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    padding: 15px 20px;
    margin: 0;
    font-size: 1.1rem;
    text-align: center;
}

.price-levels {
    padding: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item .label {
    color: #666;
    font-size: 0.95rem;
}

.price-item .value {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.price-item.special .value {
    color: #0066cc;
}

.price-item.promo .value {
    color: #4CAF50;
}

.price-item.promo .label::after {
    content: " 🎯";
}

/* Schéma d'intégration */
.integration-schema {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}

.central-node {
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    padding: 20px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.connected-modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.module-connection {
    background: white;
    padding: 15px 20px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.module-connection:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
    color: #0066cc;
}

.module-connection i {
    font-size: 1.3rem;
    color: #0066cc;
}

/* Section Workflow */
.workflow-section {
    padding: 80px 0;
    background: white;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.workflow-step {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
}

.workflow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-content h3 {
    color: #333;
    margin: 20px 0 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.step-icon {
    background: #f8f9fa;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #0066cc;
    font-size: 1.5rem;
}

.workflow-arrow {
    color: #0066cc;
    font-size: 1.5rem;
    margin: 0 10px;
}

/* Section Adaptabilité */
.adaptability-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.adaptability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.adaptability-text h2 {
    color: #333;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 600;
}

.adaptability-text p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.adaptability-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.adaptability-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
}

.adaptability-list i {
    color: #4CAF50;
    font-size: 1.2rem;
    width: 20px;
}

.support-text {
    background: linear-gradient(135deg, #f0f8ff, #f0fff0);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    font-style: italic;
}

.customization-demo {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
}

.demo-header {
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Styles pour la section adaptabilité - fonctionnalités */
.adaptability-features {
    margin: 30px 0;
}

.adapt-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.adapt-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
}

.adapt-feature i {
    color: #0066cc;
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 24px;
}

.adapt-feature div {
    flex: 1;
}

.adapt-feature h3 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.adapt-feature p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.accompagnement {
    background: linear-gradient(135deg, #f0f8ff, #f0fff0);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
    font-style: italic;
    margin: 30px 0;
    color: #333;
}

.accompagnement strong {
    color: #4CAF50;
}

/* Styles pour la section adaptabilité - visual */
.adaptability-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.customization-options {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 400px;
    width: 100%;
}

.customization-options h4 {
    color: #333;
    margin: 0 0 25px 0;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #0066cc;
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
    transition: all 0.3s ease;
}

.option-item:hover {
    background: #e8f5e8;
    transform: translateX(5px);
}

.option-item i {
    color: #4CAF50;
    font-size: 1.1rem;
    min-width: 16px;
}

.option-item span {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responsive pour la section adaptabilité */
@media (max-width: 768px) {
    .adaptability-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .adapt-feature {
        padding: 15px;
    }
    
    .customization-options {
        padding: 20px;
    }
    
    .adaptability-text h2 {
        font-size: 1.8rem;
    }
}

.demo-options {
    padding: 30px 25px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
}

.option-item:last-child {
    margin-bottom: 0;
}

.option-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Section CTA */
.cta-section {
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.cta-section p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 102, 204, 0.3);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
    color: white;
}

/* Navigation entre modules */
.module-navigation {
    padding: 40px 0;
    background: white;
    border-top: 1px solid #eee;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: #f8f9fa;
    border-radius: 25px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.nav-link.prev {
    margin-right: auto;
}

.nav-link.next {
    margin-left: auto;
}

/* Responsive Design pour la page produit */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 5px;
    }
    
    .tab-btn {
        min-width: auto;
        justify-content: flex-start;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .workflow-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .adaptability-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===== STYLES POUR PAGE COMMANDES & FACTURES ===== */

/* Démo de commande */
.commande-demo {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.commande-demo .demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.commande-demo .demo-header h4 {
    margin: 0;
    color: #0066cc;
    font-size: 1.1rem;
}

.commande-demo .demo-header h4 i {
    margin-right: 8px;
    color: #4CAF50;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-paid {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.commande-demo .demo-client {
    background: white;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.commande-demo .demo-lines {
    margin-bottom: 15px;
}

.commande-demo .demo-lines .line {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    font-size: 0.9rem;
}

.commande-demo .demo-total {
    text-align: right;
    font-size: 1.1rem;
    color: #0066cc;
    padding-top: 10px;
    border-top: 2px solid #0066cc;
}

/* Démo de facture */
.facture-demo {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.facture-demo .demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
}

.facture-demo .demo-header h4 {
    margin: 0;
    color: #0066cc;
    font-size: 1.1rem;
}

.facture-demo .demo-header h4 i {
    margin-right: 8px;
    color: #4CAF50;
}

.facture-demo .demo-amounts {
    margin-bottom: 15px;
}

.facture-demo .amount-line {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.95rem;
}

.facture-demo .amount-line.total {
    font-weight: bold;
    font-size: 1.1rem;
    color: #0066cc;
    border-top: 2px solid #0066cc;
    padding-top: 10px;
    margin-top: 10px;
}

.facture-demo .demo-payment {
    background: white;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #666;
}

.facture-demo .demo-payment i {
    color: #4CAF50;
    margin-right: 8px;
}

/* Dashboard de livraisons */
.livraison-dashboard {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.livraison-dashboard h4 {
    margin: 0 0 20px 0;
    color: #0066cc;
    font-size: 1.1rem;
    text-align: center;
}

.livraison-dashboard h4 i {
    margin-right: 8px;
    color: #4CAF50;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-item {
    background: white;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.encours-info {
    background: white;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e9ecef;
    color: #0066cc;
    font-size: 1.1rem;
}

/* Responsive pour les nouveaux éléments */
@media (max-width: 768px) {
    .commande-demo .demo-header,
    .facture-demo .demo-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .commande-demo,
    .facture-demo,
    .livraison-dashboard {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .facture-demo .amount-line {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .commande-demo .demo-total,
    .facture-demo .amount-line.total {
        font-size: 1rem;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
    }
    
    .connected-modules {
        grid-template-columns: 1fr;
    }
    
    .tab-panel {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .benefit-card {
        padding: 30px 20px;
    }
    
    .workflow-step {
        padding: 25px 20px;
        min-width: auto;
    }
    
    .cta-section {
        padding: 40px 25px;
    }
    
    .adaptability-text h2 {
        font-size: 1.8rem;
    }
    
    .feature-text h3 {
        font-size: 1.5rem;
    }
}

/* Responsive Homepage Hero */
@media (max-width: 768px) {
    .homepage-hero {
        min-height: auto;
        padding: 100px 0 80px;
    }
    
    .homepage-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .homepage-hero .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .homepage-hero .btn-primary,
    .homepage-hero .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
        gap: 15px;
    }
    
    .dashboard-preview {
        max-width: 350px;
        transform: none;
    }
    
    .dashboard-content {
        height: 250px;
    }
    
    .floating-element {
        display: none;
    }
}

/* Module Development Badges */
.module-card {
    position: relative;
    overflow: visible;
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}

.module-header h3 {
    margin: 0;
    flex: 1;
    align-items: flex-start;
    padding-right: 15px;
}

.dev-badge,
.option-badge {
    position: absolute;
    top: -27px;
    right: -27px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 15px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dev-badge {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #e0e0e0;
}

.option-badge {
    background: #fff8e1;
    color: #f57c00;
    border: 1px solid #ffcc02;
}

/* Responsive adjustments for badges */
@media (max-width: 768px) {
    .module-header {
        padding-top: 10px;
    }
    
    .dev-badge,
    .option-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        top: -8px;
        right: -8px;
    }
}

/* Styles pour la démo de devis */
.devis-demo {
    background: white;
    border: 2px solid #e3f2fd;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
    font-family: 'Roboto', sans-serif;
    max-width: 400px;
    margin: 0 auto;
}

.devis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0066cc;
}

.devis-header h4 {
    margin: 0;
    color: #0066cc;
    font-size: 1.1rem;
    font-weight: 600;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-waiting {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.devis-client {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.devis-client strong {
    color: #333;
    font-weight: 600;
}

.devis-client span {
    color: #666;
    font-size: 0.9rem;
}

.devis-lines {
    margin-bottom: 20px;
}

.devis-lines .line {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.devis-lines .line:last-child {
    border-bottom: none;
}

.devis-lines .line span:first-child {
    color: #333;
    font-weight: 500;
}

.devis-lines .line span:nth-child(2) {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.devis-lines .line span:last-child {
    color: #0066cc;
    font-weight: 600;
    text-align: right;
}

.devis-total {
    padding-top: 15px;
    border-top: 2px solid #0066cc;
    text-align: right;
}

.devis-total strong {
    color: #0066cc;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

/* Styles pour la hiérarchie des tarifs */
.tarifs-hierarchy {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 350px;
    margin: 0 auto;
}

.tarif-level {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tarif-level:hover {
    transform: translateY(-2px);
}

.level-1 {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-left: 4px solid #f39c12;
}

.level-2 {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left: 4px solid #0066cc;
}

.level-3 {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border-left: 4px solid #4CAF50;
}

.level-4 {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border-left: 4px solid #9c27b0;
}

.tarif-level i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.level-1 i { color: #f39c12; }
.level-2 i { color: #0066cc; }
.level-3 i { color: #4CAF50; }
.level-4 i { color: #9c27b0; }

.tarif-level span {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.tarif-level .price {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.arrow-down {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin: -5px 0;
}

/* Styles pour le dashboard de suivi */
.suivi-dashboard {
    max-width: 400px;
    margin: 0 auto;
}

.status-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.status-card {
    text-align: center;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.status-card:hover {
    transform: translateY(-2px);
}

.status-card.waiting {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-left: 4px solid #856404;
}

.status-card.progress {
    background: linear-gradient(135deg, #cce5ff, #99d6ff);
    border-left: 4px solid #0066cc;
}

.status-card.accepted {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-left: 4px solid #4CAF50;
}

.status-card.refused {
    background: linear-gradient(135deg, #f8d7da, #f1b0b7);
    border-left: 4px solid #dc3545;
}

.status-card i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.waiting i { color: #856404; }
.progress i { color: #0066cc; }
.accepted i { color: #4CAF50; }
.refused i { color: #dc3545; }

.status-card .count {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.status-card span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.conversion-rate {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.conversion-rate strong {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Styles pour le schéma d'intégration */
.integration-schema {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 350px;
    margin: 0 auto;
}

.central-module {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #0066cc, #4CAF50);
    color: white;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.central-module i {
    font-size: 1.3rem;
}

.connected-modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.module-connection {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e3f2fd;
    border-radius: 10px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.module-connection:hover {
    background: #e3f2fd;
    border-color: #0066cc;
    transform: translateY(-2px);
}

.module-connection i {
    color: #0066cc;
    font-size: 1.1rem;
}

/* Responsive pour les visuels */
@media (max-width: 768px) {
    .devis-demo,
    .tarifs-hierarchy,
    .suivi-dashboard,
    .integration-schema {
        max-width: 100%;
        margin: 0;
    }
    
    .devis-lines .line {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: center;
    }
    
    .status-cards {
        grid-template-columns: 1fr;
    }
    
    .connected-modules {
        grid-template-columns: 1fr;
    }
    
    .tarif-level {
        padding: 12px 15px;
    }
}
