/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Correction globale pour éviter les débordements */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Correction spécifique pour mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* RÈGLE FORCÉE POUR CONTACT - APPROCHE RADICALE */
    .contact {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-content {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: var(--spacing-lg) !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-form,
    .contact-business-card,
    .contact-info-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: var(--spacing-md) !important;
        flex: 1 1 100% !important;
        display: block !important;
    }
    
    .contact-right-column {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: var(--spacing-lg) !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Variables CSS pour la charte graphique */
:root {
    /* Couleurs principales - Palette moderne */
    --primary-blue: #1A2B40;
    --primary-blue-light: #2A3B50;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-orange: #F97316;
    --accent-green: #10B981;
    --accent-cyan: #06B6D4;
    
    /* Couleurs de fond */
    --bg-gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --bg-gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --bg-gradient-dark: linear-gradient(135deg, #1A2B40 0%, #0f172a 100%);
    
    /* Couleurs de texte */
    --text-dark: #1f2937;
    --text-light: #FFFFFF;
    --text-muted: #6b7280;
    
    /* Couleurs de cartes */
    --card-bg: #FFFFFF;
    --card-bg-gradient: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --card-border: #e5e7eb;
    
    /* Typographie */
    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Ombres modernes */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--card-bg);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Typographie des titres */
h1, h2 {
    font-family: 'Space Grotesk', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

/* Override pour le header */
.header .container {
    padding: 0 50px !important;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, #2A3B50 0%, #1A2B40 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Suppression du backdrop-filter pour éviter les conflits de rendu */
    /* backdrop-filter: blur(10px); */
    /* Amélioration de la stabilité du rendu */
    transform: translateZ(0);
    will-change: transform;
}

@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }
}

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

/* Logo styles */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    text-align: center;
}

.logo-frame {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF !important;
    border-radius: var(--radius-sm);
}

.logo-nodes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #FFFFFF !important;
    border-radius: 50%;
}

.node.top-left { top: -4px; left: -4px; }
.node.top-right { top: -4px; right: -4px; }
.node.bottom-left { bottom: -4px; left: -4px; }
.node.bottom-right { bottom: -4px; right: -4px; }

.logo-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.line {
    position: absolute;
    background-color: #FFFFFF !important;
}

.line.horizontal {
    height: 2px;
    width: 20px;
}

.line.vertical {
    width: 2px;
    height: 20px;
}

.line.top { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.line.bottom { bottom: 50%; left: 50%; transform: translate(-50%, 50%); }
.line.left { left: 50%; top: 50%; transform: translate(-50%, -50%) rotate(90deg); }
.line.right { right: 50%; top: 50%; transform: translate(50%, -50%) rotate(90deg); }

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF !important;
    letter-spacing: 1px;
}

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

.logo-subtitle {
    font-size: 0.8rem;
    color: #FFFFFF !important;
    font-weight: 400;
    letter-spacing: 2px;
}

.logo-tagline {
    font-size: 0.9rem;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.8;
    margin-left: var(--spacing-lg);
    font-style: italic;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    transition: all 0.3s ease;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    padding: 0 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #00BFFF;
    transition: color 0.3s ease;
}

/* Menu burger */
.nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none; /* Caché sur desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.2rem;
    flex-direction: column;
    gap: 6px;
    min-width: 60px;
    min-height: 60px;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    border-color: rgba(255,255,255,0.6);
    background-color: rgba(255,255,255,0.1);
}



.hamburger {
    width: 35px;
    height: 4px;
    background-color: #FFFFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animation du burger */
.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -8px);
}



/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #5A7A9A 0%, #4A6B8A 50%, #3A5C7A 100%);
    padding: calc(80px + var(--spacing-xxl)) 0 var(--spacing-xxl);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Amélioration de la stabilité du rendu */
    transform: translateZ(0);
    will-change: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== HERO SECTION SIMPLIFIÉE ===== */

@media (max-width: 768px) {
    .hero {
        padding: calc(60px + var(--spacing-lg)) 0 var(--spacing-lg);
        min-height: 90vh;
        align-items: flex-start;
        padding-top: calc(60px + var(--spacing-md));
    }
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
    text-align: left;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light) !important;
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-slogan {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: var(--text-light);
    opacity: 0.95;
    margin-bottom: var(--spacing-xxl);
    line-height: 1.5;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    opacity: 0.95;
    margin-bottom: var(--spacing-xxl);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Style spécifique pour le H3 de la div hero - même couleur que le menu au survol */
.hero-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #00BFFF; /* Même couleur bleue que le menu au survol */
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}

/* Animation subtile au survol du H3 */
.hero-content h3:hover {
    color: #1E90FF; /* Légère variation de la couleur bleue au survol */
    text-shadow: 0 3px 6px rgba(0, 176, 255, 0.3);
}

.hero-optimization {
    margin-bottom: var(--spacing-xxl);
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.hero-opt-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.hero-opt-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-xl);
    flex-wrap: wrap;
}

/* ===== BULLES DE PENSÉES DYNAMIQUES ===== */
.hero-thoughts {
    position: relative;
    height: 80px;
    margin: var(--spacing-lg) 0;
    overflow: hidden;
}

.thought-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    color: #1A2B40;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(74, 144, 226, 0.3);
    /* Suppression du backdrop-filter pour éviter les conflits de rendu */
    /* backdrop-filter: blur(10px); */
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: normal;
    max-width: 400px;
    min-width: 250px;
    text-align: center;
    line-height: 1.4;
}

.thought-bubble::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.98);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.thought-bubble.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.thought-bubble.hide {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.8);
}

/* Animation d'apparition avec effet de rebond */
@keyframes thoughtAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.3) translateY(20px);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) translateY(0);
    }
}

@keyframes thoughtDisappear {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) translateY(-20px);
    }
}

.hero-opt-img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3)) hue-rotate(300deg) saturate(2) brightness(1.2) contrast(1.2);
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {
    .hero-opt-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .hero-opt-img {
        width: 60px;
        height: 60px;
    }
    
    .hero-opt-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-thoughts {
        height: 70px;
        margin: var(--spacing-md) 0;
    }
    
    .thought-bubble {
        font-size: 0.9rem;
        padding: 10px 16px;
        max-width: 300px;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-opt-content {
        gap: var(--spacing-sm);
    }
    
    .hero-opt-img {
        width: 40px;
        height: 40px;
    }
    
    .hero-opt-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

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



/* Animation d'illumination du titre */
.hero-title.illuminated {
    animation: title-illumination 3s ease-in-out infinite;
}

@keyframes title-illumination {
    0% {
        text-shadow: 0 0 0 rgba(59, 130, 246, 0);
    }
    50% {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 40px rgba(59, 130, 246, 0.5), 0 0 60px rgba(59, 130, 246, 0.3);
        color: #FFFFFF;
    }
    100% {
        text-shadow: 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--bg-gradient-accent);
    color: var(--text-light);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--bg-gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin-left: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pricing-card .btn {
    margin-top: auto;
    align-self: center;
}

/* ===== BIO SLIDE ===== */
.bio-slide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 43, 64, 0.95) 0%, rgba(59, 130, 246, 0.9) 50%, rgba(139, 92, 246, 0.85) 100%);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.bio-slide.active {
    display: flex;
}

.bio-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow-y: auto;
    animation: slideIn 0.4s ease-out;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bio-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: #3B82F6;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.bio-close:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.bio-header {
    padding: var(--spacing-xl);
    text-align: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.bio-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.bio-photo {
    margin-bottom: var(--spacing-lg);
}

.bio-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue), var(--accent-purple), var(--accent-orange)) border-box;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.bio-image:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.bio-image::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue), var(--accent-purple), var(--accent-orange));
    border-radius: 50%;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

.bio-header h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.bio-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.bio-location {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

.bio-body {
    padding: var(--spacing-xl);
}

.bio-section {
    margin-bottom: var(--spacing-xl);
}

.bio-section h3 {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.bio-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 0.6s ease-out forwards;
}

.bio-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.bio-list {
    list-style: none;
    padding-left: 0;
}

.bio-list li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.bio-list li:nth-child(1) { animation-delay: 0.1s; }
.bio-list li:nth-child(2) { animation-delay: 0.2s; }
.bio-list li:nth-child(3) { animation-delay: 0.3s; }
.bio-list li:nth-child(4) { animation-delay: 0.4s; }
.bio-list li:nth-child(5) { animation-delay: 0.5s; }
.bio-list li:nth-child(6) { animation-delay: 0.6s; }
.bio-list li:nth-child(7) { animation-delay: 0.7s; }

.bio-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 1.2rem;
    animation: starPulse 2s ease-in-out infinite;
}

.bio-list li:hover {
    transform: translateX(5px);
    color: var(--primary-blue);
}

.bio-section.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(236, 72, 153, 0.1) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.bio-section.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue), var(--accent-purple), var(--accent-orange));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    animation: rainbowFlow 3s linear infinite;
}

.bio-section.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 4s infinite;
}

.bio-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-align: center;
    margin-top: var(--spacing-lg);
}

.bio-footer {
    padding: var(--spacing-xl);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100vw) scale(1);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3)); }
    100% { filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5)); }
}

@keyframes underlineGrow {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

@keyframes rainbowFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* ===== SECTIONS GÉNÉRALES ===== */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 500;
}

/* ===== BOUTON DE CONVERSION HT/TTC ===== */
.pricing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.pricing-toggle-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

.pricing-toggle-btn:hover::before {
    left: 100%;
}

.pricing-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-toggle-btn:active {
    transform: translateY(0);
}

.toggle-label {
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
}

.toggle-icon {
    font-size: 1.1rem;
    animation: moneyShine 2s ease-in-out infinite;
}

@keyframes moneyShine {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.pricing-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.current-display {
    font-weight: 600;
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.tva-info {
    font-style: italic;
    opacity: 0.8;
}

/* Mention légale TVA */
.tva-legal-notice {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tva-legal-notice p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.7;
}

.tva-legal-notice small {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Mention légale TVA dans la section pricing */
.pricing-legal-info {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm);
}

.pricing-legal-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.7;
}

.pricing-legal-info small {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Animation pour le changement de prix */
.price {
    transition: all 0.3s ease;
}

.price.changing {
    animation: priceChange 0.5s ease-in-out;
}

@keyframes priceChange {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive pour le bouton de conversion */
@media (max-width: 768px) {
    .pricing-toggle-container {
        padding: var(--spacing-sm);
        margin-bottom: var(--spacing-lg);
    }
    
    .pricing-toggle-btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.85rem;
    }
    
    .pricing-info {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 4px;
    }
    
    /* Responsive pour les icônes des cartes */
    .pricing-card:nth-child(1)::after,
    .pricing-card:nth-child(2)::after,
    .pricing-card:nth-child(3)::after {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: -8px;
        right: -8px;
    }
    
    .pricing-card .pricing-title {
        font-size: 1.3rem;
    }
    
    .pricing-card .price {
        font-size: 2rem;
    }
    
    .checkmark {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }
    
    /* Optimisations pour les icônes de services sur mobile */
    .service-icon {
        width: 100px;
        height: 100px;
    }
    
    .service-icon-img {
        width: 70px;
        height: 70px;
    }
    
    /* Alignement des cartes de prix sur mobile */
    .pricing-card {
        min-height: 500px;
    }
    
    .pricing-features li {
        min-height: 35px;
        font-size: 0.9rem;
    }
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--spacing-xxl) 0;
    background-color: var(--card-bg);
}

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

.service-card {
    background: var(--card-bg-gradient);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backface-visibility: hidden;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:nth-child(1)::before {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.service-card:nth-child(2)::before {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.service-card:nth-child(3)::before {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

.service-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: var(--shadow-xl);
}

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

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient-accent);
    border-radius: 50%;
    color: var(--text-light);
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    z-index: 1;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.7) 0%, rgba(29, 78, 216, 0.7) 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.service-icon-img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15)) brightness(1.1) contrast(1.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon-img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) brightness(1.2) contrast(1.3);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.service-card:nth-child(1):hover .service-icon {
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.6);
}

.service-card:nth-child(2):hover .service-icon {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
}

.service-card:nth-child(3):hover .service-icon {
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.6);
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.service-description {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: var(--spacing-xxl) 0;
    background-color: var(--text-light);
    animation: sectionFadeIn 1s ease-out;
}

@keyframes sectionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.pricing-card {
    background: var(--card-bg-gradient);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid var(--card-border);
    animation: cardFloat 3s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
    will-change: transform;
    backface-visibility: hidden;
    overflow: hidden;
}

/* ===== COULEURS ET THÈMES DES CARTES DE PRIX ===== */

/* Carte Starter - Thème Bleu/Orange */
.pricing-card:nth-child(1) {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e0f2fe 100%);
    border: 2px solid #3b82f6;
    position: relative;
}

.pricing-card:nth-child(1)::after {
    content: '🚀';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    animation: rocketFloat 3s ease-in-out infinite;
}

.pricing-card:nth-child(1) .pricing-title {
    color: #1e40af;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card:nth-child(1) .price {
    color: #1e40af;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}

.pricing-card:nth-child(1) .btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pricing-card:nth-child(1) .btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e3a8a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Carte Booster - Thème Vert/Violet */
.pricing-card:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #dcfce7 100%);
    border: 2px solid #10b981;
    position: relative;
}

.pricing-card:nth-child(2)::after {
    content: '⚡';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: lightningPulse 2s ease-in-out infinite;
}

.pricing-card:nth-child(2) .pricing-title {
    color: #047857;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card:nth-child(2) .price {
    color: #047857;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.1);
}

.pricing-card:nth-child(2) .btn {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.pricing-card:nth-child(2) .btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Carte Premium - Thème Doré */
.pricing-card:nth-child(3) {
    background: linear-gradient(135deg, #ffffff 0%, #fffbf0 50%, #fef3c7 100%);
    border: 2px solid #d97706;
    position: relative;
}

.pricing-card:nth-child(3)::after {
    content: '👑';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    animation: crownShine 4s ease-in-out infinite;
}

.pricing-card:nth-child(3) .pricing-title {
    color: #92400e;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card:nth-child(3) .price {
    color: #92400e;
    text-shadow: 0 2px 4px rgba(245, 158, 11, 0.1);
}

.pricing-card:nth-child(3) .btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.pricing-card:nth-child(3) .btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--bg-gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:nth-child(1)::before {
    background: var(--bg-gradient-accent);
}

.pricing-card:nth-child(2)::before {
    background: var(--bg-gradient-secondary);
}

.pricing-card:nth-child(3)::before {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-pink) 100%);
}

.pricing-card:nth-child(1) {
    animation-delay: 0s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.5s;
}

.pricing-card:nth-child(3) {
    animation-delay: 1s;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
    animation-play-state: paused;
}

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

/* ===== EFFETS HOVER AMÉLIORÉS ===== */

.pricing-card:nth-child(1):hover::after {
    animation: rocketFloat 1s ease-in-out infinite;
    transform: scale(1.1);
}

.pricing-card:nth-child(2):hover::after {
    animation: lightningPulse 0.8s ease-in-out infinite;
    transform: scale(1.1);
}

.pricing-card:nth-child(3):hover::after {
    animation: crownShine 1.5s ease-in-out infinite;
    transform: scale(1.1);
}

/* Effet de brillance sur hover */
.pricing-card .shine-effect {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.pricing-card:hover .shine-effect {
    left: 100%;
}

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

/* ===== ANIMATIONS POUR LES ICÔNES DES CARTES ===== */

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-5deg);
    }
}

@keyframes lightningPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        filter: brightness(1.3);
    }
}

@keyframes crownShine {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    25% {
        transform: scale(1.05) rotate(5deg);
        filter: brightness(1.2);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
        filter: brightness(1.4);
    }
    75% {
        transform: scale(1.05) rotate(-5deg);
        filter: brightness(1.2);
    }
}

.pricing-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.pricing-price {
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.period {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 500;
    text-align: center;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-features li {
    padding: var(--spacing-sm) 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--spacing-sm);
    min-height: 40px;
    text-align: justify;
    text-justify: inter-word;
}

.checkmark {
    font-weight: bold;
    font-size: 1.2rem;
    animation: checkmarkPulse 2s ease-in-out infinite;
    flex-shrink: 0;
    margin-top: 0.1rem;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    transition: all 0.3s ease;
}

/* Checkmarks colorés par carte */
.pricing-card:nth-child(1) .checkmark {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.pricing-card:nth-child(2) .checkmark {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pricing-card:nth-child(3) .checkmark {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.pricing-card:hover .checkmark {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background: var(--bg-gradient-primary);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-quote {
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonial-author {
    margin-bottom: var(--spacing-xl);
}

.testimonial-author strong {
    color: var(--text-light);
    font-size: 1.1rem;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.testimonial-author span {
    color: var(--text-light);
    opacity: 0.8;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--text-light);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.indicator.active {
    opacity: 1;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--primary-blue);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    transition: width 0.3s ease;
}

.form-group:focus-within label::after {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-lg);
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    border-width: 2px;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 8px 25px rgba(59, 130, 246, 0.15);
    background: #ffffff;
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ===== CONFORMITÉ RGPD ===== */

.rgpd-consent {
    margin-top: 0.75rem;
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.05);
    transition: all 0.3s ease;
}

.rgpd-consent:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.03) 100%);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
}

.commercial-consent {
    margin-top: 0.5rem;
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 185, 129, 0.15);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.05);
    transition: all 0.3s ease;
}

.commercial-consent:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-wrapper input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.checkbox-wrapper input[type="checkbox"]:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
    border-radius: 4px;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-wrapper input[type="checkbox"]:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.1);
}

.checkbox-label {
    font-size: 0.8rem;
    line-height: 1.3;
    color: var(--text-dark);
    cursor: pointer;
    margin: 0;
    padding-top: 0.1rem;
    user-select: none;
}

.rgpd-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.rgpd-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Styles pour la colonne de droite */
.contact-right-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    height: 100%;
}

/* Styles pour l'encart SNJ DIGITAL */
.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    flex: 1;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-blue) 100%);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.info-card-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.info-card-content p {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

/* Styles pour les informations de contact intégrées dans la carte */
.contact-quick-info {
    margin: var(--spacing-md) 0;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    justify-content: flex-start;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.quick-contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.quick-contact-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.quick-contact-item:hover::before {
    width: 100%;
}

.quick-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-blue);
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
}

.quick-contact-item:hover svg {
    color: var(--primary-blue);
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.quick-contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.quick-contact-item a:hover {
    color: var(--primary-blue);
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

/* ===== GOOGLE MAPS ===== */
.contact-map {
    position: relative;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: var(--spacing-lg);
    flex-grow: 1;
}

.google-map {
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
}

/* Styles pour la carte intégrée dans l'encart */
.google-map {
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
}

/* ===== CARTE DE VISITE BUSINESS ===== */
.contact-business-card {
    background: var(--card-bg-gradient);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--card-border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
}

.contact-business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
}

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

.business-card-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.business-card-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-card-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.8;
}

.business-card-body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    align-items: center;
    justify-items: start;
}

.qr-code-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 180px;
    flex-shrink: 0;
    gap: var(--spacing-sm);
}

.qr-code {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: white;
    padding: 8px;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.qr-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(37, 99, 235, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.qr-code:hover + .qr-overlay {
    opacity: 1;
}

.qr-icon {
    width: 20px;
    height: 20px;
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
}

.contact-name h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.job-title {
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    min-width: 0;
    font-size: 0.9rem;
}

.contact-info-item:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(5px);
}

.contact-info-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.contact-info-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    word-break: break-all;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
}

.contact-info-item a:hover {
    color: var(--accent-blue);
}

.vcard-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: var(--spacing-xs);
    gap: var(--spacing-xs);
}

.vcard-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    white-space: nowrap;
}

.vcard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
}

.vcard-btn svg {
    width: 14px;
    height: 14px;
}

/* ===== PAGES LÉGALES ===== */

.legal-content {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.legal-content .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.legal-intro {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
}

.legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 0.5rem;
    position: relative;
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 1.5rem 0 0.5rem 0;
    position: relative;
    padding-left: 1rem;
}

.legal-section h3::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

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

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

.legal-section li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0.5rem;
}

.legal-section li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2em;
}

.legal-section strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.legal-section a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-section a:hover {
    color: var(--primary-blue);
    border-bottom-color: var(--accent-blue);
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--text-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.legal-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive pour les pages légales */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-blue);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    color: var(--text-light);
}

.footer-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: var(--spacing-lg) !important;
    gap: var(--spacing-xl) !important;
    padding: 0 50px !important;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-logo-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

/* ===== SLOGAN DU FOOTER ===== */
.footer-tagline {
    text-align: center;
    margin-top: var(--spacing-xs);
}

.footer-tagline-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.8;
    font-style: italic;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.logo-frame.small {
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-blue);
}

.logo-frame.small .logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===== ICÔNE FACEBOOK FOOTER ===== */
.footer-facebook-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1877F2 0%, #0D6EFD 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

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

.footer-facebook-link:hover::before {
    left: 100%;
}

.footer-facebook-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
    background: linear-gradient(135deg, #0D6EFD 0%, #1877F2 100%);
}

.facebook-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.footer-facebook-link:hover .facebook-icon {
    transform: scale(1.1);
}

/* ===== BOUTON BACK TO TOP ===== */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.back-to-top-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.back-to-top-btn:hover::before {
    left: 100%;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
}

.back-to-top-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.back-to-top-btn:hover .back-to-top-arrow {
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .hero,
    .services,
    .pricing,
    .testimonials,
    .contact,
    .footer {
        width: 100%;
        overflow-x: hidden;
    }
    

    
    .hero-content {
        text-align: left;
        padding: 0 var(--spacing-md);
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .hero-content .btn {
        text-align: center;
        display: block;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-top: var(--spacing-md);
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-content h3 {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-slogan {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        align-items: start;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Correction FORCÉE pour égaliser les largeurs */
    .contact-form,
    .contact-business-card,
    .contact-info-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: var(--spacing-md) !important;
        flex: 1 1 100% !important;
    }
    
    .contact-right-column {
        gap: var(--spacing-lg);
        height: auto;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
        flex: 1 1 100% !important;
    }
    
    .contact-form {
        height: auto;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: var(--spacing-md) !important;
        flex: 1 1 100% !important;
    }
    
    .contact-business-card,
    .contact-info-card {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: var(--spacing-md) !important;
    }
    
    /* Correction pour égaliser les largeurs */
    .contact-right-column {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .contact-business-card,
    .contact-info-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: var(--spacing-md) !important;
        box-sizing: border-box !important;
    }
    
    .business-card-body {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: left;
        justify-items: center;
    }
    
    .qr-code {
        width: 100px;
        height: 100px;
    }
    
    .qr-code-section {
        width: 120px;
        height: 150px;
    }
    
    .contact-business-card {
        padding: var(--spacing-lg);
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        flex: 1 1 100% !important;
    }
    
    /* RÈGLE FINALE FORCÉE - Largeur identique pour tous */
    .contact-form,
    .contact-business-card,
    .contact-info-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        flex: 1 1 100% !important;
        display: block !important;
    }
    
    .quick-contact-item {
        justify-content: center;
    }
    
    .contact-map {
        height: 400px;
    }
    
    /* Navigation mobile - approche simplifiée */
    .logo-tagline {
        display: none;
    }
    
    .nav-toggle {
        display: flex !important;
        z-index: 1000;
        position: relative;
    }
    
    .nav-list {
        display: none !important;
    }
    
    .nav-list.active {
        display: flex !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        background-color: #003366 !important;
        flex-direction: column !important;
        padding: var(--spacing-lg) !important;
        gap: var(--spacing-md) !important;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2) !important;
        z-index: 1001 !important; /* Plus haut que le header (1000) */
        height: calc(100vh - 80px) !important;
        overflow-y: auto !important;
    }
    
    .nav-link {
        padding: var(--spacing-md) 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-tagline-subtitle {
        font-size: 0.7rem;
    }
    
    .footer-facebook-link {
        width: 32px;
        height: 32px;
    }
    
    .facebook-icon {
        width: 16px;
        height: 16px;
    }
    
    .footer-logo-content {
        gap: var(--spacing-sm);
    }
    
    .logo-section {
        gap: var(--spacing-xs);
    }
    
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        /* Optimisation pour le tactile */
        min-height: 44px; /* Taille minimale recommandée pour le tactile */
        touch-action: manipulation;
    }
    
    .back-to-top-arrow {
        width: 20px;
        height: 20px;
    }
    
    /* Optimisation pour les tablettes */
    @media (min-width: 769px) and (max-width: 1024px) {
        .back-to-top-btn {
            bottom: 25px;
            right: 25px;
            width: 48px;
            height: 48px;
        }
        
        .back-to-top-arrow {
            width: 22px;
            height: 22px;
        }
    }
    
    /* Bio slide responsive */
    .bio-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .bio-header h2 {
        font-size: 1.5rem;
    }
    
    .bio-section h3 {
        font-size: 1.2rem;
    }
    
    .bio-section p {
        font-size: 1rem;
    }
    
    .bio-image {
        width: 100px;
        height: 100px;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: var(--spacing-md);
    }
    
    /* Optimisations pour les cases à cocher et consentements sur tablette */
    .checkbox-wrapper {
        gap: 0.3rem;
        align-items: flex-start;
    }
    
    .checkbox-wrapper input[type="checkbox"] {
        width: 13px;
        height: 13px;
        margin-top: 0.05rem;
        flex-shrink: 0;
        min-width: 13px;
        min-height: 13px;
    }
    
    .checkbox-label {
        font-size: 0.75rem;
        line-height: 1.2;
        margin: 0;
        padding: 0;
    }
    
    .rgpd-consent,
    .commercial-consent {
        padding: calc(var(--spacing-md) * 0.8);
        font-size: 0.75rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .rgpd-consent .checkbox-wrapper,
    .commercial-consent .checkbox-wrapper {
        gap: 0.3rem;
    }
    
    /* Optimisation de la hauteur des inputs sur tablette */
    .form-group input,
    .form-group textarea {
        padding: calc(var(--spacing-lg) * 0.8);
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .hero {
        padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-xl);
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }
    
    .hero-content h3 {
        font-size: 1rem;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card,
    .pricing-card {
        padding: var(--spacing-lg);
    }
    
    .price {
        font-size: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }
    
    /* Optimisations pour les icônes de services sur très petits écrans */
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-img {
        width: 60px;
        height: 60px;
    }
    
    /* Alignement des cartes de prix sur très petits écrans */
    .pricing-card {
        min-height: 450px;
    }
    
    .pricing-features li {
        min-height: 30px;
        font-size: 0.85rem;
    }
    
    .pricing-card .pricing-title {
        font-size: 1.2rem;
    }
    
    .pricing-card .price {
        font-size: 1.6rem;
    }
    
    /* Optimisation pour les très petits écrans */
    .back-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        min-height: 42px;
        /* Réduction de l'ombre pour les petits écrans */
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    }
    
    .back-to-top-arrow {
        width: 18px;
        height: 18px;
    }
    
    /* Optimisation des animations pour les petits écrans */
    .back-to-top-btn:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    }
    
    .business-card-body {
        gap: var(--spacing-md);
        width: 100%;
        max-width: 100%;
    }
    
    .qr-code {
        width: 80px;
        height: 80px;
    }
    
    .qr-code-section {
        width: 80px;
        height: 110px;
    }
    
    /* Correction spécifique pour très petits écrans */
    .contact-business-card,
    .contact-info-card {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: var(--spacing-sm) !important;
    }
    
    .contact-business-card *,
    .contact-info-card * {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    /* Correction globale pour tous les éléments */
    .contact *,
    .contact-form *,
    .contact-right-column * {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    /* Correction spécifique pour les conteneurs */
    .contact,
    .contact-content,
    .contact-form,
    .contact-right-column {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding-left: var(--spacing-sm) !important;
        padding-right: var(--spacing-sm) !important;
    }
    
    /* Correction FORCÉE pour très petits écrans */
    .contact-form,
    .contact-business-card,
    .contact-info-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: var(--spacing-sm) !important;
        flex: 1 1 100% !important;
        display: block !important;
    }
    
    /* RÈGLE GLOBALE FORCÉE - Tous les éléments contact */
    .contact *,
    .contact-form *,
    .contact-business-card *,
    .contact-info-card * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-business-card {
        padding: var(--spacing-md);
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        margin: 0 !important;
    }
    
    .business-card-header h3 {
        font-size: 1.3rem;
    }
    
    .contact-name h4 {
        font-size: 1.1rem;
    }
    
    /* Correction spécifique pour éviter le débordement */
    .contact-business-card *,
    .contact-info-card * {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    /* Correction pour tous les éléments de la section contact */
    .contact * {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
}

/* ===== OPTIMISATIONS POUR MODE PAYSAGE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .back-to-top-btn {
        bottom: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        min-height: 40px;
    }
    
    .back-to-top-arrow {
        width: 16px;
        height: 16px;
    }
}

/* ===== OPTIMISATIONS POUR ÉCRANS TRÈS LARGES ===== */
@media (min-width: 1200px) {
    .back-to-top-btn {
        bottom: 40px;
        right: 40px;
        width: 55px;
        height: 55px;
    }
    
    .back-to-top-arrow {
        width: 26px;
        height: 26px;
    }
}

/* ===== OPTIMISATIONS POUR L'ACCESSIBILITÉ TACTILE ===== */
@media (hover: none) and (pointer: coarse) {
    .back-to-top-btn {
        /* Augmentation de la zone de clic pour les écrans tactiles */
        min-height: 44px;
        min-width: 44px;
    }
    
    .back-to-top-btn:hover {
        /* Désactivation des effets hover sur les écrans tactiles */
        transform: none;
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    }
    
    .back-to-top-btn:active {
        /* Effet de pression pour les écrans tactiles */
        transform: scale(0.95);
        box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
    }
}

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

.service-card,
.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===== SCROLL SMOOTH ===== */
html {
    scroll-behavior: smooth;
}

/* ===== OPTIMISATIONS DE PERFORMANCE ===== */



/* Réduction des mouvements */
.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

/* Lazy loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Optimisations GPU */
.service-card,
.pricing-card,
.btn,
.nav-link {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

/* Optimisation des images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== ACCESSIBILITÉ ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles pour l'accessibilité */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

/* ===== BANNIÈRE COOKIES ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: linear-gradient(135deg, #1A2B40 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 10000;
    transform: translateY(120%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.expanded {
    max-width: 500px;
    max-height: 80vh;
}

.cookie-content {
    padding: 20px;
}

.cookie-text h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: 'Space Grotesk', sans-serif;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-accept-all {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    flex: 1;
}

.cookie-accept-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.cookie-btn-customize {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
}

.cookie-btn-customize:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.cookie-reject {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Panneau de personnalisation */
.cookie-customize {
    display: none;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-customize.show {
    display: block;
}

.cookie-customize-content h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    font-family: 'Space Grotesk', sans-serif;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.cookie-option {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #10B981;
}

input:checked + .cookie-slider:before {
    transform: translateX(20px);
}

input:disabled + .cookie-slider {
    background-color: #6B7280;
    cursor: not-allowed;
}

.cookie-option-text {
    flex: 1;
}

.cookie-option-text strong {
    display: block;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.cookie-option-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.cookie-customize-actions {
    display: flex;
    gap: 8px;
}

.cookie-save {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    flex: 1;
}

.cookie-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.cookie-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
    
    .cookie-banner.expanded {
        max-width: none;
        max-height: 70vh;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* ===== PAGES DE SERVICES DÉDIÉES ===== */

/* Service Hero Section */
.service-hero {
    background: linear-gradient(135deg, #5A7A9A 0%, #4A6B8A 50%, #3A5C7A 100%);
    padding: calc(80px + var(--spacing-xxl)) 0 var(--spacing-xxl);
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.service-hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
    text-align: center;
}

.service-hero-icon {
    margin-bottom: var(--spacing-lg);
}

.service-hero-img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.3));
    animation: float 3s ease-in-out infinite;
}

.service-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.service-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Details Section */
.service-details {
    padding: var(--spacing-xxl) 0;
    background: var(--card-bg);
}

.service-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.service-details-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    line-height: 1.3;
}

.service-feature {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.6) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-feature h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.service-feature p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Service Details Sidebar */
.service-details-sidebar {
    position: sticky;
    top: 100px;
}

.service-card-highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--text-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

.service-card-highlight h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.service-card-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-highlight li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-card-highlight li:last-child {
    border-bottom: none;
}

.service-card-highlight li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
    margin-right: var(--spacing-xs);
}

/* Service Process Section */
.service-process {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.service-process h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    line-height: 1.3;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Service CTA Section */
.service-cta {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--text-light);
}

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

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive pour les pages de services */
@media (max-width: 768px) {
    .service-hero {
        padding: calc(80px + var(--spacing-lg)) 0 var(--spacing-lg);
        min-height: 50vh;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .service-details-sidebar {
        position: static;
        order: -1;
    }
    
    .service-details-content h2 {
        font-size: 2rem;
    }
    
    .service-feature {
        padding: var(--spacing-md);
    }
    
    .service-feature h3 {
        font-size: 1.2rem;
    }
    
    .service-feature p {
        font-size: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .process-step {
        padding: var(--spacing-lg);
    }
    
    .service-process h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .service-details-content h2 {
        font-size: 1.8rem;
    }
    
    .service-process h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ===== SECTION SÉCURITÉ ===== */

/* Security Section */
.service-security {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.service-security h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-xxl);
    line-height: 1.3;
}

.security-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.security-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.security-feature {
    background: var(--card-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.security-feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.2);
}

.security-feature h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    line-height: 1.4;
}

.security-feature p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* Security Sidebar */
.security-sidebar {
    position: sticky;
    top: 100px;
}

.security-card-highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--text-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

.security-card-highlight h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-light);
}

.security-card-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.security-card-highlight li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    line-height: 1.5;
}

.security-card-highlight li:last-child {
    border-bottom: none;
}

.security-card-highlight li::before {
    content: "🔒";
    margin-right: var(--spacing-xs);
}

/* Responsive pour la section sécurité */
@media (max-width: 768px) {
    .service-security h2 {
        font-size: 2rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .security-sidebar {
        position: static;
        order: -1;
    }
    
    .security-feature {
        padding: var(--spacing-md);
    }
    
    .security-feature h3 {
        font-size: 1.2rem;
    }
    
    .security-feature p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-security h2 {
        font-size: 1.8rem;
    }
}

/* ===== BOUTON RETOUR AUX SERVICES ===== */

.back-to-home {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-home.show {
    opacity: 1;
    visibility: visible;
}

.back-to-home-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF6B35 100%);
    color: var(--text-light);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-to-home-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.6);
    background: linear-gradient(135deg, #FF6B35 0%, var(--accent-orange) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.back-to-home-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-to-home-btn:hover svg {
    transform: translateX(-3px);
}

.back-to-home-btn span {
    white-space: nowrap;
}

/* Responsive pour le bouton retour */
@media (max-width: 768px) {
    .back-to-home {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-home-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.8rem;
    }
    
    .back-to-home-btn span {
        display: none;
    }
    
    .back-to-home-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .back-to-home {
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-home-btn {
        padding: var(--spacing-sm);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
}

/* Style spécifique pour l'image dynamism.svg */
.service-hero-icon img[src*="dynamism.svg"] {
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.5)) brightness(1.5) contrast(1.4) saturate(2) hue-rotate(200deg);
}

/* Style spécifique pour l'image growth.svg (stratégie de croissance) */
.service-hero-icon img[src*="growth.svg"] {
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.5)) brightness(1.4) contrast(1.3) saturate(1.8) hue-rotate(280deg);
}

/* Style spécifique pour l'image artisan.svg (création de site web) */
.service-hero-icon img[src*="artisan.svg"] {
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.5)) brightness(1.3) contrast(1.2) saturate(1.6) hue-rotate(180deg);
}

/* ===== PRESTATIONS À LA CARTE ===== */
.custom-services {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, #5A7A9A 0%, #4A6B8A 50%, #3A5C7A 100%);
    position: relative;
    overflow: hidden;
}

.custom-services .section-title {
    color: white;
}



.custom-services .container {
    position: relative;
    z-index: 2;
}

.custom-services-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
    grid-auto-rows: 1fr;
}

.custom-service-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Images de fond pour les cartes de prestations à la carte */
.custom-service-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%), 
                url('../images/prestationsalacarte/shootingPhotos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-service-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%), 
                url('../images/prestationsalacarte/RealisationVideos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-service-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%), 
                url('../images/prestationsalacarte/ReseauxSociaux.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-service-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%), 
                url('../images/prestationsalacarte/LandingPage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-service-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%), 
                url('../images/prestationsalacarte/DevelopementApplications.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-service-card:nth-child(6) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.75) 100%), 
                url('../images/prestationsalacarte/SolutionsInformatiques.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.custom-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
}

/* Effets de hover pour les images de fond */
.custom-service-card:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%), 
                url('../images/prestationsalacarte/shootingPhotos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-service-card:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%), 
                url('../images/prestationsalacarte/RealisationVideos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-service-card:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%), 
                url('../images/prestationsalacarte/ReseauxSociaux.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-service-card:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%), 
                url('../images/prestationsalacarte/LandingPage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-service-card:nth-child(5):hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%), 
                url('../images/prestationsalacarte/DevelopementApplications.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.custom-service-card:nth-child(6):hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.85) 100%), 
                url('../images/prestationsalacarte/SolutionsInformatiques.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.custom-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.custom-service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.custom-service-card:hover .custom-service-icon::before {
    left: 100%;
}

.custom-service-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    z-index: 1;
    position: relative;
}

.custom-service-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.custom-service-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
    flex-grow: 1;
}

.custom-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.tag {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.tag:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.custom-services-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.custom-services-cta::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"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="90" r="1.5" fill="%23ffffff" opacity="0.1"/></svg>');
    z-index: 1;
}

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

.cta-content h3 {
    color: white;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

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

.custom-services-cta .btn {
    background: white;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 12px 32px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.custom-services-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-blue);
    color: white;
}

/* Responsive pour les prestations à la carte */
@media (max-width: 768px) {
    .custom-services {
        padding: var(--spacing-xl) 0;
    }
    
    .custom-services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .custom-service-card {
        padding: var(--spacing-md);
    }
    
    .custom-service-title {
        font-size: 1.2rem;
    }
    
    .custom-service-description {
        font-size: 0.9rem;
    }
    
    .custom-services-cta {
        padding: var(--spacing-lg);
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .custom-service-card {
        padding: var(--spacing-sm);
    }
    
    .custom-service-icon {
        width: 50px;
        height: 50px;
    }
    
    .custom-service-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .custom-service-title {
        font-size: 1.1rem;
    }
    
    .custom-service-description {
        font-size: 0.85rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 3px 10px;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    /* Optimisations pour les cases à cocher et consentements sur mobile */
    .checkbox-wrapper {
        gap: 0.25rem;
        align-items: flex-start;
    }
    
    .checkbox-wrapper input[type="checkbox"] {
        width: 12px;
        height: 12px;
        margin-top: 0.02rem;
        flex-shrink: 0;
        min-width: 12px;
        min-height: 12px;
    }
    
    .checkbox-label {
        font-size: 0.7rem;
        line-height: 1.1;
        margin: 0;
        padding: 0;
    }
    
    .rgpd-consent,
    .commercial-consent {
        padding: calc(var(--spacing-sm) * 0.7);
        font-size: 0.7rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .rgpd-consent .checkbox-wrapper,
    .commercial-consent .checkbox-wrapper {
        gap: 0.25rem;
    }
}