/* Reset et variables CSS */
:root {
    --primary-color: #ff6600;
    --primary-dark: #e55a00;
    --accent-color: #ff8533;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-light: #666666;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-dark: #000000;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

/* Optimisations pour les images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Amélioration du lazy loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Placeholder pour les images en cours de chargement */
img[loading="lazy"]:not(.loaded) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-img {
    height: 15px;
    width: auto;
    max-width: 100px;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.accent {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-contact {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border: none;
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-contact::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Quick Actions */
.quick-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.quick-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.phone-btn {
    background: #10b981;
}

.contact-btn {
    background: var(--primary-color);
}

.quick-btn:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

/* Hero Compact - Version compacte pour la page d'accueil */
.hero-compact {
    padding: 80px 0 60px;
}

.hero-compact .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-compact .hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-compact .hero-buttons {
    margin-bottom: 2rem;
}

.hero-compact .hero-graphic {
    min-height: 320px;
}

.hero-compact .central-element {
    width: 80px;
    height: 80px;
    font-size: 1.7rem;
}

.hero-compact .floating-card {
    padding: 0.8rem;
    font-size: 0.9rem;
}

.hero-compact .floating-card i {
    font-size: 1.3rem;
}

.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="%23e2e8f0" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 480px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Hero Graphics */
.hero-graphic {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (max-width: 480px) {
    .hero-graphic {
        display: none;
    }
}

.central-element {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 100px;
    right: 50px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 50px;
    left: 100px;
    animation-delay: 2s;
}

.card-4 {
    bottom: 50px;
    right: 100px;
    animation-delay: 2s;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

/* Sections communes */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Section About */
.about {
    padding: 80px 0;
    background: var(--bg-primary);
}

@media (max-width: 480px) {
    .about {
        padding:0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .about-content {
        gap: 2rem !important;
    }
    .services {
        padding: 1rem !important;
    }
    .advantage-item {
        padding: 0 !important;
        min-height: 0px !important;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.values-list {
    list-style: none;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.values-list i {
    color: var(--primary-color);
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
}

/* Section Services */
.services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.service-card {
    background: white;
    /*padding: 0.2rem;*/
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    /*margin-bottom: 1.5rem;*/
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

/* Nouvelle grille moderne pour les services */
.services-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Carte PrestaShop - Grande carte featured */
.service-card-featured {
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.prestashop-card .service-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

/* Cartes compactes */
.service-card-compact {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    color: white;
    border: none;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.symfony-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.symfony-card .service-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.symfony-card .service-content p {
    color: white;
    opacity: 0.95;
    margin: 0;
    flex-grow: 0;
}

.symfony-card .service-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M20 20l20-20v40z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.infogerance-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.infogerance-card .service-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Crect width='10' height='10' x='20' y='20'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

/* Carte DevOps - Highlight */
.service-card-highlight {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #ffd93d 100%);
    border-radius: 16px;
    color: #2d3748;
    border: none;
    box-shadow: 0 10px 30px rgba(168, 237, 234, 0.4);
}

.devops-card .service-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M40 40l40-40v80z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

/* Contenu des cartes */
.service-content {
    position: relative;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.service-card-featured .service-content {
    padding: 2rem;
}

@media (max-width: 768px) {
    .service-card-featured .service-content {
        padding: 0.5rem;
    }
    
    .service-icon-modern {
        width: 45px;
        height: 45px;
    }
    
    .service-header {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

/* En-tête avec icône et titre alignés */
.service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.service-header h3 {
    margin: 0;
}

/* Icônes modernes */
.service-icon-modern {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.service-card-compact .service-icon-modern {
    width: 50px;
    height: 50px;
}

.service-icon-modern i {
    font-size: 1.8rem;
    color: currentColor;
}

.devops-card .service-icon-modern {
    background: rgba(45, 55, 72, 0.1);
    border: 1px solid rgba(45, 55, 72, 0.15);
}



/* Titres et descriptions */
.service-content h3,
.service-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-card-compact .service-content h3,
.service-card-compact .service-header h3 {
    font-size: 1.25rem;
}

.service-content p {
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

.service-card-compact .service-content p {
    font-size: 0.95rem;
}

/* Tags de fonctionnalités modernes */
.service-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.devops-card .feature-tag {
    background: rgba(45, 55, 72, 0.1);
    color: #2d3748;
    border: 1px solid rgba(45, 55, 72, 0.15);
}

.devops-card .feature-tag:hover {
    background: rgba(45, 55, 72, 0.15);
}

/* Liens modernes */
.service-link-modern {
    color: currentColor;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-link-modern:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.devops-card .service-link-modern {
    background: rgba(45, 55, 72, 0.1);
    color: #2d3748;
    border: 1px solid rgba(45, 55, 72, 0.15);
}

.devops-card .service-link-modern:hover {
    background: rgba(45, 55, 72, 0.15);
}

/* Effets hover sur les cartes */
.service-card:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.25);
}

.service-card-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.service-card-compact:hover {
    transform: translateY(-5px);
}

.symfony-card:hover {
    box-shadow: 0 20px 40px rgba(240, 147, 251, 0.4);
}

.infogerance-card:hover {
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.4);
}

.service-card-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(168, 237, 234, 0.5);
}

/* Media queries pour la grille moderne */
@media (max-width: 1024px) {
    .services-grid-modern {
        grid-template-columns: 1fr 1fr;
        height: auto;
        gap: 1.25rem;
    }
    
    .service-card-featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .service-card-highlight {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    #services .container {
        padding-left: 0;
        padding-right: 0;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    #services .container .service-card {
        padding-left: 0;
        padding-right: 0;
    }

    .service-card-featured,
    .service-card-compact {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
        padding-left: 0;
        padding-right: 0;
    }

    .service-card-featured .service-content,
    .service-card-compact .service-content {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        padding-left: 0;
        padding-right: 0;
    }

    .symfony-card {
        height: auto;
    }

    .symfony-card .service-content {
        gap: 0.75rem;
    }

    .symfony-card .service-content p {
        margin-bottom: 0.5rem;
    }
    
    .service-card-featured,
    .service-card-highlight {
        grid-column: span 1;
        min-height: auto; /* Permet à la carte de s'adapter à son contenu sur mobile */
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-card-compact .service-content h3 {
        font-size: 1.2rem;
    }
    
    /* Ajustements pour la nouvelle structure PrestaShop sur mobile */
    .service-description {
        gap: 1.2rem;
    }
    
    .intro-highlight .hero-intro {
        font-size: 1rem;
    }
    
    .key-advantages {
        gap: 0.6rem;
    }
    
    .advantage-item {
        font-size: 0.9rem;
    }
    
    .tech-expertise {
        padding: 0.8rem;
    }
    
    .expertise-question {
        font-size: 0.9rem;
    }
    
    .need {
        font-size: 0.85rem;
    }
    
    .solution {
        font-size: 0.95rem;
    }
    
    .promise-title {
        font-size: 1rem;
    }
    
    .benefit {
        font-size: 0.85rem;
    }
    
    .final-tagline {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

/* Section Team */
.team {
    padding: 40px 0 80px;
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    min-width: 0; /* Permet aux éléments de rétrécir si nécessaire */
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 3px solid var(--border-color);
    transition: var(--transition);
}

.team-member:hover .member-photo img {
    border-color: var(--primary-color);
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--text-light);
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.member-social a:hover {
    color: var(--primary-color);
}

/* Section Contact */
.contact {
    padding: 40px 0 80px;
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.map-container {
    margin-top: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Form Styles */
.form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

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

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

.social-links a {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-legal-link {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal-link:hover {
    color: var(--primary-color);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 0.5rem;
}

.legal-links a:hover {
    color: white;
}

/* Responsive Design */
/* Requête média pour tablettes */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 12px;
        max-width: 80px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    /* Styles responsive pour hero-compact */
    .hero-compact {
        padding: 60px 0 40px;
    }

    .hero-compact .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .hero-compact .hero-description {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-compact .hero-buttons {
        margin-bottom: 1.5rem;
    }

    .hero-compact .hero-graphic {
        min-height: 280px;
    }

    .hero-compact .central-element {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .hero-compact .floating-card {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .hero-compact .floating-card i {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-item {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 400px;
        min-height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .advantage-icon {
        margin-bottom: 1rem;
    }

    .advantage-item h4 {
        font-size: 1.2rem;
        line-height: 1.4;
        margin: 0 0 0.75rem 0;
        order: 1;
    }

    .advantage-item p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin: 0;
        order: 2;
        flex-grow: 1;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Styles pour les pages spécifiques */

/* Page développement */
.dev-hero {
    background: linear-gradient(135deg, #000000 0%, #ff6600 100%);
    color: white;
    padding: 60px 0 0px;
}

.dev-hero .container {
    padding-top: 30px;
}

.dev-hero .hero-title,
.dev-hero .hero-description {
    color: white;
}

.hero-badges {
    display: grid;
    gap: 1.5rem;
    margin-top: 0;
    height: 100%;
    align-content: center;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.tech-badge i {
    font-size: 2rem;
    color: #fbbf24;
}

.tech-badge h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.tech-badge p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Hero Guarantees for Hosting/Infogérance */
.hero-guarantees {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.guarantee {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.guarantee h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.guarantee p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Services détaillés */
.prestashop-section,
.symfony-section {
    padding: 40px 0;
}

@media (max-width: 480px) {
    .prestashop-section {
        padding: 20px 0;
    }
}

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

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

.service-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Expertise Showcase */
.expertise-showcase {
    margin-bottom: 5rem;
}

.showcase-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}
@media (max-width: 480px) {
    .showcase-intro {
        margin: 0 !important;
    }
    .features-grid {
        margin-top: 1rem !important;
    }
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.intro-badge i {
    font-size: 1.1rem;
}

.showcase-intro h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.3;
    font-weight: 700;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Integration Section */
.integration-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    border-radius: 20px;
    margin: 4rem 0;
    position: relative;
}

.integration-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.section-icon i {
    font-size: 2rem;
    color: white;
}

.section-content {
    text-align: center;
    flex: 1;
    min-width: 300px;
}

.section-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.integration-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

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

.integration-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.integration-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.integration-item:hover .integration-icon {
    background: var(--primary-color);
}

.integration-item:hover .integration-icon i {
    color: white;
}

.integration-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.integration-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.integration-result {
    text-align: center;
}
@media (max-width: 480px) {
    .integration-result .fa-check-circle,
    .integration-result strong,
    .result-badge .fa-check-circle,
    .result-badge strong {
        display: none;
    }
    .integration-result .result-badge,
    .modules-result .result-badge {
        border-radius: 20px;
    }
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.result-badge i {
    font-size: 1.2rem;
}

/* Modules Section */
.modules-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 480px) {
    .modules-section {
        margin: 1rem 0;
        padding: 1rem 0;
    }
}

.modules-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 480px) {
    .modules-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.module-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.module-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-icon i {
    color: white;
    font-size: 1.25rem;
}

.module-item:hover .module-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.module-item:hover .module-icon i {
    transform: scale(1.1);
}

.module-item h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.module-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.modules-result {
    margin-top: 2rem;
    text-align: center;
}

/* Styles spécifiques pour les modules PrestaShop */
.prestashop-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.prestashop-module-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid #e0e4e8;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}



.prestashop-module-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(255, 102, 0, 0.15);
    transform: translateY(-4px);
}

.prestashop-module-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 102, 0, 0.2);
}

.prestashop-module-icon i {
    color: white;
    font-size: 1.5rem;
}

.prestashop-module-item:hover .prestashop-module-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 6px 24px rgba(255, 102, 0, 0.35);
}

.prestashop-module-item h4 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.prestashop-module-item .feature-list {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.prestashop-module-item .feature-list li {
    position: relative;
    margin-bottom: 0.5rem;
}

.prestashop-module-item .feature-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* Media queries pour les modules PrestaShop */
@media (max-width: 768px) {
    .prestashop-modules-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .prestashop-module-item {
        padding: 1.5rem;
        gap: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .prestashop-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .prestashop-modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Video Section */
.video-section {
    /*margin: 6rem 0;*/
    /*padding: 4rem 0;*/
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

@media (max-width: 480px) {
    .video-section {
        margin: 1rem 0 !important;
        padding: 1rem 0 !important;
    }
    .section-icon {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
}

.video-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .video-section {
        margin: 4rem 0;
        padding: 3rem 0;
    }
}

/* Section Why Choose Us - Version Moderne */
.why-choose-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 102, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.modern-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.modern-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.advantages-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.advantage-modern-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.advantage-modern-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-modern-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.15);
    border-color: var(--primary-color);
}

.advantage-modern-item:hover::before {
    transform: scaleX(1);
}

.advantage-modern-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

@media (max-width: 480px) {
    .advantage-modern-icon {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
}

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

.advantage-modern-item:hover .advantage-modern-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.advantage-modern-content {
    flex: 1;
}

.advantage-modern-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.advantage-modern-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.advantage-modern-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.conclusion-modern {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.1);
    position: relative;
    z-index: 1;
}

.conclusion-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.conclusion-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.conclusion-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.conclusion-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Benefits Overview */
.benefits-overview {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-radius: 20px;
}

.service-overview {
    margin-bottom: 4rem;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.2);
    color: var(--accent-color);
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.services-detailed h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-detail-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-detail-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    /*padding: 0.5rem 0;*/
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

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

.service-price {
    text-align: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    color: var(--text-primary);
}

.service-price strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Technologies */
.tech-specs {
    margin-top: 4rem;
    text-align: center;
}

.tech-specs h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.tech-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Portfolio développement */
.dev-portfolio {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.portfolio-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.portfolio-content {
    padding: 1.5rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
}

.prestashop-tag {
    background: #ff6b35;
}

.symfony-tag {
    background: #000000;
}

.ecommerce-tag {
    background: #f59e0b;
}

.app-tag {
    background: #3b82f6;
}

.b2b-tag {
    background: #8b5cf6;
}

.api-tag {
    background: #10b981;
}

.wellness-tag {
    background: #ec4899;
}

.education-tag {
    background: #6366f1;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-metrics {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.metric i {
    color: var(--primary-color);
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tech span {
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    background: var(--bg-secondary);
    border-radius: 4px;
    color: var(--text-secondary);
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Témoignages */
.testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Logos clients */
.client-logos {
    padding: 60px 0;
    background: var(--bg-primary);
    text-align: center;
}

.client-logos h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 190px;
    height: 190px;
    transition: var(--transition);
    aspect-ratio: 1;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.logo-placeholder {
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.logo-item:hover {
    transform: scale(1.05);
}

/* Media queries pour la grille des logos */
@media (max-width: 1200px) {
    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
        max-width: 900px;
    }
    
    .logo-item {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        max-width: 600px;
    }
    
    .logo-item {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
    }
    
    .logo-item {
        height: 100px;
    }
}

/* CTA références */
.references-cta {
    padding: 80px 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.references-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.references-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Styles actifs pour navigation */
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Pages légales */
.legal-page {
    padding: 120px 0 80px;
    background: var(--bg-primary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section strong {
    color: var(--text-primary);
}

@media (max-width: 480px) {
    #accueil .hero-image {
        display: none;
    }
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0 0;
    }

    /* Styles pour très petits écrans pour hero-compact */
    .hero-compact {
        padding: 65px 0 30px;
    }

    .hero-compact .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .hero-compact .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-compact .hero-buttons {
        margin-bottom: 1.2rem;
    }

    .hero-compact .hero-graphic {
        min-height: 250px;
    }

    .hero-compact .central-element {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .hero-compact .floating-card {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .hero-compact .floating-card i {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .hero-badges,
    .hero-guarantees,
    .hero-stats,
    .benefits-grid,
    .tech-grid,
    .process-steps,
    .hosting-plans,
    .features-grid,
    .sla-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .project-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Styles pour la nouvelle structure du contenu PrestaShop */
.service-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.intro-highlight .hero-intro {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    color: white;
}

.accent-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 600;
}

.key-advantages {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.advantage-item i {
    color: #ff6b9d;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.tech-expertise {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-question {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.need-solution {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.need {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.solution {
    font-size: 1rem;
    color: #ff6b9d;
    font-weight: 600;
}

.value-promise {
    margin-top: auto;
}

.promise-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #ff6b9d;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.benefit {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
}

.final-tagline {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.8rem;
    text-align: center;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.final-tagline strong {
    color: #ff6b9d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .expertise-showcase {
        margin-bottom: 3rem;
    }
    
    .showcase-intro h3 {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .integration-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integration-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-content h3 {
        font-size: 1.6rem;
    }
    
    .integration-section {
        padding: 3rem 1rem;
        margin: 3rem 0;
    }
    
    /* Styles responsives pour la section why-choose-modern */
    .why-choose-modern {
        padding: 60px 0;
    }
    
    .modern-header .section-title {
        font-size: 2rem;
    }
    
    .advantages-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .advantage-modern-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .advantage-modern-badge {
        position: static;
        margin-top: 1rem;
        align-self: center;
    }
    
    .conclusion-modern {
        padding: 2rem;
    }
    
    .conclusion-stats {
        gap: 2rem;
    }
    
    .stat-item strong {
        font-size: 2rem;
    }
    
    /* Responsive pour la section partenaires */
    .partners-section {
        padding: 60px 0;
    }
    
    .main-partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .main-partner-card {
        padding: 2rem;
    }
    
        .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1.5rem;
        max-width: 500px;
    }

    .partner-item {
        padding: 1rem 0.8rem 0.8rem;
        min-height: 120px;
    }

    .partner-logo {
        height: 60px;
        padding: 8px;
    }
    
    .guarantees-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .infrastructure-guarantees {
        padding: 2rem;
    }
}

/* Section Partenaires & Datacentres */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.partners-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.main-partners {
    margin-bottom: 5rem;
}

.main-partners h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.main-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .main-partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .main-partner-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

.main-partner-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.main-partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.main-partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.15);
    border-color: var(--primary-color);
}

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

/* Styles pour les partenaires principaux */
.main-partner-card .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

/* Style spécifique pour la carte OVH - logo pleine largeur */
.ovh-partner .partner-logo {
    background: transparent !important;
    padding: 1rem 0;
    border: none;
    border-radius: 0;
    width: 100%;
}

/* Style spécifique pour la carte IONOS - logo pleine largeur */
.ionos-partner .partner-logo {
    background: transparent !important;
    padding: 1rem 0;
    border: none;
    border-radius: 0;
    width: 100%;
}

/* Logo OVH avec image officielle - pleine largeur */
.ovh-logo {
    background: transparent !important;
    padding: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 100%;
    height: 100%;
}

.ovh-logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.ionos-logo {
    background: transparent !important;
    color: white;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0;
    border: none;
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.ionos-logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.ionos-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.ionos-logo .logo-subtitle {
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.8;
}

.partner-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.partner-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.partner-features {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.partner-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.other-partners {
    margin-bottom: 4rem;
}

.other-partners h3 {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.partners-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
}

.partner-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem 1rem 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.partner-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 102, 0, 0.2);
}

.partner-logo {
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: transparent;
    border-radius: 0;
    padding: 10px;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(10%) brightness(1.05);
}

/* Effets au survol */
.partner-item:hover .partner-logo {
    transform: translateY(-3px);
}

.partner-item:hover .partner-logo img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}

.partner-item span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    line-height: 1.2;
    margin-top: auto;
    padding-top: 0.5rem;
}

/* Styles pour le partenaire en liste - Version élégante */
.partner-list-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.partner-list-item::before {
    display: none;
}

.partner-list-content {
    text-align: center;
    width: 100%;
    padding: 1rem 0;
}

.partner-list-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.partner-list-content h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    max-width: 200px;
    margin: 0 auto;
}

.partner-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0.5rem 0.8rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.partner-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.15);
}

.partner-list li:before {
    display: none;
}

.partner-list li:last-child {
    grid-column: 1 / -1;
    font-style: italic;
    color: var(--text-light);
    font-weight: 500;
    background: #f8f9fa;
    border-color: rgba(0, 0, 0, 0.06);
}

.partner-list li:last-child:hover {
    background: #f0f2f5;
    border-color: rgba(0, 0, 0, 0.1);
}

.infrastructure-guarantees {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.1);
}

.guarantees-content h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.guarantee-item {
    text-align: center;
    padding: 1.5rem;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.guarantee-icon i {
    font-size: 1.5rem;
    color: white;
}

.guarantee-item:hover .guarantee-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.guarantee-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.guarantee-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* BCISOFT Brand Styling */
.brand-name {
    font-weight: 700;
    display: inline-block;
    position: relative;
}

.brand-bci {
    color: #000000;
    font-weight: 700;
}

.brand-soft {
    color: #ff6600;
    font-weight: 700;
}

.brand-name:hover {
    transform: scale(1.02);
}

/* Styles pour la disposition des modules Symfony */
.module-item.half-width {
    flex: 1;
}

.module-item.full-width {
    flex: 1 1 100%;
    width: 100%;
}



/* Responsive pour les modules Symfony */
@media (max-width: 768px) {
    .modules-grid {
        flex-direction: column;
    }
    
    .module-item.sixty-percent,
    .module-item.forty-percent {
        flex: 1;
    }
}

/* Styles pour les modules avec image */
.module-item.with-image {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 2rem;
}

.module-item.with-image .module-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-item.with-image .module-image {
    flex: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1rem;
}

/* Styles spécifiques pour l'image manager (module sixty-percent) */
.module-item.sixty-percent.with-image .module-image {
    flex: 1.25;
    max-width: 300px;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    align-self: center;
}

.module-item.with-image .module-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.module-item.with-image:hover .module-image img {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

/* Responsive pour les modules avec image */
@media (max-width: 768px) {
    .module-item.with-image {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .module-item.with-image .module-image {
        flex: none;
        align-self: center;
        padding-top: 0;
    }
}

/* Styles spécifiques pour les modules half-width avec image */
.module-item.half-width.with-image .module-content {
    flex: 2;
}

.module-item.half-width.with-image .module-image {
    flex: 1;
    max-width: 120px;
}

.module-item.half-width.with-image .module-image img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* Styles pour les ratios 2/3 et 1/3 */
.module-item.two-thirds {
    grid-column: span 2;
    flex: 2;
}

.module-item.one-third {
    grid-column: span 1;
    flex: 1;
}

/* Ajustements pour les modules two-thirds avec image - DÉSACTIVÉ
.module-item.two-thirds.with-image .module-content {
    flex: 1;
}

.module-item.two-thirds.with-image .module-image {
    flex: 1.5;
    max-width: 400px;
    align-items: flex-start;
    padding-top: 3.5rem;
}

.module-item.two-thirds.with-image .module-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}
*/

/* Responsive pour les ratios personnalisés */
@media (max-width: 768px) {
    .module-item.two-thirds,
    .module-item.one-third {
        grid-column: span 1;
    }
}

/* Styles pour le ratio 60/40 */
.module-item.sixty-percent {
    flex: 3;
    min-width: 0;
}

.module-item.forty-percent {
    flex: 2;
    min-width: 0;
}

/* Grille flexible pour les ratios personnalisés */
.modules-grid.flexible-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.modules-grid.flexible-grid .module-item.full-width {
    flex: 1 1 100%;
}

/* Modification pour supporter les ratios 60/40 dans la grille Symfony */
.modules-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.module-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}



.service-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* ======================================
   STYLES MODERNES POUR HERO INFOGÉRANCE
   ====================================== */

/* Background désactivé pour la page infogérance (remplacé par l'animation canvas) */
.hosting-hero::before {
    display: none;
}

/* Canvas d'animation pour les graphiques de monitoring */
#monitoring-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
    background: transparent;
}

/* Container principal pour l'infogérance */
.hosting-hero-graphic {
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    overflow: hidden;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Fond pour le texte hero avec le même gradient */
.hosting-hero .hero-text {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hosting-visual-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Section principale horizontale */
.horizontal-main-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex: 1;
}

/* Datacenter moderne */
.datacenter-visualization {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.datacenter-rack {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: linear-gradient(145deg, #2d3748, #1a202c);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a5568;
    min-width: 180px;
}

.server-unit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4a5568, #2d3748);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    opacity: 0;
    animation: serverBootUp 0.8s ease forwards;
}

.server-unit.active {
    border-left-color: #48bb78;
    box-shadow: 0 0 20px rgba(72, 187, 120, 0.3);
}

.server-unit:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.4);
}

.led-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: ledBlink 2s ease-in-out infinite;
}

.led-indicator.green {
    background: #48bb78;
    box-shadow: 0 0 10px #48bb78;
}

.server-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.server-label {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
}

.activity-bars {
    display: flex;
    gap: 3px;
    align-items: end;
    height: 20px;
}

.activity-bars .bar {
    width: 4px;
    background: linear-gradient(to top, #4299e1, #63b3ed);
    border-radius: 2px;
    animation: activityPulse 1.5s ease-in-out infinite;
}

.activity-bars .bar:nth-child(2) {
    animation-delay: 0.2s;
}

.activity-bars .bar:nth-child(3) {
    animation-delay: 0.4s;
}

/* Connexions réseau */
.network-connections {
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    height: 2px;
    display: flex;
    justify-content: space-between;
}

.connection-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4299e1, transparent);
    animation: dataFlow 2s ease-in-out infinite;
}

/* Dashboard moderne */
.modern-dashboard {
    background: linear-gradient(135deg, #ffffff, #f7fafc);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    min-width: 240px;
    flex: 1;
    max-width: 300px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.dashboard-header span {
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: statusBlink 1.5s ease-in-out infinite;
}

.status-indicator.live {
    background: #48bb78;
    box-shadow: 0 0 8px #48bb78;
}

.dashboard-metrics {
    display: flex;
    gap: 1.5rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-trend {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.metric-trend.up {
    background: #48bb78;
    color: white;
}

.metric-trend.stable {
    background: #ed8936;
    color: white;
}

/* Floating garanties */
.floating-guarantees {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.floating-guarantees.compact {
    gap: 0.75rem;
}

.guarantee-bubble {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #ffffff, #f7fafc);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    animation: floatUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.guarantee-bubble.compact {
    padding: 0.75rem 1.25rem;
    gap: 0.6rem;
}

.guarantee-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.guarantee-icon.compact {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.guarantee-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.guarantee-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Particules d'arrière-plan */
.background-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 8s ease-in-out infinite;
}

/* Animations */
@keyframes serverBootUp {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ledBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes activityPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes dataFlow {
    0% { transform: translateX(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100px); opacity: 0; }
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10%, 90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hosting-hero-graphic {
        min-height: 280px;
        padding: 1.25rem;
    }
    
    .horizontal-main-section {
        gap: 1.5rem;
    }
    
    .modern-dashboard {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .hosting-hero-graphic {
        min-height: 400px;
        padding: 1rem;
    }
    
    .hosting-visual-container {
        gap: 1.25rem;
    }
    
    .horizontal-main-section {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .datacenter-visualization {
        align-items: stretch;
    }
    
    .datacenter-rack {
        padding: 1rem;
        min-width: auto;
    }
    
    .server-unit {
        padding: 0.75rem 1rem;
    }
    
    .modern-dashboard {
        padding: 1rem;
        min-width: auto;
        max-width: none;
    }
    
    .dashboard-metrics {
        gap: 1rem;
    }
    
    .floating-guarantees.compact {
        gap: 0.5rem;
    }
    
    .guarantee-bubble.compact {
        padding: 0.6rem 1rem;
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .hosting-hero-graphic {
        min-height: 300px;
        padding: 0.75rem;
    }
    
    .server-unit {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .activity-bars {
        justify-content: center;
    }
    
    .modern-dashboard {
        min-width: 200px;
    }
}

/* Section Prestations */
.prestations-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    position: relative;
}

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

.prestation-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 102, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.prestation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prestation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.15);
}

.prestation-card:hover::before {
    opacity: 1;
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.card-icon i {
    font-size: 28px;
    color: white;
}

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

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.card-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.card-content {
    margin-bottom: 25px;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Carte mise en avant "Pourquoi nous choisir" */
.highlight-card {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(255, 133, 51, 0.05) 100%);
    border: 2px solid rgba(255, 102, 0, 0.2);
}

.highlight-card .card-icon {
    background: linear-gradient(135deg, #fbbf24, var(--primary-color));
}

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

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.why-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.why-item div {
    flex: 1;
}

.why-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Call-to-action prestations */
.prestations-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    color: white;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    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 {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

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

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

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .prestations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .prestations-section {
        padding: 60px 0;
    }
    
    .prestations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .prestation-card {
        padding: 25px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 24px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-item {
        padding: 15px;
    }
    
    .prestations-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .prestation-card {
        padding: 20px;
    }
    
    .tech-badges {
        justify-content: center;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
}

/* Section Agence - Styles pour les agences */
.agence-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

/* Style spécial pour l'en-tête de la section agence - fond orange distinctif */
#agence .section-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
    position: relative;
    overflow: hidden;
}

#agence .section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.3;
}

#agence .section-header .section-title {
    color: white;
    position: relative;
    z-index: 1;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#agence .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 1;
}

.agence-intro {
    text-align: center;
    margin-bottom: 60px;
}

.agence-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.agence-intro p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.agence-cta {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
}

.agence-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.agence-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.agence-cta .cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.agence-cta .cta-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.agence-cta .cta-buttons .btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.agence-cta .cta-buttons .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.agence-cta .cta-buttons .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.2);
}

/* Responsive pour la section agence */
@media (max-width: 768px) {
    .agence-section {
        padding: 60px 0;
    }
    
    #agence .section-header {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    #agence .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .agence-intro {
        margin-bottom: 40px;
    }
    
    .agence-intro h3 {
        font-size: 1.6rem;
    }
    
    .agence-cta {
        padding: 2rem 1.5rem;
    }
    
    .agence-cta h3 {
        font-size: 1.5rem;
    }
    
    .agence-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .agence-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Pages de taxonomie (tags, catégories) */
.taxonomy-page,
.terms-page {
    padding: 80px 0;
    background: var(--bg-secondary);
}

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

.post-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.post-card h3 a {
    color: var(--text-primary);
    text-decoration: none;
}

.post-card h3 a:hover {
    color: var(--primary-color);
}

.post-meta {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.term-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.term-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.term-link {
    display: block;
    padding: 2rem;
    text-decoration: none;
    color: var(--text-primary);
}

.term-link h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

/* Logos partenaires dans le footer */
.footer-partners {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    margin-left: -0.5rem;
}

.footer-partner-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: white;
    border-radius: 4px;
}

.footer-partner-logo.ovh-logo {
    width: 485px;
    padding: 0.25rem 0.5rem;
}

.footer-partner-logo.ionos-logo {
    width: 150px;
    padding: 0.5rem;
}

.footer-partner-logo.ovh-logo img {
    height: 95px;
}

.footer-partner-logo.ionos-logo img {
    height: 55px;
}

.footer-partner-logo img {
    width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    display: block;
}

.footer-partner-logo:hover {
    opacity: 0.9;
}

/* Layout Mentions Légales */
.legal-page {
    padding: 4rem 0;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.legal-article {
    padding: 3rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-description {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
}

.legal-content {
    line-height: 1.8;
    color: #495057;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.legal-content em {
    color: #6c757d;
    font-style: italic;
}

.legal-content hr {
    margin: 3rem 0;
    border: none;
    border-top: 1px solid #e9ecef;
}

.legal-content .legal-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.legal-content .legal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsive design pour Mentions Légales */
@media (max-width: 768px) {
    .legal-article {
        padding: 2rem 1.5rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .legal-content .legal-section-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .legal-article {
        padding: 1.5rem 1rem;
    }
    
    .legal-title {
        font-size: 1.8rem;
    }
    
    .legal-content {
        font-size: 0.95rem;
    }
}

/* Optimisations spécifiques pour la page références */
.testimonials-section .author-image img {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.logos-grid .logo-item img {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Préchargement des images importantes */
.author-image img[fetchpriority="high"] {
    font-display: swap;
}

/* Optimisation du rendu des images */
.logo-item {
    contain: layout style paint;
}

.logo-item img {
    object-fit: contain;
    object-position: center;
    opacity: 1 !important; /* S'assurer que les images sont visibles par défaut */
    transform: scale(1) !important; /* S'assurer que les images sont à la bonne taille par défaut */
}

/* Animation d'apparition progressive pour les images */
.logo-item img.loading {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-item img.loaded {
    opacity: 1;
    transform: scale(1);
}

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

.service-card-compact {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.service-card-compact .service-content {
    display: flex;
    flex-direction: column;
}

.service-card-compact .service-header {
    margin-bottom: 1rem;
}

.service-card-compact .service-content p {
    margin: 0 0 1.5rem 0;
}

.service-card-compact .service-link-modern {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .service-card-compact {
        padding: 1.25rem;
    }
    
    .service-card-compact .service-header {
        margin-bottom: 0.75rem;
    }
    
    .service-card-compact .service-content p {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .symfony-card .service-content {
        min-height: 200px;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .symfony-card .service-content p {
        margin-bottom: 0.5rem;
    }
    
    .symfony-card .service-link-modern {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .service-card-featured .service-content,
    .service-card-compact .service-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .service-card-featured .service-header,
    .service-card-compact .service-header {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 40px 0 40px;
    }
}