/* TIMESTAMP: 2025-01-25-22:00 - FORCE REFRESH */
:root {
    --macro-bg: #000000;
    --macro-text-primary: #FFFFFF;
    --macro-text-secondary: #a0a0a0;
    --macro-text-highlight-blue: #8A8AFF;
    --macro-text-highlight-purple: #C68AFF;
    --macro-text-highlight-pink: #FF8AFA; 
    --macro-accent-blue: #4F4FFF; /* Bleu vif pour boutons/liens actifs */
    --macro-border-color: #222222; /* Subtil pour séparateurs */
    --macro-card-bg: #0D0D0F; /* Fond des cartes de service */
    --macro-card-border: #1A1A1D; /* Bordure des cartes */
    --macro-grid-line-color: rgba(55, 55, 75, 0.4); /* Lignes de la grille de fond */

    --font-family-main: 'Inter', sans-serif;
    --font-size-base: 16px;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

/* Reset et Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body.theme-macrocosmos {
    font-family: var(--font-family-main);
    background-color: var(--macro-bg);
    color: var(--macro-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Empêcher le scroll horizontal */
    padding-top: 100px; /* Compenser le header sticky */
}

.container {
    width: 90%;
    max-width: 1280px; /* Largeur un peu plus grande comme Macrocosmos */
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
/* Réinitialiser le padding mobile pour desktop */
body {
    padding-top: 0 !important;
}

.main-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.95), rgba(13,13,15,0.9));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 105, 180, 0.2);
    padding: 0.8rem 0; /* Réduit de 1.2rem à 0.8rem */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Compensation pour le header fixe sur les sections avec ancres */
section[id] {
    scroll-margin-top: 180px;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.6), transparent);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--macro-text-highlight-blue), var(--macro-text-highlight-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--macro-text-highlight-blue), var(--macro-text-highlight-pink));
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav ul li {
    margin: 0;
    position: relative;
}

.main-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.main-nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(138, 138, 255, 0.1));
    transition: width 0.3s ease;
    z-index: -1;
}

.main-nav ul li a:hover::before {
    width: 100%;
}

.main-nav ul li a:hover, 
.main-nav ul li a.active {
    color: var(--macro-text-primary);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
    transform: translateY(-0.5px);
}

.btn-header-action {
    background: linear-gradient(135deg, var(--macro-accent-blue), var(--macro-text-highlight-purple));
    color: var(--macro-text-primary);
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(79, 79, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-header-action::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;
}

.btn-header-action:hover::before {
    left: 100%;
}

.btn-header-action:hover {
    background: linear-gradient(135deg, var(--macro-text-highlight-blue), var(--macro-text-highlight-pink));
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-header-action:active {
    transform: translateY(0) scale(1.01);
}

/* Mobile menu toggle - caché par défaut sur desktop */
.mobile-menu-toggle {
    display: none;
}

/* Hero Section - Style Macrocosmos */
.hero-section-macro {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 4rem 0 2rem;
    background-color: var(--macro-bg);
    position: relative;
    overflow: hidden;
}

.words-banner {
    position: absolute;
    top: 25%;
    right: 5%;
    pointer-events: none;
    z-index: 3;
}

.word-container {
    position: absolute;
    font-size: 2.2rem;
    font-weight: var(--font-weight-light);
    color: var(--macro-text-highlight-blue);
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.word-container:nth-child(1) {
    top: 0;
    animation: wordFadeInOut 24s ease-in-out infinite;
}

.word-container:nth-child(2) {
    top: 100px;
    animation: wordFadeInOut 24s ease-in-out infinite 8s;
}

.word-container:nth-child(3) {
    top: 200px;
    animation: wordFadeInOut 24s ease-in-out infinite 16s;
}

@keyframes wordFadeInOut {
    0%, 4% {
        opacity: 0;
        transform: translateY(30px) translateZ(0);
        filter: blur(8px);
    }
    12%, 15% {
        opacity: 0.4;
        transform: translateY(15px) translateZ(0);
        filter: blur(4px);
    }
    23%, 27% {
        opacity: 1;
        transform: translateY(0) translateZ(0);
        filter: blur(0);
    }
    35%, 40% {
        opacity: 0.4;
        transform: translateY(-15px) translateZ(0);
        filter: blur(4px);
    }
    48%, 100% {
        opacity: 0;
        transform: translateY(-30px) translateZ(0);
        filter: blur(8px);
    }
}

.hero-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.hero-text-content {
    flex-basis: 45%;
    z-index: 2;
    margin-top: 1.5rem;
    margin-right: 2rem;
}

.hero-title, .hero-subtitle {
    max-width: 480px;
    align-self: flex-start;
}

.hero-visual-placeholder {
    flex-basis: 53%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.88) translateX(-20px) translateY(10px);
    margin-top: 0;
    position: relative;
    overflow: visible;
}

/* Carrousel Hero - Design moderne et élégant */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 500px; /* Augmenté de 400px à 500px */
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, 
        rgba(16, 16, 20, 0.95) 0%, 
        rgba(24, 24, 30, 0.9) 30%, 
        rgba(32, 32, 40, 0.85) 70%, 
        rgba(16, 16, 20, 0.95) 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.03) 0%, 
        transparent 50%, 
        rgba(138, 138, 255, 0.02) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-carousel:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(255, 105, 180, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 105, 180, 0.15);
}

.hero-carousel .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-carousel .carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.96) translateY(10px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.hero-carousel .carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    animation: slideEnterSmooth 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideEnterSmooth {
    0% {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
        filter: blur(8px);
    }
    50% {
        opacity: 0.7;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem; /* Réduit de 3rem à 2rem */
    position: relative;
    background: none;
    border-radius: 0;
    margin: 0;
    backdrop-filter: none;
    box-shadow: none;
    border: none;
    transition: all 0.4s ease;
}

.video-slide {
    padding: 0;
}

.slide-content:hover {
    transform: translateY(-1px);
}

/* Slide vidéo - Design épuré */
.video-slide {
    background: none;
    border: none;
}

.video-slide video {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1.05) contrast(1.1);
    object-fit: cover;
}

.video-slide video:hover {
    transform: scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(255, 105, 180, 0.15);
    border-color: rgba(255, 105, 180, 0.2);
}

.slide-caption {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 0.3px;
    transform: translateY(-45px);
}

/* Slide statistique - Design moderne */
.stat-slide {
    background: none;
    border: none;
}

.stat-number {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #8A8AFF 0%, 
        #C68AFF 50%, 
        #FF8AFA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: none;
    animation: statGlowSubtle 3s ease-in-out infinite alternate;
    line-height: 0.9;
    letter-spacing: -2px;
}

@keyframes statGlowSubtle {
    0% { 
        filter: drop-shadow(0 0 8px rgba(138, 138, 255, 0.2)); 
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 16px rgba(138, 138, 255, 0.4)); 
        transform: scale(1.01);
    }
}

.stat-text {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.4; /* Augmenté de 1.3 à 1.4 pour plus d'espace */
    margin-bottom: 1.5rem; /* Augmenté de 1rem à 1.5rem */
    max-width: 450px; /* Augmenté de 400px à 450px */
    letter-spacing: 0.2px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stat-detail {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    opacity: 0.9;
    font-weight: 300;
}

/* Slide avis - Design raffiné */
.review-slide {
    background: none;
    border: none;
}

.review-number {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, 
        #C68AFF 0%, 
        #FF8AFA 50%, 
        #FFB3FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.8rem;
    line-height: 0.9;
    letter-spacing: -1px;
}

.review-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 1.2rem;
    letter-spacing: 0.2px;
}

.review-stars {
    margin: 1.2rem 0;
    font-size: 1.8rem;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.review-stars .star {
    color: #FFD700;
    text-shadow: 
        0 0 8px rgba(255, 215, 0, 0.6),
        0 0 16px rgba(255, 215, 0, 0.3);
    animation: starTwinkleSubtle 2s ease-in-out infinite alternate;
    animation-delay: calc(var(--i, 0) * 0.2s);
    transition: all 0.3s ease;
}

.review-stars .star:hover {
    transform: scale(1.1);
    text-shadow: 
        0 0 12px rgba(255, 215, 0, 0.8),
        0 0 24px rgba(255, 215, 0, 0.4);
}

@keyframes starTwinkleSubtle {
    0% { 
        opacity: 0.9; 
        transform: scale(1); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1.05); 
    }
}

.review-btn {
    background: linear-gradient(135deg, 
        #C68AFF 0%, 
        #FF8AFA 50%, 
        #FFB3FF 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 4px 16px rgba(198, 138, 255, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    margin-top: 1.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 24px rgba(198, 138, 255, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, 
        #D68AFF 0%, 
        #FF9AFA 50%, 
        #FFC3FF 100%);
}

/* Navigation carrousel hero */
.hero-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.hero-carousel .carousel-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(255, 105, 180, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 105, 180, 0.3);
    opacity: 1;
}

.hero-carousel .carousel-btn.prev {
    left: 20px;
}

.hero-carousel .carousel-btn.next {
    right: 20px;
}

/* Indicateurs - Style épuré */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    position: relative;
}

.carousel-indicators .indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    opacity: 0;
}

.carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.carousel-indicators .indicator:hover::before {
    opacity: 1;
}

.carousel-indicators .indicator.active {
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.8) 0%, 
        rgba(138, 138, 255, 0.8) 100%);
    border-color: rgba(255, 105, 180, 0.6);
    transform: scale(1.3);
    box-shadow: 
        0 0 16px rgba(255, 105, 180, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-indicators .indicator.active::before {
    opacity: 1;
    background: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes statPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.9); }
}

@media (max-width: 768px) {
    .hero-carousel {
        height: 450px !important; /* Augmenté pour mobile */
        margin: 0;
        transform: none;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    /* Force l'affichage correct du 85% sur mobile */
    .stat-number {
        font-size: 3rem !important;
        margin-bottom: 1rem !important;
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .review-number {
        font-size: 2.8rem;
    }
    
    /* Force l'affichage correct du texte sur mobile */
    .stat-text {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        max-width: 350px !important;
        color: #ffffff !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
        display: block !important;
        visibility: visible !important;
        margin: 0 auto !important;
    }
    
    .review-text {
        font-size: 1.1rem;
        line-height: 1.5;
        max-width: 350px;
    }
    
    .video-slide video {
        max-width: 300px;
    }
}

.background-video {
    position: absolute;
    top: calc(20% - 35px);
    left: calc(20% - 90px);
    width: 87%;
    height: 87%;
    object-fit: cover;
    z-index: -1;
}

.background-video-caption {
    position: absolute;
    top: calc(110% - 35px);
    left: calc(20% - 90px);
    width: 87%;
    text-align: center;
    color: var(--macro-text-secondary);
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.8;
    z-index: 2;
    background-color: transparent;
    padding: 5px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--macro-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title .gradient-word {
    background: linear-gradient(90deg, var(--macro-text-highlight-blue), var(--macro-text-highlight-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 2px; /* Petit ajustement pour alignement visuel si besoin */
}

/* Supprimer l'ancien style pour .highlight-word s'il interfère et n'est plus utilisé pour ce dégradé */
.hero-title .highlight-word {
    color: var(--macro-text-highlight-purple);
}

.hero-subtitle {
    font-size: 18px;
    max-width: 550px;
    color: var(--macro-text-primary);
    font-weight: var(--font-weight-light);
    line-height: 1.7;
    margin-top: 1.5rem;
    margin-bottom: 20px;
}

.hero-activities-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 2rem;
    position: relative;
    margin-top: -120px;
}

.linking-phrase-container {
    text-align: left;
    padding: 0;
    width: 100%;
    margin-bottom: 60px;
    margin-top: 0;
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.linking-phrase {
    font-size: 20px;
    color: var(--macro-text-primary);
    line-height: 1.4;
}

.linking-phrase .highlight {
    color: #FF69B4;
    font-weight: var(--font-weight-medium);
}

.hero-activities-container .key-activity-item:first-child {
    /* Supprimé : transform: translateX(30px); */
}

.hero-activities-container .key-activity-item:last-child {
    /* Supprimé : transform: translateX(-165px); */
}

.key-activity-item {
    min-width: 380px;
    max-width: 460px;
    background: #9A9A9A;
    border: 1px solid;
    border-image: linear-gradient(165deg, rgba(255, 255, 255, 0.2), rgba(255, 138, 250, 0.3)) 1;
    border-radius: 12px;
    padding: 1.6rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 20px rgba(154, 154, 154, 0.4);
    height: fit-content;
}

.key-activity-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(154, 154, 154, 0.5);
    border-image: linear-gradient(165deg, rgba(255, 255, 255, 0.3), rgba(255, 138, 250, 0.4)) 1;
    background: #A8A8A8;
}

.key-activity-item:last-child {
    /* Supprimé : margin-left: -76px; */
}

.key-activity-title {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    width: 340px;
    line-height: 1.4;
    height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    overflow: hidden;
}

.key-activity-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1.2rem;
    max-width: 360px;
    text-align: center;
}

.subtle-link {
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin-left: 0;
    font-weight: 500;
    padding: 0.7rem 1.4rem;
    font-size: 1.1rem;
    border-radius: 6px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.25);
    /* animation: buttonPulse 2s infinite; */
}

.subtle-link:hover {
    background: linear-gradient(135deg, #FFC1CC, #FF89C4);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
    color: #FFFFFF;
    /* animation: none; */
}

.subtle-link:active {
    transform: translateY(1px);
    background: linear-gradient(135deg, #FFB6C1, #FF69B4);
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
    /* animation: none; */
}

.subtle-link::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;
}

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

/* Section Services (inspirée de "Competitive Networks") */
.competitive-section-macro {
    padding: 1.5rem 0;
    background-color: var(--macro-bg);
    position: relative;
}

.competitive-section-macro::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(var(--macro-grid-line-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--macro-grid-line-color) 1px, transparent 1px);
    background-size: 60px 60px; /* Grille plus large ici */
    opacity: 0.2;
    z-index: 0;
}

.competitive-section-macro .container {
    position: relative;
    z-index: 1;
}

.section-title-macro {
    text-align: center;
    font-size: 2.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--macro-text-primary);
    letter-spacing: -1px;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.section-title-macro.alt-color {
    color: var(--macro-text-highlight-blue); /* Pour varier les couleurs de titres */
}

.section-title-macro .highlight-word {
    color: #FF69B4;
}

.services-preview-macro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1000px;
}

.service-card-macro {
    background-color: rgba(13, 13, 15, 0.95);
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 400px;
    position: relative;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.service-card-macro .service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-macro .service-tag-macro,
.service-card-macro h3,
.service-card-macro .service-link-macro {
    position: absolute;
    z-index: 2;
    left: 1.2rem;
    right: 1.2rem;
}

.service-card-macro .service-tag-macro {
    top: 1.2rem;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.8);
}

.service-card-macro h3 {
    bottom: 33%;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--macro-text-primary);
    text-transform: uppercase;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 1.2rem;
    width: 100%;
}

.service-card-entrepreneurship h3 {
    bottom: calc(33% - 25px);
}

.service-card-custom h3 {
    bottom: calc(33% - 27px);
}

.service-card-macro .service-link-macro.blue-button {
    bottom: 1.2rem;
    background: linear-gradient(135deg, var(--macro-accent-blue), var(--macro-text-highlight-blue));
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    width: calc(100% - 2.4rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(79, 79, 255, 0.35),
                0 4px 10px rgba(79, 79, 255, 0.2);
    animation: buttonPulse 2s infinite;
}

.service-card-macro .service-link-macro.blue-button:hover {
    background: linear-gradient(135deg, var(--macro-text-highlight-blue), var(--macro-text-highlight-purple));
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(79, 79, 255, 0.45),
                0 6px 15px rgba(79, 79, 255, 0.3);
    letter-spacing: 1.5px;
}

.service-card-macro .service-link-macro.blue-button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(79, 79, 255, 0.3);
}

.service-card-macro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(13, 13, 15, 0.95), transparent);
    z-index: 1;
}

.service-card-macro:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card-macro:hover .service-card-image {
    transform: scale(1.05);
}

.service-card-macro:nth-child(even) .service-link-macro.blue-button {
    background: #FF69B4;
}

.card-icon-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 2rem;
    background: #6B7ECA;
}

@media (max-width: 1200px) {
    .services-preview-macro {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .services-preview-macro {
        grid-template-columns: 1fr;
    }
}

/* Section "Text Block" (pour "Notre Approche") - ESPACEMENT REDUIT */
.text-block-section-macro {
    padding: 3rem 0 !important;
    text-align: center;
}

.text-block-section-macro .section-title-macro {
    font-size: 2.8rem; /* Plus grand et impactant */
    line-height: 1.2;
    margin-bottom: 2rem; /* Espace pour le contenu qui suit */
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.approach-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--macro-text-primary);
    margin-bottom: 2rem;
    font-weight: var(--font-weight-light);
}

.approach-text strong {
    color: var(--macro-text-highlight-blue);
    font-weight: var(--font-weight-semibold);
}

@media (max-width: 768px) {
    .text-block-section-macro {
        padding: 4rem 0;
    }
    
    .text-block-section-macro .section-title-macro {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .approach-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .approach-text {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
}

/* Testimonials */
.testimonials-macro {
    padding: 4rem 0;
    background-color: var(--macro-bg);
    text-align: center;
}

.testimonials-macro .section-title-macro {
    margin-bottom: 3rem;
}

.testimonial-item-macro {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: var(--macro-card-bg);
    border: 1px solid var(--macro-card-border);
    border-radius: 12px;
}

.testimonial-item-macro blockquote {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--macro-text-secondary);
    font-weight: var(--font-weight-light);
    line-height: 1.7;
}

.testimonial-item-macro cite {
    font-size: 0.9rem;
    color: var(--macro-text-primary);
    font-weight: var(--font-weight-medium);
}

/* CTA Section - ESPACEMENT REDUIT */
.cta-section-macro {
    padding: 2.5rem 0;
    background-color: var(--macro-bg);
    text-align: center;
}

.cta-section-macro .hero-subtitle {
    margin-bottom: 2.5rem !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-macro {
    background: linear-gradient(90deg, var(--macro-accent-blue), var(--macro-text-highlight-purple));
    color: var(--macro-text-primary);
    padding: 0.9rem 2.5rem;
    border-radius: 8px;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    transition: opacity 0.3s ease;
}
.btn-cta-macro:hover {
    opacity: 0.85;
}

/* Footer */
.main-footer-macro {
    background-color: var(--macro-bg);
    border-top: 1px solid var(--macro-border-color);
    color: var(--macro-text-secondary);
    padding: 3rem 0 1.5rem;
}

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

.footer-column h4 {
    font-size: 0.9rem;
    color: var(--macro-text-primary);
    margin-bottom: 1.2rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a, .footer-column p a, .social-link {
    color: var(--macro-text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-column ul li a:hover, .footer-column p a:hover, .social-link:hover {
    color: var(--macro-accent-blue);
}

.footer-column p {
     font-size: 0.85rem;
     line-height: 1.6;
}

.footer-logo {
    font-size: 1.5rem; 
    margin-bottom: 0.5rem; 
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--macro-border-color);
    font-size: 0.8rem;
    color: var(--macro-text-secondary);
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .main-header .container {
        flex-wrap: wrap;
        position: relative;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        background-color: rgba(10,10,10,0.95); /* Fond pour le menu mobile ouvert */
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--macro-border-color);
        position: absolute;
        top: 100%; /* Se positionne sous le header */
        left: 0;
        padding: 1rem 0;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 0;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 0.8rem 1.5rem;
        text-align: center;
        border-bottom: 1px solid var(--macro-border-color);
    }
    
    .main-nav ul li:last-child a {
        border-bottom: none;
    }

    .header-actions {
        order: 0;
        margin-left: 0;
        margin-right: 0.5rem;
    }
    
    .btn-header-action {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .logo-container {
        flex-grow: 1;
        text-align: left;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none; 
        border: none; 
        padding: 0.5rem;
        cursor: pointer;
        margin-left: 0.5rem;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle span {
        display: block; 
        width: 22px; 
        height: 2px; 
        background-color: var(--macro-text-primary); 
        margin: 5px 0;
        transition: all 0.3s ease-in-out;
    }
    
    /* Animation Burger to X */
    .mobile-menu-toggle.active span:nth-child(1) { 
        transform: translateY(7px) rotate(45deg); 
    }
    .mobile-menu-toggle.active span:nth-child(2) { 
        opacity: 0; 
    }
    .mobile-menu-toggle.active span:nth-child(3) { 
        transform: translateY(-7px) rotate(-45deg); 
    }
    
    /* Empêcher le scroll quand le menu est ouvert */
    body.menu-open {
        overflow: hidden;
    }

    .hero-main-content {
        flex-direction: column;
        align-items: center;
        margin-bottom: 60px;
    }
    .hero-text-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    .hero-visual-placeholder {
        width: 100%;
        min-height: 300px;
        transform: scale(1);
        margin-top: 0;
    }
    .hero-activities-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0;
        margin-top: 0;
    }

    .hero-activities-container .key-activity-item:first-child,
    .hero-activities-container .key-activity-item:last-child {
        transform: none;
    }

    .section-title-macro {
        font-size: 1.9rem;
        margin-bottom: 3rem;
    }

    .text-block-section-macro {
        padding: 3rem 0;
    }
    .text-block-section-macro .section-title-macro {
      font-size: 2.2rem;
    }

    .cta-section-macro {
        padding: 3.5rem 0;
    }

    .hero-subtitle, .linking-phrase {
        font-size: 20px;
    }

    .hero-text-content .key-activity-item {
        margin-left: 0;
    }

    .hero-title, .hero-subtitle {
        align-self: center;
    }

    .hero-visual-content .key-activity-item {
        position: static;
        margin-top: 30px;
    }

    .key-activity-item:last-child {
        margin-left: 0;
    }

    .linking-phrase-container {
        text-align: center;
        margin-bottom: 60px;
    }

    .key-activity-title {
        font-size: 1.05rem;
        width: 100%;
    }

    .key-activity-item {
        min-width: 300px;
        max-width: 100%;
    }

    .service-card-macro h3 {
        font-size: 0.78rem;
        min-height: auto;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }

    .service-link-macro.blue-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Results Section - ESPACEMENT REDUIT */
.results-section-macro {
    padding: 2.5rem 0 !important;
    background: linear-gradient(165deg, rgba(42, 51, 86, 0.1), rgba(75, 94, 170, 0.1));
}

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

.results-grid > div:nth-child(-n+3),
.results-grid > div:nth-child(n+4):nth-child(-n+6) {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    height: 220px;
    display: grid;
    grid-template-rows: auto 40px auto;
    align-items: center;
    justify-items: center;
}

.results-grid > div:nth-child(-n+3) .result-number,
.results-grid > div:nth-child(n+4):nth-child(-n+6) .result-number {
    font-size: 2.8rem !important;
    color: #FF69B4 !important;
    margin: 0;
    line-height: 1;
    font-weight: 600;
}

.results-grid > div:nth-child(-n+3) .result-description,
.results-grid > div:nth-child(n+4):nth-child(-n+6) .result-description {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin: 0;
    line-height: 1.2;
    width: 100%;
}

.results-grid > div:nth-child(-n+3) .result-button,
.results-grid > div:nth-child(n+4):nth-child(-n+6) .result-button {
    width: 280px;
    height: 45px;
    font-size: 0.9rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF69B4;
    color: #FFFFFF;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.result-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.4rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transform: none;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 0 rgba(255, 105, 180, 0.2);
}

.result-card .result-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: #FF69B4;
    margin-bottom: 0.3rem;
}

.result-card .result-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.result-card .result-button,
.result-card.superprof-card .result-button {
    margin-top: auto;
    align-self: center;
}

.superprof-card .result-icon {
    font-size: 1.6rem;
    margin: 0.2rem 0 0.5rem;
    animation: starPulse 2s infinite;
}

@media (max-width: 768px) {
    .result-card {
        min-height: 180px;
        padding: 1.2rem;
    }
}

.testimonial-result {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.testimonial-result blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--macro-text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-result cite {
    color: var(--macro-text-secondary);
    font-size: 1rem;
}

@media (max-width: 992px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.result-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--macro-accent-blue), var(--macro-text-highlight-blue));
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(79, 79, 255, 0.35),
                0 4px 10px rgba(79, 79, 255, 0.2);
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 180px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.result-button:hover {
    background: linear-gradient(135deg, var(--macro-text-highlight-blue), var(--macro-text-highlight-purple));
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(79, 79, 255, 0.45),
                0 6px 15px rgba(79, 79, 255, 0.3);
    letter-spacing: 1.5px;
}

.result-button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 105, 180, 0.35),
                   0 4px 10px rgba(255, 105, 180, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 30px rgba(255, 105, 180, 0.45),
                   0 6px 15px rgba(255, 105, 180, 0.3);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 105, 180, 0.35),
                   0 4px 10px rgba(255, 105, 180, 0.2);
        transform: scale(1);
    }
}

.result-button {
    animation: buttonPulse 2s infinite;
}

/* Style spécifique pour les boutons dans les cartes de résultats */
.result-card .result-button {
    background: linear-gradient(135deg, #FF69B4, #FF8AFA);
    margin-top: 1.5rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.result-card.main-result {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transform: scale(1.05);
}

.result-card.main-result:hover {
    transform: scale(1.05);
}

/* Styles pour la modale */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background: #FFFFFF;
    margin: 3% auto;
    padding: 2.5rem;
    width: 90%;
    max-width: 800px;
    border-radius: 16px;
    z-index: 1001;
    max-height: 90vh;
    overflow-y: auto;
}

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

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: #FF69B4;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.close-modal:hover {
    color: #FF89C4;
    transform: scale(1.1);
}

.modal h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: var(--font-weight-bold);
}

.modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.modal-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    color: #FF69B4;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

.modal-details {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-details p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-cta {
    display: inline-block;
    background: #FF69B4;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
}

.modal-cta:hover {
    background: #FF89C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.25);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
    }

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

    .modal h3 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .modal-details p {
        font-size: 1rem;
    }
}

/* Styles pour la distribution des résultats */
.results-distribution {
    margin: 2rem 0;
    padding: 1rem;
    background: #FFFFFF;
    border-radius: 12px;
}

.piechart-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    max-width: 100%;
    position: relative;
}

.piechart {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    animation: chartAppear 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes chartAppear {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-20deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

.piechart path {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.piechart path:hover {
    transform: scale(1.03) translateX(5px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15)) brightness(1.1);
}

.piechart-legend {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.5rem;
    max-width: 100%;
    animation: legendAppear 0.6s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05),
                -3px -3px 6px rgba(255, 255, 255, 0.8);
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.legend-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legend-item:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.08),
                -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.legend-item:hover::before {
    opacity: 1;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.legend-color::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent);
}

.legend-label {
    flex: 1;
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.legend-value {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    margin-left: 0.3rem;
    flex-shrink: 0;
    opacity: 0.9;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

/* Couleurs avec dégradés pour les segments */
.segment-mcgill { fill: url(#gradient-mcgill); }
.segment-autres { fill: url(#gradient-autres); }
.segment-epfl { fill: url(#gradient-epfl); }
.segment-hec { fill: url(#gradient-hec); }
.segment-stanford { fill: url(#gradient-stanford); }
.segment-upenn { fill: url(#gradient-upenn); }
.segment-sydney { fill: url(#gradient-sydney); }
.segment-ucl { fill: url(#gradient-ucl); }
.segment-ginette { fill: url(#gradient-ginette); }

/* Couleurs pour les carrés de légende avec dégradés */
.mcgill .legend-color { background: linear-gradient(145deg, #FF69B4, #FF89C4); }
.autres .legend-color { background: linear-gradient(145deg, #4B5EAA, #6B7ECA); }
.epfl .legend-color { background: linear-gradient(145deg, #FF8AFA, #FFAAFA); }
.hec .legend-color { background: linear-gradient(145deg, #8A8AFF, #AAAAFF); }
.stanford .legend-color { background: linear-gradient(145deg, #8B0000, #DC143C); }
.upenn .legend-color { background: linear-gradient(145deg, #011F5B, #990000); }
.sydney .legend-color { background: linear-gradient(145deg, #C68AFF, #E6AAFF); }
.ucl .legend-color { background: linear-gradient(145deg, #4B5EAA, #6B7ECA); }
.ginette .legend-color { background: linear-gradient(145deg, #FF8AFA, #FFAAFA); }

@media (max-width: 768px) {
    .piechart-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .piechart {
        width: 250px;
        height: 250px;
    }

    .piechart-legend {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .legend-item {
        padding: 0.5rem;
    }

    .legend-label {
        font-size: 0.85rem;
    }

    .legend-value {
        font-size: 0.85rem;
    }
}

/* Styles pour la section résultats entrepreneurship */
.entrepreneurship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.entrepreneurship-grid .result-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    height: 280px;
}

.entrepreneurship-grid .result-card .content-wrapper {
    position: absolute;
    top: 57%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 2rem;
}

.entrepreneurship-grid .result-card.projects .text-content {
    margin-bottom: 1.5rem;
}

.entrepreneurship-grid .result-card.projects .result-button {
    display: block;
    width: 80%;
    margin: 0 auto;
    background: linear-gradient(135deg, #FF69B4, #FF8AFA);
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.result-number {
    font-size: 2.8rem;
    font-weight: var(--font-weight-bold);
    color: #FF69B4;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.2);
}

.result-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.4;
}

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

.achievement-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 2rem 5rem;
    text-align: center;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 280px;
}

.achievement-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.achievement-list li {
    margin-bottom: 1.2rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.4;
}

.achievement-card .result-button {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    width: calc(100% - 4rem);
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.achievement-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.achievement-header {
    margin-bottom: 1.2rem;
}

.achievement-tag {
    background: linear-gradient(135deg, #FF69B4, #FF8AFA);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.achievement-list li {
    margin-bottom: 1.2rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: left;
}

.achievement-list li br + * {
    margin-left: 1.8rem;
}

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

@media (max-width: 768px) {
    .achievement-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .achievement-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.highlight-testimonial {
    background-color: var(--macro-card-bg);
    border: 1px solid var(--macro-card-border);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2.5rem;
    text-align: center;
}

.highlight-testimonial blockquote {
    font-size: 1.3rem;
    color: #333;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.highlight-testimonial blockquote::before,
.highlight-testimonial blockquote::after {
    content: '"';
    font-size: 4rem;
    color: #FF69B4;
    opacity: 0.2;
    position: absolute;
    line-height: 1;
}

.highlight-testimonial blockquote::before {
    left: -2rem;
    top: -1rem;
}

.highlight-testimonial blockquote::after {
    right: -2rem;
    bottom: -2rem;
}

.highlight-testimonial cite {
    font-size: 1.1rem;
    color: #666;
    font-weight: var(--font-weight-medium);
}

@media (max-width: 768px) {
    .entrepreneurship-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0;
    }

    .result-number {
        font-size: 2.4rem;
    }

    .result-description {
        font-size: 1rem;
    }

    .achievement-card h3 {
        font-size: 1.2rem;
    }

    .achievement-list li {
        font-size: 0.95rem;
    }

    .highlight-testimonial {
        padding: 2rem;
        margin-top: 3rem;
    }

    .highlight-testimonial blockquote {
        font-size: 1.1rem;
    }

    .highlight-testimonial cite {
        font-size: 1rem;
    }
}

.superprof-card {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
}

.superprof-card .result-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    animation: starPulse 2s infinite;
}

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

.superprof-card .result-number {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #FF69B4, #FF8AFA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.superprof-card .result-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .superprof-card .result-number {
        font-size: 2rem;
    }
    
    .superprof-card .reviews-count {
        font-size: 1.6rem;
    }
}

.results-grid > div:nth-child(-n+3) {
    display: flex;
    flex-direction: column;
    height: 200px;
    padding: 1.4rem;
}

.results-grid > div:nth-child(-n+3) .result-number {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.results-grid > div:nth-child(-n+3) .result-description {
    font-size: 1rem;
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.results-grid > div:nth-child(-n+3) .result-button {
    width: 240px;
    font-size: 0.9rem;
    padding: 0.8rem 0;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FF69B4, #FF8AFA);
    border-radius: 12px;
}

/* Supprimer les styles spécifiques qui pourraient interférer */
.result-card.superprof-card .result-number,
.result-card.superprof-card .result-description,
.result-card.superprof-card .result-button {
    font-size: inherit;
    margin: inherit;
}

.video-modal .modal-content {
    max-width: 90vw;
    width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2% auto;
}

.video-modal .video-container {
    position: relative;
    width: 50%;
    padding-top: 28.125%; /* Ratio 16:9 pour 50% de largeur */
    margin: 0 auto;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.video-modal .modal-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.video-modal .modal-details blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2rem;
}

.video-modal .modal-details cite {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-top: 1rem;
}

.video-modal .close-modal {
    color: #FF69B4;
    background: rgba(255, 255, 255, 0.9);
}

.video-modal .close-modal:hover {
    color: #FF89C4;
}

@media (max-width: 768px) {
    .video-modal .video-container {
        width: 100%;
        padding-top: 56.25%;
    }

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

.superprof-card .result-button {
    background: linear-gradient(135deg, #FF69B4, #FF8AFA);
}

.superprof-card .result-button:hover {
    background: linear-gradient(135deg, #FF89C4, #FFA0FA);
}

.superprof-card .rating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.superprof-card .rating-container .result-number {
    margin-bottom: 0;
}

.superprof-card .rating-container .result-icon {
    margin: 0;
    font-size: 1.4rem;
    transform: translateY(-1px);
}

.superprof-card .reviews-count {
    margin-top: 0;
}

.achievement-card .result-button {
    margin-top: 1.5rem;
    width: auto;
    display: inline-block;
}

@media (max-width: 768px) {
    .achievement-card .result-button {
        font-size: 0.9rem;
        padding: 8px 16px;
        min-width: 160px;
    }
}

.testimonials-container {
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.written-testimonials,
.audio-testimonials {
    margin: 1rem 0;
}

.written-testimonials h4,
.audio-testimonials h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.testimonial-card {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card blockquote {
    color: #555;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

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

.audio-card {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.audio-card p {
    color: #333;
    font-weight: 500;
    margin-bottom: 1rem;
}

.audio-card audio {
    width: 100%;
    margin-top: 0.5rem;
}

/* Style personnalisé pour les contrôles audio */
.audio-card audio::-webkit-media-controls-panel {
    background: linear-gradient(145deg, #f8f8f8, #ffffff);
}

@media (max-width: 768px) {
    .testimonial-card,
    .audio-card {
        padding: 1.2rem;
    }

    .written-testimonials h4,
    .audio-testimonials h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .testimonial-card blockquote {
        font-size: 0.95rem;
    }
}

.result-card.projects .result-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--macro-accent-blue), var(--macro-text-highlight-blue));
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(79, 79, 255, 0.35),
                0 4px 10px rgba(79, 79, 255, 0.2);
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 80%;
    text-align: center;
}

.result-card.projects .result-button:hover {
    background: linear-gradient(135deg, var(--macro-text-highlight-blue), var(--macro-text-highlight-purple));
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(79, 79, 255, 0.45),
                0 6px 15px rgba(79, 79, 255, 0.3);
}

/* Portfolio Modal Styles */
.portfolio-modal {
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 2% auto;
}

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

.portfolio-item {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.portfolio-media {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.portfolio-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.creator-info {
    color: #FF69B4;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.project-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Carousel Styles for Image Projects */
.image-carousel {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: pointer;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: #FF69B4;
}

/* Image Modal for Full View */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.image-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.image-modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-modal {
        padding: 1rem;
        width: 98%;
        max-height: 95vh;
    }
    
    .portfolio-info {
        padding: 1rem;
    }
    
    .portfolio-info h4 {
        font-size: 1.1rem;
    }
    
    .creator-info {
        font-size: 0.9rem;
    }
    
    .project-desc {
        font-size: 0.85rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Superprof Modal Styles */
.superprof-modal-content {
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin: 2% auto;
    color: #333 !important; /* Force la couleur de texte */
}

.superprof-modal-content * {
    color: inherit;
}

.superprof-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.superprof-link-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF69B4, #FF8AFA);
    color: #FFFFFF !important;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.superprof-link-button:hover {
    background: linear-gradient(135deg, #FF89C4, #FFA0FA);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
    color: #FFFFFF !important;
}

.superprof-reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-height: 50vh;
    overflow-y: auto;
    padding: 1rem 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding-right: 0.5rem;
}

/* Personnalisation de la scrollbar pour webkit */
.superprof-reviews-container::-webkit-scrollbar {
    width: 8px;
}

.superprof-reviews-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.superprof-reviews-container::-webkit-scrollbar-thumb {
    background: #FF69B4;
    border-radius: 4px;
}

.superprof-reviews-container::-webkit-scrollbar-thumb:hover {
    background: #FF89C4;
}

.review-item {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-initial {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF69B4, #FF8AFA);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.superprof-modal-content .reviewer-name {
    font-weight: 600;
    color: #333 !important;
    flex-grow: 1;
}

.superprof-modal-content .rating {
    color: #FFD700 !important;
    font-size: 1rem;
}

.superprof-modal-content .review-text {
    color: #555 !important;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.superprof-modal-content h3 {
    color: #333 !important;
}

.greg-response {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(145deg, #f0f0f0, #e8e8e8);
    border-radius: 8px;
    border-left: 4px solid #FF69B4;
}

.greg-response strong {
    color: #FF69B4 !important;
    font-size: 0.9rem;
}

.greg-response {
    color: #555 !important;
}

@media (max-width: 1200px) {
    .testimonials-with-photos {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .testimonials-grid {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 600px;
    }
    
    .photo-testimonial {
        max-width: 100%;
    }
    
    .superprof-box {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .testimonials-with-photos {
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .testimonials-grid {
        gap: 0.8rem;
    }

    .photo-testimonial {
        padding: 0.8rem;
    }
    
    .photo-testimonial .reviewer-photo {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }

    .photo-testimonial .review-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .photo-testimonial .reviewer-name {
        font-size: 0.85rem;
    }
    
    .photo-testimonial .rating {
        font-size: 0.85rem;
    }
    
    .superprof-box {
        padding: 1.5rem;
        width: 95% !important; /* Élargir comme les témoignages */
        max-width: 500px !important; /* Largeur maximale pour élargir */
        margin: 0 auto !important; /* Centrage horizontal */
    }
    
    .superprof-number {
        font-size: 2.5rem;
    }
    
    .superprof-label {
        font-size: 1rem;
    }
    
    .superprof-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
}

.greg-response {
    color: #555 !important;
}

@media (max-width: 768px) {
    .superprof-reviews-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-height: 50vh;
    }
    
    .review-item {
        padding: 1rem;
    }
    
    .superprof-modal-content .review-text {
        font-size: 0.9rem !important;
    }
    
    .superprof-modal-content {
        padding: 1.5rem;
        width: 98%;
        max-height: 95vh;
    }
}

/* Styles pour les témoignages avec photos */
.testimonials-with-photos {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin: 1.5rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.testimonials-grid {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex: 1;
}

.photo-testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 250px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.photo-testimonial:hover {
    border-color: rgba(255, 105, 180, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.2);
}

.photo-testimonial .reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(255, 105, 180, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.6rem;
}

.photo-testimonial .testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.photo-testimonial .rating {
    display: flex;
    gap: 1px;
    font-size: 0.8rem;
    justify-content: center;
    margin-bottom: 0.3rem;
}

.photo-testimonial .rating .star {
    color: #FFD700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: starTwinkle 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

.photo-testimonial .rating .star:nth-child(1) { --i: 0; }
.photo-testimonial .rating .star:nth-child(2) { --i: 1; }
.photo-testimonial .rating .star:nth-child(3) { --i: 2; }
.photo-testimonial .rating .star:nth-child(4) { --i: 3; }
.photo-testimonial .rating .star:nth-child(5) { --i: 4; }

.photo-testimonial .review-text {
    font-size: 0.75rem;
    line-height: 1.3;
    color: var(--macro-text-primary);
    font-style: italic;
    margin: 0;
    text-align: center;
}

.photo-testimonial .reviewer-name {
    font-weight: 600;
    color: #FF69B4;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

/* Superprof Box */
.superprof-box {
    flex-shrink: 0;
    width: 280px;
    min-height: 260px; /* Hauteur augmentée pour correspondre aux témoignages */
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(138, 138, 255, 0.1));
    border: 2px solid rgba(255, 105, 180, 0.4);
    border-radius: 12px; /* Même border-radius que les témoignages */
    padding: 1rem; /* Même padding que les témoignages */
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.superprof-box:hover {
    transform: translateY(-2px); /* Même effet que les témoignages */
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 105, 180, 0.6);
}

.superprof-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem; /* Réduit légèrement l'espacement */
    width: 100%;
}

.superprof-number {
    font-size: 2.5rem; /* Légèrement réduit pour s'adapter à la hauteur */
    font-weight: 700;
    color: #FF69B4;
    text-shadow: 0 2px 4px rgba(255, 105, 180, 0.3);
    line-height: 1;
}

.superprof-label {
    font-size: 1rem; /* Légèrement réduit */
    color: var(--macro-text-primary);
    font-weight: 500;
    line-height: 1.2;
}

.superprof-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    font-size: 1rem; /* Légèrement réduit */
}

.superprof-stars .star {
    color: #FFD700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: starPulse 2s infinite;
    animation-delay: calc(var(--i) * 0.3s);
}

.superprof-stars .star:nth-child(1) { --i: 0; }
.superprof-stars .star:nth-child(2) { --i: 1; }
.superprof-stars .star:nth-child(3) { --i: 2; }
.superprof-stars .star:nth-child(4) { --i: 3; }
.superprof-stars .star:nth-child(5) { --i: 4; }

.superprof-btn {
    background: linear-gradient(135deg, #FF69B4, #FF8AFA);
    color: #FFFFFF;
    border: none;
    padding: 0.6rem 1.2rem; /* Réduit le padding */
    border-radius: 25px;
    font-size: 0.85rem; /* Légèrement réduit */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
    width: 100%;
}

.superprof-btn:hover {
    background: linear-gradient(135deg, #FF89C4, #FFA0FA);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

/* Mise en évidence de la garantie résultat */
.guarantee-text {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15), rgba(138, 138, 255, 0.15));
    border: 2px solid rgba(255, 105, 180, 0.4);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    margin: 1rem auto;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.15);
    position: relative;
    overflow: hidden;
}

.guarantee-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.8), transparent);
}

.guarantee-text p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--macro-text-primary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.guarantee-text strong {
    color: #FF69B4;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Formulaire de contact */
.contact-form {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: rgba(13, 13, 15, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    color: var(--macro-text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 8px;
    color: var(--macro-text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF69B4;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        margin: 1.5rem auto 0;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
}

/* Styles pour la section Tarifs */
.tarif-content {
    background: rgba(13, 13, 15, 0.95);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tarif-content h3 {
    color: var(--macro-text-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tarif-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF69B4;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.tarif-price span {
    font-size: 1rem;
    color: var(--macro-text-secondary);
    font-weight: 400;
}

.tarif-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.tarif-features li {
    color: var(--macro-text-primary);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: relative;
    line-height: 1.4;
}

.tarif-features li:before {
    content: "✓";
    color: #FF69B4;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Styles pour la section FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(13, 13, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 105, 180, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    color: var(--macro-text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex-grow: 1;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #FF69B4;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--macro-text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .tarif-content {
        padding: 1.5rem;
    }
    
    .tarif-price {
        font-size: 2rem;
    }
    
    .tarif-features li {
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .carousel-piechart-background {
        opacity: 0.06;
    }
    
    .carousel-piechart-container {
        width: 322px;
        height: 322px;
        transform: scale(1.5);
    }
}

/* Style pour l'écriture cursive */
.logo .cursive,
.footer-logo .cursive {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 700 !important;
    font-size: 1.2em !important;
    font-style: italic !important;
    transform: translateY(-2px) !important;
    display: inline-block !important;
    margin-left: 4px !important;
    background: linear-gradient(135deg, var(--macro-text-highlight-purple), var(--macro-text-highlight-pink)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

/* ========================================
   OPTIMISATIONS MOBILE COMPLÈTES
   ======================================== */

/* Tablettes (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-main-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-visual-placeholder {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-preview-macro {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Smartphones (max-width: 768px) */
@media (max-width: 768px) {
    /* === HEADER MOBILE === */
    .main-header {
        padding: 1rem 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(42, 51, 86, 0.95);
        backdrop-filter: blur(10px);
        height: 80px;
        display: flex;
        align-items: center;
    }
    
    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
        z-index: 1001;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        background-color: rgba(10,10,10,0.98);
        backdrop-filter: blur(15px);
        border-top: 1px solid var(--macro-border-color);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 1rem 0;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav ul li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 1rem 1.5rem;
        text-align: center;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .main-nav ul li a:hover {
        background: rgba(255, 105, 180, 0.1);
        color: #FF69B4;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
        z-index: 1001;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--macro-text-primary);
        margin: 3px 0;
        transition: all 0.3s ease-in-out;
        border-radius: 2px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* === HERO SECTION MOBILE === */
    body {
        padding-top: 90px; /* Compenser le header fixe mobile */
    }
    
    .hero-section-macro {
        padding: 2rem 0 3rem;
        min-height: auto;
    }
    
    .hero-main-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text-content {
        order: 1;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle, .linking-phrase {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .linking-phrase-container {
        margin-bottom: 2rem;
    }
    
    .hero-visual-placeholder {
        order: 2;
        width: 100%;
        max-width: 350px;
        min-height: 300px;
        margin: 0 auto;
    }
    
    /* === CARROUSEL MOBILE === */
    .hero-carousel {
        height: 300px;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .slide-content {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .video-slide video {
        max-width: 280px;
        height: auto;
        border-radius: 10px;
    }
    
    .slide-caption {
        font-size: 0.9rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .stat-number {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
    
    .review-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-text, .review-text {
        font-size: 1rem;
        line-height: 1.4;
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 50%;
        background: rgba(255, 105, 180, 0.9);
        color: white;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .carousel-btn:hover {
        background: rgba(255, 105, 180, 1);
        transform: scale(1.1);
    }
    
    .carousel-indicators {
        bottom: -30px;
        gap: 8px;
    }
    
    .carousel-indicators .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .carousel-indicators .indicator.active {
        background: #FF69B4;
        transform: scale(1.2);
    }
    
    /* === SERVICES MOBILE === */
    .services-preview-macro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card-macro {
        padding: 2rem 1.5rem;
        text-align: center;
        border-radius: 15px;
    }
    
    .service-card-macro h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .service-link-macro.blue-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        min-height: 44px;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    
    /* === RÉSULTATS MOBILE === */
    .results-section-macro {
        padding: 3rem 0;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .result-card {
        padding: 2rem 1.5rem;
        text-align: center;
        border-radius: 15px;
        min-height: auto;
    }
    
    .result-number {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .result-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .result-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }
    
    /* === TÉMOIGNAGES MOBILE === */
    .testimonials-with-photos {
        padding: 2rem 0;
        margin: 2rem 0;
    }
    
    .testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: 1.2rem; /* Réduit de 1.5rem à 1.2rem */
        padding: 0 0.5rem; /* Réduit pour plus d'espace */
        max-width: 100%;
        align-items: center; /* Centre les témoignages */
    }
    
    .photo-testimonial {
        display: flex;
        align-items: center; /* Centrage vertical */
        gap: 1rem;
        padding: 1.2rem; /* Réduit de 1.5rem à 1.2rem */
        text-align: left;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 105, 180, 0.2);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        width: 95%; /* Élargi de 100% à 95% pour centrage */
        max-width: 500px; /* Largeur maximale pour élargir */
        margin: 0 auto; /* Centrage horizontal */
        box-sizing: border-box;
        overflow: hidden;
        min-height: auto; /* Réduction de la hauteur */
    }
    
    .photo-testimonial .reviewer-photo {
        width: 55px; /* Réduit de 60px à 55px */
        height: 55px;
        border-radius: 50%;
        border: 2px solid rgba(255, 105, 180, 0.3);
        object-fit: cover;
        flex-shrink: 0;
    }
    
    .photo-testimonial .testimonial-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.6rem; /* Réduit de 0.8rem à 0.6rem */
        justify-content: center; /* Centre le contenu verticalement */
    }
    
    .photo-testimonial .rating {
        display: flex;
        gap: 0.2rem;
        margin-bottom: 0.5rem;
    }
    
    .photo-testimonial .rating .star {
        font-size: 1rem;
        color: #FFD700;
    }
    
    .photo-testimonial .review-text {
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.8rem;
        text-align: left;
    }
    
    .photo-testimonial .reviewer-name {
        font-size: 1rem;
        font-weight: 600;
        color: #FF69B4;
        margin-top: auto;
    }
    
    /* === MODALES MOBILE === */
    .modal {
        padding: 1rem;
    }
    
    .modal-content {
        width: 95%;
        max-width: none;
        margin: 2rem auto;
        padding: 2rem 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 15px;
    }
    
    .close-modal {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .video-modal .video-container {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .video-container video {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    /* === FORMULAIRES MOBILE === */
    .contact-form {
        padding: 0 1rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Évite le zoom sur iOS */
        padding: 1rem;
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .btn-cta-macro {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 50px;
        border-radius: 25px;
    }
    
    /* === FOOTER MOBILE === */
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    /* === SECTIONS GÉNÉRALES MOBILE === */
    .section-title-macro {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .text-block-section-macro {
        padding: 3rem 0;
    }
    
    .approach-text {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
    
    /* === OPTIMISATIONS TACTILES === */
    .btn, .result-button, .service-link-macro, 
    .carousel-btn, .close-modal, .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    a, button, .clickable {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 105, 180, 0.2);
    }
    
    /* === PERFORMANCE MOBILE === */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .hero-carousel, .service-card-macro, .result-card {
        will-change: transform;
        backface-visibility: hidden;
    }
    
    /* === ANIMATIONS RÉDUITES === */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Très petits écrans (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle, .linking-phrase {
        font-size: 1rem;
    }
    
    .hero-carousel {
        height: 280px;
    }
    
    .video-slide video {
        max-width: 250px;
    }
    
    .stat-number, .review-number {
        font-size: 2.5rem;
    }
    
    .service-card-macro,
    .result-card {
        padding: 1.5rem 1rem;
    }
    
    .photo-testimonial {
        padding: 1.2rem 0.8rem;
        gap: 0.8rem;
    }
    
    .photo-testimonial .reviewer-photo {
        width: 50px;
        height: 50px;
    }
    
    .photo-testimonial .review-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .photo-testimonial .reviewer-name {
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        gap: 1.2rem;
        padding: 0 0.8rem;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
        margin: 1rem auto;
    }
    
    .container {
        padding: 0 0.8rem;
    }
}

/* Très petits écrans (max-width: 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-carousel {
        height: 250px;
    }
    
    .video-slide video {
        max-width: 220px;
    }
    
    .stat-number, .review-number {
        font-size: 2rem;
    }
    
    .service-card-macro,
    .result-card {
        padding: 1.2rem 0.8rem;
    }
    
    .photo-testimonial {
        padding: 1rem 0.6rem;
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
    }
    
    .photo-testimonial .reviewer-photo {
        width: 45px;
        height: 45px;
        align-self: center;
    }
    
    .photo-testimonial .testimonial-content {
        text-align: center;
    }
    
    .photo-testimonial .rating {
        justify-content: center;
    }
    
    .photo-testimonial .review-text {
        font-size: 0.8rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .photo-testimonial .reviewer-name {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .testimonials-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
}

/* Mode paysage mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section-macro {
        padding: 1.5rem 0;
    }
    
    .hero-carousel {
        height: 250px;
    }
    
    .modal-content {
        max-height: 85vh;
    }
    
    .video-container video {
        max-height: 200px;
    }
}
