/**
 * =============================================================================
 * STYLES-HOME.CSS — Pages type « accueil » (hero bleu, cartes, popups)
 * =============================================================================
 *
 * S’applique aux pages avec .page-home, .page-projets, .page-technologies,
 * .page-recherche, .page-sepsis, .page-drepanocytose. Hero bleu pleine page,
 * variantes d’accent par page, styles des tags/cartes, popup membre (À propos).
 *
 * MODIFIER EN TANT QUE NON-DEVELOPPEUR :
 * - Hero (titre, sous-titre, fond) : .hero-section, .hero-title, .hero-subtitle.
 * - Cartes « À propos » : .about-section-card, .about-card-title.
 * - Popup équipe : .member-popup, .popup-content, .popup-photo, .popup-info-side.
 * - Accent par page : .page-projets, .page-technologies, etc. (variables --page-accent).
 * =============================================================================
 */

/* ---------- Variables communes pour toutes les pages ---------- */
.page-home,
.page-projets,
.page-technologies,
.page-recherche,
.page-sepsis,
.page-drepanocytose {
    --home-bg: #ffffff;
    --home-text: #1a1a1a;
    --home-text-light: #666666;
    --home-border: #e5e5e5;
    --home-accent: #2c5f8d;
    --home-primary: #2c5f8d;
    --home-primary-dark: #1e4263;
    --home-primary-light: #3d7bb3;
    --home-secondary: #4a90a4;
    --home-red: #c41e3a;
    --home-red-dark: #9a1629;
    --page-accent: #2c5f8d;
    --page-accent-red: #c41e3a;
    --page-border: rgba(44, 95, 141, 0.2);
    --page-border-red: rgba(196, 30, 58, 0.2);
    --page-bg-alt: var(--background-blue);
    --page-bg-alt-red: var(--background-red);
}

/* Variante pour la page Projets - Accent bleu */
.page-projets {
    --page-accent: #3d7bb3;
    --page-border: rgba(61, 123, 179, 0.2);
    --home-primary: #3d7bb3;
    --home-primary-dark: #2c5f8d;
}

/* Variante pour la page Technologies - Accent bleu foncé */
.page-technologies {
    --page-accent: #1e4263;
    --page-border: rgba(30, 66, 99, 0.2);
    --home-primary: #1e4263;
    --home-primary-dark: #152d47;
}

/* Variante pour la page Recherche - Accent bleu */
.page-recherche {
    --page-accent: #2c5f8d;
    --page-border: rgba(44, 95, 141, 0.2);
    --home-primary: #2c5f8d;
    --home-primary-dark: #1e4263;
}

/* Variante pour la page Sepsis - Accent bleu avec touches rouges */
.page-sepsis {
    --page-accent: #2c5f8d;
    --page-border: rgba(44, 95, 141, 0.2);
    --home-primary: #2c5f8d;
    --home-primary-dark: #1e4263;
}

/* Variante pour la page Drépanocytose - Accent bleu avec touches rouges */
.page-drepanocytose {
    --page-accent: #2c5f8d;
    --page-border: rgba(44, 95, 141, 0.2);
    --home-primary: #2c5f8d;
    --home-primary-dark: #1e4263;
}

.page-home body {
    background: var(--home-bg);
    color: var(--home-text);
}

/* Hero Section - Page bleue (accueil, technologies, recherche, sepsis, drépanocytose) */
.page-home .hero-section,
.page-projets .hero-section,
.page-technologies .hero-section,
.page-recherche .hero-section,
.page-sepsis .hero-section,
.page-drepanocytose .hero-section {
    background: var(--gradient-blue);
    padding: 8rem 2rem 6rem;
    text-align: center;
    color: white;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: calc(80px + 8rem);
    box-shadow: 0 8px 32px rgba(44, 95, 141, 0.2);
}

.page-home .hero-section::before,
.page-projets .hero-section::before,
.page-technologies .hero-section::before,
.page-recherche .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-home .hero-section::after,
.page-projets .hero-section::after,
.page-technologies .hero-section::after,
.page-recherche .hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

@media (max-width: 768px) {
    .page-home .hero-section,
    .page-technologies .hero-section,
    .page-recherche .hero-section,
    .page-sepsis .hero-section,
    .page-drepanocytose .hero-section {
        padding: calc(70px + 6rem) 1.5rem 4rem;
    }
}

@media (max-width: 480px) {
    .page-home .hero-section,
    .page-technologies .hero-section,
    .page-recherche .hero-section,
    .page-sepsis .hero-section,
    .page-drepanocytose .hero-section {
        padding: calc(60px + 5rem) 1rem 3rem;
    }
}


.page-home .hero-section .container,
.page-technologies .hero-section .container,
.page-recherche .hero-section .container,
.page-sepsis .hero-section .container,
.page-drepanocytose .hero-section .container {
    position: relative;
    z-index: 1;
}

.page-home .hero-logo-container {
    margin-bottom: 2rem;
}

.page-home .hero-title,
.page-sepsis .hero-section .hero-title,
.page-drepanocytose .hero-section .hero-title {
    font-size: 6rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.page-home .hero-subtitle,
.page-sepsis .hero-section .hero-subtitle,
.page-drepanocytose .hero-section .hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.page-home .hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

.page-home .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Section Présentation */
.page-home .presentation-section {
    background: var(--home-bg);
    padding: 5rem 2rem;
}

.page-home .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--page-accent, var(--home-primary));
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 0;
    letter-spacing: -0.5px;
}

.page-home .section-title::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    width: 60px;
    height: 4px;
    background: var(--page-accent, var(--home-primary));
    border-radius: 2px;
}

.page-home .section-title::after {
    display: none;
}

.page-home .presentation-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-home .presentation-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--home-text);
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Section Projets */
.page-home .projects-section {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 5rem 2rem;
}

.page-home .projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.page-home .project-card {
    background: var(--home-bg);
    border: 2px solid var(--home-border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

/* Effets hover supprimés pour les cartes non-cliquables */

.page-home .project-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.page-home .icon-project-drepanocytose,
.page-home .icon-project-sepsis {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 3px solid var(--home-border);
    transition: all 0.3s ease;
}

/* Effets hover supprimés pour les icônes dans les cartes non-cliquables */

.page-home .project-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--home-accent);
    margin-bottom: 1rem;
}

.page-home .project-card p {
    font-size: 1rem;
    color: var(--home-text-light);
    line-height: 1.6;
}

/* Navigation - Styles supprimés, utilisation des styles universels de styles.css */


/* Styles supplémentaires pour les pages home */
.page-home .tech-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-home .about-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 1300px) {
    .page-home .about-content {
        max-width: 1650px !important;
    }
}

.page-home .tech-content h2,
.page-home .about-content h2 {
    font-size: 2rem;
    color: var(--home-accent);
    margin: 2rem 0 1rem;
}

.page-home .about-section-title {
    font-size: 2.2rem;
    color: var(--home-accent);
    margin: 3rem 0 2rem;
    font-weight: 700;
    text-align: left;
    position: relative;
    padding-bottom: 1rem;
}

.page-home .about-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--home-primary) 0%, transparent 100%);
    border-radius: 8px;
}

.page-home .tech-content h3,
.page-home .about-content h3 {
    font-size: 1.5rem;
    color: var(--home-accent);
    margin: 1.5rem 0 1rem;
}

.page-home .tech-content p,
.page-home .about-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--home-text);
    margin-bottom: 1.5rem;
}

.page-home .tech-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-home .tech-content li,
.page-home .about-content li {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--home-text);
    margin-bottom: 0.5rem;
}

/* Layout horizontal - cartes empilées verticalement */
.page-home .process-steps-horizontal {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 4rem 0;
}

.page-home .process-step-horizontal {
    background: var(--home-bg);
    border: 3px solid var(--home-border);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .step-header-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px;
    flex-shrink: 0;
    gap: 1rem;
}

.page-home .step-header-horizontal .step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .step-header-horizontal h4 {
    font-size: 1.8rem;
    color: var(--home-accent);
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.page-home .step-images-horizontal {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.page-home .process-step h4 {
    font-size: 1.8rem;
    color: var(--home-accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-home .process-step p.step-description {
    color: var(--home-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    min-height: 50px;
}

/* Styles pour la page Technologies */
.page-home .tech-section-title {
    font-size: 2.2rem;
    color: var(--home-accent);
    margin: 2rem 0 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.page-home .tech-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--home-primary) 0%, transparent 100%);
    border-radius: 8px;
}

.page-home .tech-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--home-text);
    margin-bottom: 2rem;
    font-weight: 500;
    text-align: center;
}

.page-home .innovation-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 2px solid var(--home-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-home .innovation-box h3 {
    font-size: 1.8rem;
    color: var(--home-accent);
    margin-bottom: 1rem;
}

.page-home .innovation-box p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--home-text);
}

.page-home .process-title {
    font-size: 2rem;
    color: var(--home-accent);
    margin: 3rem 0 2rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.page-home .process-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--home-primary) 50%, transparent 100%);
    border-radius: 8px;
}

.page-home .process-image-horizontal {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 2px solid var(--home-border);
    background: #ffffff;
    padding: 1.5rem;
    filter: contrast(1.15) brightness(1.08);
    display: block;
    box-sizing: border-box;
    overflow: hidden;
}

/* Animation hover supprimée pour les éléments non-cliquables */

/* Video wrapper avec overlay play */
.page-home .video-wrapper {
    position: relative;
    display: block;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    background: #000;
    box-sizing: border-box;
    margin: 0 auto;
}

.page-home .video-wrapper .process-image-horizontal {
    border: none;
    padding: 1.5rem;
    max-height: 400px;
}

.page-home .process-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    display: block;
    background: #000;
    box-sizing: border-box;
    overflow: hidden;
}

.page-home .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    pointer-events: none;
}

.page-home .video-wrapper.playing .play-overlay {
    opacity: 0;
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--home-accent);
    transform: scale(0.9);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .video-wrapper.playing .play-button {
    display: none;
}

/* Grille des innovations */
.page-home .innovations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.page-home .innovation-card {
    background: var(--home-bg);
    border: 2px solid var(--home-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .innovation-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.page-home .innovation-card h3 {
    font-size: 1.5rem;
    color: var(--home-accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-home .innovation-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--home-text);
    text-align: left;
}

/* Section Publications */
.page-home .publications-section {
    background: #f8f8f8;
}

.page-home .publications-list {
    max-width: 1000px;
    margin: 0 auto;
}

.page-home .publication-item {
    background: var(--home-bg);
    border: 2px solid var(--home-border);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.page-home .publication-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--home-accent);
    border-radius: 15px 0 0 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .publication-item:hover::before {
    opacity: 1;
}

.page-home .publication-item.patent-item {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-color: var(--home-accent);
}

.page-home .publication-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--home-accent);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.page-home .publication-authors {
    font-size: 1rem;
    color: var(--home-text);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.page-home .publication-journal {
    font-size: 0.95rem;
    color: var(--home-text-light);
    margin-bottom: 0.5rem;
}

.page-home .publication-link {
    font-size: 0.9rem;
    margin-top: 1rem;
}

.page-home .publication-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--page-accent, var(--home-primary)) 0%, var(--home-primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.25),
                0 2px 6px rgba(44, 95, 141, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.page-home .publication-link-btn::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;
}

.page-home .publication-link-btn:hover::before {
    left: 100%;
}

.page-home .publication-link-btn:hover {
    background: linear-gradient(135deg, var(--home-primary-dark) 0%, var(--page-accent, var(--home-primary)) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.35),
                0 3px 10px rgba(44, 95, 141, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
}

@media (max-width: 968px) {
    .page-home .process-step-horizontal {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }
    
    .page-home .step-header-horizontal {
        min-width: 100%;
        width: 100%;
    }
    
    .page-home .step-images-horizontal {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-home .process-steps-horizontal {
        gap: 2rem;
    }
    
    .page-home .process-step-horizontal {
        padding: 2rem 1.5rem;
    }
    
    .page-home .process-image-horizontal {
        max-height: 300px;
    }
    
    .page-home .innovations-grid {
        grid-template-columns: 1fr;
    }
    
    .page-home .tech-intro {
        font-size: 1.1rem;
    }
}

.page-home .project-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--home-border);
}

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

.page-home .stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--home-accent);
    margin-bottom: 0.5rem;
}

.page-home .stat-item span {
    font-size: 0.9rem;
    color: var(--home-text-light);
}

/* Section Statistiques */
.page-home .stats-section {
    background: var(--home-bg);
    padding: 5rem 2rem;
}

.page-home .stat-card {
    border-top-color: var(--home-primary);
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.page-home .stat-value {
    color: var(--home-primary);
}

/* Section Innovation */
.page-home .innovation-section {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 5rem 2rem;
}

.page-home .innovation-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-home .innovation-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--home-text);
    text-align: center;
}

/* Section Besoin clinique */
.page-home .need-section {
    background: var(--home-bg);
    padding: 5rem 2rem;
}

.page-home .need-box {
    border-left-color: var(--home-primary);
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.page-home .need-box h3 {
    color: var(--home-primary);
}

.page-home .quote-box {
    border-left-color: var(--home-secondary);
}

.page-home .quote-author {
    color: var(--home-primary);
}

/* Section Projet phare (Sepsis) */
.page-home .featured-project-section {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}



.page-home .featured-project-card {
    display: block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(44, 95, 141, 0.02) 100%);
    border: 3px solid var(--home-primary);
    border-radius: 24px;
    padding: 4rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page-home .featured-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--home-primary) 0%, var(--home-secondary) 50%, var(--home-accent-green) 100%);
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .featured-project-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.page-home .featured-project-icon .icon-project-sepsis {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 4px solid var(--home-primary);
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.2);
}

/* Effets hover supprimés pour la carte featured-project non-cliquable */

.page-home .featured-project-title h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--home-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-home .featured-project-subtitle {
    font-size: 1.3rem;
    color: var(--home-text);
    line-height: 1.6;
    font-weight: 400;
}

.page-home .featured-project-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(44, 95, 141, 0.1);
    align-items: stretch;
}

.page-home .featured-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem .2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 0;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    min-height: 120px;
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .featured-stat-icon {
    flex-shrink: 0;
}

.page-home .featured-stat-icon .icon-people,
.page-home .featured-stat-icon .icon-healthcare,
.page-home .featured-stat-icon .icon-money,
.page-home .featured-stat-icon .icon-growth {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--home-primary) 0%, var(--home-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
    flex-shrink: 0;
}

.page-home .featured-stat-content {
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.page-home .featured-stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--home-primary);
    margin-bottom: 0.3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: nowrap;
    line-height: 1.2;
    overflow: visible;
    text-overflow: ellipsis;
}

.page-home .featured-stat-label {
    font-size: 0.8rem;
    color: var(--home-text-light);
    line-height: 1.4;
    white-space: nowrap;
    overflow: visible;
    text-overflow: ellipsis;
}

.page-home .featured-project-description {
    margin: 2.5rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 20px;
    border-left: 4px solid var(--home-primary);
}

.page-home .featured-project-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--home-text);
    margin: 0;
}

.page-home .featured-project-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(44, 95, 141, 0.1);
}

.page-home .featured-project-cta span {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--home-primary);
    transition: all 0.3s ease;
}

/* Animation hover supprimée pour les éléments non-cliquables */

/* Section Solution et Innovation */
.page-home .solution-section {
    padding: 5rem 2rem;
}

.page-home .solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-home .solution-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--home-primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.page-home .tags-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-home .tag-item {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--home-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Effet hover supprimé pour les éléments non-cliquables */

.page-home .tag-item-main {
    grid-column: 1;
}

.page-home .tag-image {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    object-fit: contain;
}

.page-home .tag-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-home .tag-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--page-accent, var(--home-primary));
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.page-home .tag-text,
.page-home .tag-text-first {
    font-size: 1rem;
    color: var(--home-text);
    line-height: 1.6;
    margin: 0;
}

.page-home .tag-text-first {
    font-size: 1.05rem;
}

.page-home .tag-text-first em {
    font-style: italic;
    color: var(--home-primary);
}

.page-home .tag-text-first strong {
    font-weight: 700;
    color: var(--home-primary);
    font-size: 1.1rem;
}

/* Section Projets Cards */
.page-home .projects-cards-section {
    padding: 5rem 2rem;
}

.page-home .projects-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-home .project-card-modern {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--home-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 250px;
    justify-content: center;
}

/* Effet hover supprimé pour les éléments non-cliquables */

.page-home .project-card-sepsis {
    border-top: 4px solid var(--page-accent, var(--home-primary));
}

.page-home .project-card-drepanocytose {
    border-top: 4px solid var(--page-accent, var(--home-primary));
}

.page-home .project-card-recherche {
    border-top: 4px solid var(--page-accent, var(--home-primary));
}

.page-home .project-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--page-accent, var(--home-primary));
    margin-bottom: 2rem;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.page-home .project-card-drepanocytose .project-card-title {
    color: var(--home-primary);
}

.page-home .project-card-recherche .project-card-title {
    color: var(--home-primary);
}

.page-home .project-card-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 250px;
}

.page-home .btn-en-savoir-plus,
.page-home .btn-pour-soignants {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-home .btn-en-savoir-plus svg,
.page-home .btn-pour-soignants svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.page-home .btn-en-savoir-plus {
    background: linear-gradient(135deg, var(--page-accent, var(--home-primary)) 0%, var(--home-primary-dark) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.3), 
                0 2px 8px rgba(44, 95, 141, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.page-home .btn-en-savoir-plus::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;
}

.page-home .btn-en-savoir-plus:hover::before {
    left: 100%;
}

.page-home .btn-en-savoir-plus:hover {
    background: linear-gradient(135deg, var(--home-primary-dark) 0%, var(--page-accent, var(--home-primary)) 100%);
    box-shadow: 0 8px 28px rgba(44, 95, 141, 0.4), 
                0 4px 12px rgba(44, 95, 141, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
}

.page-home .btn-en-savoir-plus:hover svg {
    transform: translateX(5px);
}

.page-home .btn-pour-soignants {
    background: rgba(255, 255, 255, 0.9);
    color: var(--page-accent, var(--home-primary));
    border: 2px solid var(--page-accent, var(--home-primary));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.page-home .btn-pour-soignants::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--page-accent, var(--home-primary));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.page-home .btn-pour-soignants span,
.page-home .btn-pour-soignants svg {
    position: relative;
    z-index: 1;
}

.page-home .btn-pour-soignants:hover {
    background: var(--page-accent, var(--home-primary));
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(44, 95, 141, 0.35),
                0 4px 12px rgba(44, 95, 141, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--home-primary-dark);
}

.page-home .btn-pour-soignants:hover::before {
    width: 300px;
    height: 300px;
}

.page-home .btn-pour-soignants:hover svg {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.page-home .project-card-drepanocytose .btn-en-savoir-plus {
    background: var(--home-primary);
    box-shadow: var(--shadow);
}

.page-home .project-card-drepanocytose .btn-en-savoir-plus:hover {
    background: var(--home-primary-dark);
    box-shadow: var(--shadow-medium);
}

.page-home .project-card-drepanocytose .btn-pour-soignants {
    color: var(--home-primary);
    border-color: var(--home-primary);
}

.page-home .project-card-drepanocytose .btn-pour-soignants:hover {
    background: var(--home-primary);
    color: white;
}

.page-home .project-card-recherche .btn-en-savoir-plus {
    background: var(--home-primary);
    box-shadow: var(--shadow);
}

.page-home .project-card-recherche .btn-en-savoir-plus:hover {
    background: linear-gradient(135deg, var(--home-primary-dark) 0%, var(--page-accent, var(--home-primary)) 100%);
    box-shadow: 0 8px 28px rgba(44, 95, 141, 0.4), 
                0 4px 12px rgba(44, 95, 141, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Footer B3 Logo */
.page-home .footer-logo-container {
    text-align: center;
    margin-bottom: 1rem;
}

.page-home .footer-logo-b3 {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.page-home .footer-logo-b3:hover {
    opacity: 1;
}

/* Section Globules rouges */
.page-home .rbc-section {
    background: var(--home-bg);
    padding: 5rem 2rem;
}

/* Section Contenu avec images - Design moderne */
.page-home .content-images-section {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 6rem 2rem;
}

.page-home .images-video-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
    align-items: stretch;
}

.page-home .images-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    height: 100%;
}

.page-home .images-column .design-block {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-home .video-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    height: 100%;
}

.page-home .video-column {
    position: sticky;
    top: 120px;
    align-self: center;
    display: flex;
    align-items: center;
    height: fit-content;
}

/* Blocs design modernes */
.page-home .design-block {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(44, 95, 141, 0.1);
    border: 2px solid rgba(44, 95, 141, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .block-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(44, 95, 141, 0.1);
}

.page-home .block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--home-primary);
    margin: 0;
    line-height: 1.4;
}

.page-home .block-content {
    margin-bottom: 2rem;
}

.page-home .block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--home-text);
    margin-bottom: 1.5rem;
}

.page-home .block-text:last-child {
    margin-bottom: 0;
}

.page-home .block-image-wrapper,
.page-home .block-video-wrapper {
    width: 100%;
    margin-top: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 95, 141, 0.15);
    transition: transform 0.3s ease;
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .block-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.page-home .block-video-wrapper {
    background: #000;
}

.page-home .block-video-wrapper .home-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.page-home .wide-image-wrapper {
    width: 100%;
    max-width: 100%;
}

.page-home .wide-image {
    width: 100%;
    height: auto;
}

.page-home .content-block {
    margin-bottom: 0;
}

.page-home .content-block:last-child {
    margin-bottom: 0;
}

.page-home .rbc-content {
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
}

.page-home .rbc-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--home-text);
    margin-bottom: 2rem;
    font-weight: 400;
}

.page-home .rbc-text-pathology {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--home-text-light);
    font-weight: 400;
}

/* Section Vidéo */
.page-home .video-section {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 5rem 2rem;
}

.page-home .content-images-section .video-container {
    margin-top: 2rem;
}

.page-home .video-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 95, 141, 0.2);
    background: #000;
}

.page-home .home-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.page-home .content-images-section .video-container {
    max-width: 100%;
}

/* Section Innovation fTT */
.page-home .innovation-ftt-section {
    background: var(--home-bg);
    padding: 5rem 2rem;
}

.page-home .content-images-section .innovation-ftt-content {
    margin-top: 2rem;
}

.page-home .innovation-ftt-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.page-home .innovation-ftt-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--home-text);
    margin-bottom: 2rem;
    font-weight: 400;
}

.page-home .ftt-image-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-home .ftt-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(44, 95, 141, 0.2);
    transition: transform 0.3s ease;
}

/* Animation hover supprimée pour les éléments non-cliquables */

/* Section Parcours d'impact */
.page-home .impact-section {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 5rem 2rem;
}

.page-home .content-images-section .impact-image-container {
    margin-top: 2rem;
}

.page-home .impact-image-container {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-home .impact-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(44, 95, 141, 0.2);
    transition: transform 0.3s ease;
}

/* Animation hover supprimée pour les éléments non-cliquables */

/* Section Autres projets */
.page-home .other-projects-section {
    background: linear-gradient(135deg, rgba(44, 95, 141, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.page-home .other-projects-inline {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(44, 95, 141, 0.1);
}

.page-home .other-projects-text {
    font-size: 1.5rem;
    color: var(--home-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.page-home .btn-projets {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 3rem;
    background: linear-gradient(135deg, var(--page-accent, var(--home-primary)) 0%, var(--home-primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.3),
                0 2px 8px rgba(44, 95, 141, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: none;
}

.page-home .btn-projets::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;
}

.page-home .btn-projets:hover::before {
    left: 100%;
}

.page-home .btn-projets:hover {
    background: linear-gradient(135deg, var(--home-primary-dark) 0%, var(--page-accent, var(--home-primary)) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(44, 95, 141, 0.4),
                0 4px 12px rgba(44, 95, 141, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
}

.page-home .contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.page-home .contact-form-container,
.page-home .contact-info {
    background: var(--home-bg);
    border: 2px solid var(--home-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.page-home .contact-form-container h2,
.page-home .contact-info h2 {
    font-size: 1.8rem;
    color: var(--home-accent);
    margin-bottom: 2rem;
}

.page-home .form-group input,
.page-home .form-group textarea {
    border-color: var(--home-border);
    background: #f8f8f8;
}

.page-home .form-group input:focus,
.page-home .form-group textarea:focus {
    border-color: var(--home-accent);
    background: var(--home-bg);
}

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

.page-home .submit-btn:hover {
    background: var(--home-primary-dark);
}

.page-home .privacy-notice {
    font-size: 0.75rem;
    color: var(--home-text-light);
    margin-top: 1rem;
    line-height: 1.5;
    text-align: center;
    opacity: 0.8;
}

.page-home .info-icon .icon-email,
.page-home .info-icon .icon-phone,
.page-home .info-icon .icon-location {
    background: var(--home-primary);
}

.page-home .info-content h4 {
    color: var(--home-accent);
}

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
    .page-home .tags-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .page-home .tag-item-main {
        grid-column: 1 / -1;
    }
    
    .page-home .projects-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .page-home .featured-project-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .page-home .featured-stat-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .page-home .featured-stat-value {
        font-size: 1.6rem;
    }
    
    .page-home .featured-project-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .page-home .process-step-horizontal {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .page-home .step-images-horizontal {
        width: 100%;
    }
    
    .page-home .process-image-horizontal,
    .page-home .process-video {
        max-height: 350px;
    }
    
    .page-home .institutional-partners {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - Page Home
   ============================================ */

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
    .page-home .process-step-horizontal {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .page-home .step-images-horizontal {
        width: 100%;
    }
    
    .page-home .process-image-horizontal,
    .page-home .process-video {
        max-height: 350px;
    }
}

/* Mobile landscape and small tablets (480px - 768px) */
@media (max-width: 768px) {
    .page-home .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
        padding: 0.75rem 1.5rem;
    }
    
    
    .page-home .tags-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    /* Page d'accueil : tags en 1 colonne (même taille que tag-item-main) en mode téléphone */
    .page-home .solution-section .tags-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-home .tag-item-main {
        grid-column: 1 / -1;
    }
    
    .page-home .projects-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-home .solution-title {
        font-size: 1.6rem;
    }
    
    .page-home .hero-section {
        padding: 6rem 1.5rem 4rem;
    }

    .page-home .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-home .process-steps-horizontal {
        gap: 2rem;
    }
    
    .page-home .process-step-horizontal {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .page-home .step-header-horizontal {
        width: 100%;
    }
    
    .page-home .step-images-horizontal {
        width: 100%;
    }

    .page-home .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-home .rbc-text {
        font-size: 1.1rem;
    }
    
    .page-home .rbc-text-pathology {
        font-size: 1rem;
    }
    
    .page-home .innovation-ftt-text {
        font-size: 1.1rem;
    }
    
    .page-home .ftt-image,
    .page-home .impact-image {
        max-width: 100%;
        width: 100%;
    }
    
    .page-home .images-video-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-home .video-column {
        position: static;
        width: 100%;
    }
    
    .page-home .images-column {
        gap: 2rem;
        width: 100%;
    }
    
    .page-home .design-block {
        padding: 2rem 1.5rem;
    }
    
    .page-home .block-title {
        font-size: 1.5rem;
    }
    
    .page-home .block-text {
        font-size: 1rem;
    }
    
    .page-home .featured-project-card {
        padding: 3rem 2rem;
    }
    
    .page-home .featured-project-header {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .page-home .featured-project-icon .icon-project-sepsis {
        width: 120px;
        height: 120px;
        font-size: 4.5rem;
    }
    
    .page-home .featured-project-title h3 {
        font-size: 2.5rem;
    }
    
    .page-home .featured-project-subtitle {
        font-size: 1.3rem;
    }
    
    .page-home .featured-project-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 2rem;
        margin: 3rem 0;
    }
    
    .page-home .featured-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .page-home .featured-stat-icon .icon-people,
    .page-home .featured-stat-icon .icon-healthcare,
    .page-home .featured-stat-icon .icon-money,
    .page-home .featured-stat-icon .icon-growth {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .page-home .featured-stat-value {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .page-home .featured-stat-label {
        font-size: 1rem;
    }
    
    .page-home .featured-project-description {
        padding: 2rem;
        margin: 2.5rem 0;
    }
    
    .page-home .featured-project-description p {
        font-size: 1.2rem;
    }
    
    .page-home .featured-project-cta span {
        font-size: 1.2rem;
    }
    
    .page-home .featured-project-icon .icon-project-sepsis {
        width: 100px;
        height: 100px;
        font-size: 3.5rem;
    }
    
    .page-home .process-image-horizontal,
    .page-home .process-video {
        max-height: 300px;
        padding: 1rem;
    }
    
    .page-home .timeline-image {
        max-width: 100%;
    }
}

/* Mobile portrait (max-width: 480px) */
@media (max-width: 480px) {
    .page-home .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        padding: 0.5rem 1rem;
    }
    
    /* Page d'accueil : tags même taille que tag-item-main en mode téléphone */
    .page-home .solution-section .tags-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-home .solution-title {
        font-size: 1.3rem;
    }
    
    .page-home .tag-title {
        font-size: 1rem;
    }
    
    .page-home .tag-text,
    .page-home .tag-text-first {
        font-size: 0.9rem;
    }
    
    .page-home .project-card-title {
        font-size: 1.5rem;
    }
    
    .page-home .hero-section {
        padding: 5rem 1rem 3rem;
    }
    
    .page-home .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .page-home .section-title {
        font-size: 1.75rem;
    }
    
    .page-home .process-step-horizontal {
        padding: 1.5rem;
    }
    
    .page-home .process-image-horizontal,
    .page-home .process-video {
        max-height: 250px;
        padding: 0.75rem;
    }
    
    .page-home .featured-project-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .page-home .featured-project-header {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .page-home .featured-project-icon .icon-project-sepsis {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
    
    .page-home .featured-project-title h3 {
        font-size: 1.8rem;
    }
    
    .page-home .featured-project-subtitle {
        font-size: 1.1rem;
    }
    
    .page-home .featured-project-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
    
    .page-home .featured-stat-item {
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .page-home .featured-stat-icon .icon-people,
    .page-home .featured-stat-icon .icon-healthcare,
    .page-home .featured-stat-icon .icon-money,
    .page-home .featured-stat-icon .icon-growth {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .page-home .featured-stat-value {
        font-size: 1.3rem;
    }
    
    .page-home .featured-stat-label {
        font-size: 0.75rem;
    }
    
    .page-home .featured-project-description {
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
    
    .page-home .featured-project-description p {
        font-size: 1rem;
    }
    
    .page-home .other-projects-inline {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .page-home .other-projects-text {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .page-home .btn-projets {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .page-home .design-block {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .page-home .block-title {
        font-size: 1.3rem;
    }
    
    .page-home .block-text {
        font-size: 0.95rem;
    }
    
    .page-home .block-image-wrapper,
    .page-home .block-video-wrapper {
        margin-top: 1.5rem;
    }
    
    .page-home .home-video {
        max-height: 250px;
    }
    
    .page-home .rbc-section {
        padding: 3rem 1rem;
    }
    
    .page-home .rbc-text,
    .page-home .rbc-text-pathology {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .page-home .content-images-section {
        padding: 4rem 1rem;
    }
    
    .page-home .images-video-layout {
        gap: 1.5rem;
    }
    
    .page-home .other-projects-section {
        padding: 3rem 1rem;
    }
}

/* Timeline */
.page-home .timeline-container {
    margin: 3rem 0;
    text-align: center;
}

.page-home .timeline-image {
    width: 100%;
    max-width: 1200px !important;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
    object-fit: contain;
    overflow: hidden;
}

/* Animation hover supprimée pour les éléments non-cliquables */

/* Section Équipe */
.page-home .team-section {
    margin-top: 4rem;
}

/* Section Partenaires & soutiens */
.page-home .partners-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid var(--home-border);
}

/* Partenaires institutionnels */
.page-home .institutional-partners {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.page-home .partner-logo-item {
    text-align: center;
    transition: transform 0.3s ease;
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .partner-logo {
    max-width: 250px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: grayscale(20%) brightness(0.95);
    transition: all 0.3s ease;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* Animation hover supprimée pour les éléments non-cliquables */

.page-home .partner-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--home-text-light);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .page-home .institutional-partners {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }
    
    .page-home .partner-logo {
        max-width: 200px;
        max-height: 120px;
    }
}

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

/* Grille équipe : ligne 1 = Annie, Aurélien, Catherine, Emmanuèle, Anne ; ligne 2 = Antoine, Montassar */
.page-home .team-section .team-grid {
    grid-template-columns: repeat(5, 1fr);
}
.page-home .team-section .team-grid .team-member:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
}
.page-home .team-section .team-grid .team-member:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}
.page-home .team-section .team-grid .team-member:nth-child(3) {
    grid-row: 1;
    grid-column: 3;
}
.page-home .team-section .team-grid .team-member:nth-child(4) {
    grid-row: 1;
    grid-column: 4;
}
.page-home .team-section .team-grid .team-member:nth-child(5) {
    grid-row: 1;
    grid-column: 5;
}
.page-home .team-section .team-grid .team-member:nth-child(6) {
    grid-row: 2;
    grid-column: 2;
}
.page-home .team-section .team-grid .team-member:nth-child(7) {
    grid-row: 2;
    grid-column: 4;
}

/* Indication cliquable pour les membres de l'équipe */
.page-home .team-section {
    position: relative;
}

.page-home .team-click-hint {
    text-align: center;
    font-size: 0.95rem;
    color: var(--home-primary);
    font-weight: 500;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.page-home .team-member {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 1rem;
    border-radius: 20px;
}

/* Effets hover supprimés pour les éléments non-cliquables */

.page-home .team-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--home-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Effet clignotant supprimé */
.page-home .team-member::before {
    display: none;
}

/* Animation hover supprimée pour les éléments non-cliquables */

/* Animations supprimées */

.page-home .team-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--home-accent);
    margin-top: 0.5rem;
}

.page-home .team-title {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--home-text);
    margin-top: 0.25rem;
    line-height: 1.4;
}

.page-home .team-role {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--home-primary);
    margin-top: 0.25rem;
    font-style: italic;
}

.page-home .team-subtitle,
.page-home .partners-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--home-primary);
    margin-bottom: 2rem;
    margin-top: 1rem;
    text-align: center;
}

.page-home .partner-role {
    display: none !important;
}

/* ---------- Cartes À Propos (non-expandable) ---------- */
/* Container élargi pour permettre les cartes 1650px (écrans larges uniquement) */
@media (min-width: 1300px) {
    .page-home .container:has(.about-content) {
        max-width: 1650px !important;
    }
}

/* Même largeur et hauteur min pour toutes les cartes, override des parents */
.about-section-card,
.page-home .about-content .about-section-card,
.page-home .team-section .about-section-card,
.page-home .partners-section .about-section-card {
    background: white !important;
    border-radius: 20px !important;
    padding: 3rem !important;
    margin-bottom: 3rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 1650px !important;
    max-width: calc(100% - 4rem) !important;
    min-width: 0 !important;
    min-height: 770px !important;
    box-sizing: border-box !important;
    box-shadow: 0 10px 30px rgba(44, 95, 141, 0.08) !important;
    border: 1px solid rgba(44, 95, 141, 0.1) !important;
}

.about-card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--home-primary-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.about-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--home-accent);
    border-radius: 2px;
}

.about-card-content {
    width: 100%;
}

@media (max-width: 768px) {
    .about-section-card,
    .page-home .about-content .about-section-card,
    .page-home .team-section .about-section-card,
    .page-home .partners-section .about-section-card {
        padding: 2rem 1.5rem !important;
        margin-bottom: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 630px !important;
    }
    
    .about-card-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

/* Popup Card */
.member-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.member-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 35, 55, 0.85);
    backdrop-filter: blur(8px);
}

.popup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 24px;
    width: 520px;
    max-width: 95%;
    aspect-ratio: 1;
    max-height: min(520px, 85vh);
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
    animation: popupScale 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10001;
}

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

.popup-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.popup-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: white;
    color: var(--home-accent);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10005;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.popup-close:hover {
    background: var(--home-accent);
    color: white;
    transform: rotate(90deg);
}

.popup-photo-side {
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--home-primary-dark) 0%, var(--home-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.popup-photo-side::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.popup-photo-side::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.popup-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.popup-info-side {
    flex: 1;
    min-height: 0;
    padding: 1rem 1.25rem 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.popup-header {
    margin-bottom: 0.5rem;
    text-align: center;
}

.popup-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--home-primary-dark);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.popup-role {
    font-size: 0.9rem;
    color: var(--home-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.popup-title {
    font-size: 1rem;
    color: var(--home-text-light);
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    text-align: center;
}

.popup-separator {
    width: 50px;
    height: 3px;
    background: var(--home-accent);
    margin: 0 auto 0.5rem;
    border-radius: 2px;
}

.popup-description {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--home-text);
    white-space: pre-line;
}

/* Scrollbar personnalisée pour la popup */
.popup-info-side::-webkit-scrollbar {
    width: 6px;
}

.popup-info-side::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.popup-info-side::-webkit-scrollbar-thumb {
    background: var(--home-accent);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .popup-body {
        flex-direction: column;
    }
    
    .popup-photo-side {
        flex: 0 0 auto;
        padding: 1rem;
    }
    
    .popup-info-side {
        padding: 1rem 1.25rem;
        text-align: center;
    }
    
    .popup-separator {
        margin: 0 auto 0.5rem;
    }
    
    .popup-name {
        font-size: 1.3rem;
    }
}

.popup-description {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--home-text);
    margin-bottom: 0.5rem;
    text-align: justify;
}

.popup-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--home-accent);
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid var(--home-border);
}

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

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

@media (max-width: 768px) {
    .page-home .timeline-image {
        max-width: 100%;
    }
    
    .page-home .about-section-title {
        font-size: 1.8rem;
    }
    
    .page-home .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    /* Équipe : une colonne sur mobile, annuler le placement forcé */
    .page-home .team-section .team-grid {
        grid-template-columns: 1fr;
    }
    .page-home .team-section .team-grid .team-member:nth-child(n) {
        grid-row: auto;
        grid-column: auto;
    }
    
    .popup-content {
        width: min(520px, 95%);
        aspect-ratio: 1;
        max-height: min(520px, 95vh);
    }
    
    .popup-name {
        font-size: 1.3rem;
    }
}

/* ========== Taille unifiée photos membres & partenaires (grille + popup) ========== */
.page-home .team-section .team-grid .team-photo,
.page-home .partners-section .team-grid .team-photo,
#member-popup .popup-photo {
    width: 220px !important;
    height: 220px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

@media (max-width: 768px) {
    .page-home .team-section .team-grid .team-photo,
    .page-home .partners-section .team-grid .team-photo,
    #member-popup .popup-photo {
        width: 190px !important;
        height: 190px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
    }
}

/* ============================================
   STYLES HARMONISÉS POUR TOUTES LES PAGES
   ============================================ */

/* Styles communs pour les nouvelles pages */
.page-home .hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.page-home .hero-title span {
    display: block;
}

/* Responsive pour recherche.html */
@media (max-width: 992px) {
    .page-home .research-cards-container {
        padding: 0 1.5rem;
    }
    
    .page-home .research-card,
    .page-home .research-video-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-home .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        padding: 0.5rem 1rem;
    }
    
    .page-home .hero-title span:last-child {
        font-size: 0.75em;
    }
    
    .page-home .solution-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .page-home .research-section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .page-home .research-card-title {
        font-size: 1.4rem;
    }
    
    .page-home .research-video-title {
        font-size: 1.2rem;
    }
    
    .page-home .research-card-content,
    .page-home .research-video-description {
        font-size: 0.95rem;
    }
    
    .page-home .tags-grid[style*="grid-template-columns: 1fr"] {
        gap: 2rem !important;
    }
}

@media (max-width: 480px) {
    .page-home .hero-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
        padding: 0.5rem 0.75rem;
    }
    
    .page-home .hero-title span:last-child {
        font-size: 0.7em;
    }
    
    .page-home .solution-title {
        font-size: 1.3rem;
    }
    
    .page-home .research-card,
    .page-home .research-video-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .page-home .research-card-title {
        font-size: 1.2rem;
    }
    
    .page-home .research-video-title {
        font-size: 1.1rem;
    }
}

/* Responsive pour technologies.html */
@media (max-width: 992px) {
    .page-home .innovations-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .page-home .tags-grid[style*="grid-template-columns: 1fr"] {
        gap: 2rem !important;
    }
    
    .page-home .tag-item {
        padding: 1.5rem;
    }
    
    .page-home .tag-title {
        font-size: 1.1rem;
    }
    
    .page-home .tag-text {
        font-size: 0.95rem;
    }
    
    .page-home .note-italic {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .page-home .note-author {
        font-size: 0.9rem;
        margin-right: 1rem;
    }
    
    .page-home .publications-list {
        padding: 0 1rem;
    }
    
    .page-home .publication-item {
        padding: 1.5rem;
    }
    
    .page-home .publication-title {
        font-size: 1rem !important;
    }
    
    .page-home .publication-authors {
        font-size: 0.85rem !important;
    }
    
    .page-home .publication-journal {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .page-home .tag-item {
        padding: 1.25rem;
    }
    
    .page-home .tag-image[style*="max-width: 70%"] {
        max-width: 85% !important;
    }
    
    .page-home .tag-image[style*="max-width: 80%"] {
        max-width: 90% !important;
    }
    
    .page-home .tag-image[style*="max-width: 85%"] {
        max-width: 95% !important;
    }
    
    .page-home .note-italic {
        font-size: 0.95rem;
    }
}

/* Responsive pour sepsis.html */
@media (max-width: 992px) {
    .page-home .projects-cards-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .page-home .stat-card {
        padding: 2rem;
    }
    
    .page-home .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-home .projects-cards-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .page-home .stat-card {
        padding: 1.5rem;
    }
    
    .page-home .stat-value {
        font-size: 1.8rem;
    }
    
    .page-home .stat-label {
        font-size: 0.9rem;
    }
    
    .page-home .medical-section {
        padding: 2rem 1rem;
    }
    
    .page-home .note-italic {
        font-size: 1rem;
        margin: 1.5rem auto;
    }
    
    .page-home .note-author {
        font-size: 0.9rem;
        margin-right: 1rem;
    }
    
    .page-home .tag-image[style*="max-width: 70%"] {
        max-width: 85% !important;
    }
    
    .page-home .tag-image[style*="max-width: 80%"] {
        max-width: 90% !important;
    }
    
    .page-home .tag-image[style*="max-width: 85%"] {
        max-width: 95% !important;
    }
}

@media (max-width: 480px) {
    .page-home .stat-card {
        padding: 1.25rem;
    }
    
    .page-home .stat-value {
        font-size: 1.5rem;
    }
    
    .page-home .stat-label {
        font-size: 0.85rem;
    }
    
    .page-home .solution-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .page-home .tag-image[style*="max-width: 70%"] {
        max-width: 90% !important;
    }
    
    .page-home .tag-image[style*="max-width: 80%"] {
        max-width: 95% !important;
    }
    
    .page-home .tag-image[style*="max-width: 85%"] {
        max-width: 100% !important;
    }
    
    .page-home .tag-image[style*="max-width: 100%"] {
        max-width: 100% !important;
    }
}

/* Améliorations générales pour toutes les pages */
@media (max-width: 768px) {
    .page-home .section {
        padding: 3rem 1.5rem;
    }
    
    .page-home .container {
        padding: 0 1.5rem;
    }
    
    .page-home .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 2rem;
    }
    
    .page-home .solution-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .page-home .projects-cards-section {
        padding: 3rem 1.5rem;
    }
    
    .page-home .solution-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-home .section {
        padding: 2rem 1rem;
    }
    
    .page-home .container {
        padding: 0 1rem;
    }
    
    .page-home .section-title {
        font-size: 1.5rem;
    }
    
    .page-home .solution-title {
        font-size: 1.2rem;
    }
    
    .page-home .projects-cards-section {
        padding: 2rem 1rem;
    }
    
    .page-home .solution-section {
        padding: 2rem 1rem;
    }
    
    .page-home .hero-section {
        padding: calc(60px + 4rem) 1rem 3rem;
    }
}

/* Harmonisation des espacements */
.page-home .tags-grid {
    gap: 2rem;
}

.page-home .tag-item {
    margin-bottom: 0;
}

.page-home .project-card-modern {
    margin-bottom: 0;
}

/* Règle déjà définie plus haut */

/* Amélioration de la lisibilité */
.page-home .tag-text,
.page-home .research-card-content {
    line-height: 1.8;
}

.page-home .solution-title {
    line-height: 1.4;
}

/* Harmonisation des ombres et bordures */
.page-home .tag-item,
.page-home .research-card,
.page-home .research-video-card,
.page-home .stat-card,
.page-home .project-card-modern {
    box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
    border: 2px solid rgba(44, 95, 141, 0.1);
    transition: all 0.3s ease;
}

/* Effets hover supprimés pour les éléments non-cliquables (cartes, stat-cards, etc.) */

/* ============================================
   AMÉLIORATIONS RESPONSIVE GLOBALES
   ============================================ */

/* Gestion des styles inline pour le responsive */
@media (max-width: 992px) {
    /* Ajustement des grilles avec styles inline */
    .page-home .tags-grid[style*="grid-template-columns: 1fr"] {
        max-width: 100% !important;
        padding: 0 1rem;
    }
    
    .page-home .tags-grid[style*="max-width: 1000px"],
    .page-home .tags-grid[style*="max-width: 1200px"],
    .page-home .tags-grid[style*="max-width: 1400px"],
    .page-home .tags-grid[style*="max-width: 1600px"] {
        max-width: 100% !important;
        padding: 0 1.5rem;
    }
    
    .page-home .projects-cards-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .page-home .innovations-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Ajustement des conteneurs avec max-width inline */
    div[style*="max-width: 900px"],
    div[style*="max-width: 1000px"] {
        max-width: 100% !important;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    /* Hero title responsive */
    .page-home .hero-title[style*="display: flex"] {
        font-size: 2rem !important;
        gap: 0.3rem !important;
    }
    
    .page-home .hero-title[style*="display: flex"] span:last-child {
        font-size: 0.65em !important;
    }
    
    /* Solution title responsive */
    .page-home .solution-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }
    
    /* Section titles */
    .page-home .section-title[style*="margin-bottom"] {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* H3 responsive */
    .page-home h3[style*="font-size: 1.5rem"] {
        font-size: 1.2rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Grilles en colonne unique */
    .page-home .projects-cards-grid[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .page-home .tags-grid[style*="grid-template-columns: 1fr"] {
        gap: 2rem !important;
    }
    
    /* Ajustement des conteneurs */
    div[style*="max-width: 900px"] {
        max-width: 100% !important;
        padding: 0 1rem;
    }
    
    /* Images responsive */
    .page-home .tag-image[style*="max-width: 70%"] {
        max-width: 85% !important;
    }
    
    .page-home .tag-image[style*="max-width: 80%"] {
        max-width: 90% !important;
    }
    
    .page-home .tag-image[style*="max-width: 85%"] {
        max-width: 95% !important;
    }
    
    .page-home .tag-image[style*="max-width: 100%"] {
        max-width: 100% !important;
    }
    
    /* Vidéos responsive */
    .page-home video[style*="width: 100%"] {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    div[style*="max-width: 1000px"][style*="margin-top"] {
        max-width: 100% !important;
        margin-top: 1rem !important;
    }
    
    /* Textes responsive */
    .page-home p[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }
    
    .page-home p[style*="font-size: 1rem"] {
        font-size: 0.95rem !important;
    }
    
    .page-home .tag-text[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }
    
    .page-home .tag-text[style*="font-size: 1rem"] {
        font-size: 0.9rem !important;
    }
    
    /* Notes et citations */
    .page-home .note-italic {
        font-size: 1rem !important;
        padding: 0 1rem;
    }
    
    .page-home .note-author {
        font-size: 0.9rem !important;
        margin-right: 1rem !important;
        text-align: center !important;
    }
    
    /* Publications */
    .page-home .publication-item[style*="padding: 2rem"] {
        padding: 1.5rem !important;
    }
    
    .page-home .publication-title[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }
    
    .page-home .publication-authors[style*="font-size: 0.95rem"] {
        font-size: 0.85rem !important;
    }
    
    .page-home .publication-journal[style*="font-size: 0.9rem"] {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    /* Hero title très petit écran */
    .page-home .hero-title[style*="display: flex"] {
        font-size: 1.75rem !important;
        letter-spacing: 0.5px !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    .page-home .hero-title[style*="display: flex"] span:last-child {
        font-size: 0.6em !important;
    }
    
    /* Solution title */
    .page-home .solution-title {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
    }
    
    /* Section titles */
    .page-home .section-title {
        font-size: 1.4rem !important;
    }
    
    .page-home h3[style*="font-size: 1.5rem"] {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Cartes et items */
    .page-home .tag-item,
    .page-home .research-card,
    .page-home .research-video-card,
    .page-home .stat-card,
    .page-home .project-card-modern {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Images très petites */
    .page-home .tag-image[style*="max-width: 70%"] {
        max-width: 95% !important;
    }
    
    .page-home .tag-image[style*="max-width: 80%"] {
        max-width: 100% !important;
    }
    
    .page-home .tag-image[style*="max-width: 85%"] {
        max-width: 100% !important;
    }
    
    /* Textes */
    .page-home p[style*="font-size: 1.1rem"],
    .page-home .tag-text[style*="font-size: 1.1rem"] {
        font-size: 0.95rem !important;
    }
    
    .page-home p[style*="font-size: 1rem"],
    .page-home .tag-text[style*="font-size: 1rem"] {
        font-size: 0.9rem !important;
    }
    
    /* Stat cards */
    .page-home .stat-value {
        font-size: 1.5rem !important;
    }
    
    .page-home .stat-label {
        font-size: 0.85rem !important;
    }
    
    /* Notes */
    .page-home .note-italic {
        font-size: 0.95rem !important;
        padding: 0 0.75rem;
    }
    
    .page-home .note-author {
        font-size: 0.85rem !important;
        margin-right: 0.5rem !important;
        text-align: center !important;
    }
    
    /* Conteneurs */
    div[style*="max-width: 900px"],
    div[style*="max-width: 1000px"],
    div[style*="max-width: 1200px"] {
        max-width: 100% !important;
        padding: 0 0.75rem;
    }
}

/* Amélioration de la cohérence visuelle */
.page-home .section {
    scroll-margin-top: 100px;
}

.page-home .medical-section {
    scroll-margin-top: 100px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Amélioration de l'accessibilité */
.page-home .tag-item:focus,
.page-home .research-card:focus,
.page-home .stat-card:focus,
.page-home .project-card-modern:focus {
    outline: 3px solid var(--home-primary);
    outline-offset: 2px;
}

/* Amélioration des transitions */
.page-home * {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Optimisation des performances */
.page-home img,
.page-home video {
    will-change: transform;
}

/* Effets hover sur images supprimés pour les éléments non-cliquables */

/* ============================================
   HARMONISATION FINALE - TOUTES LES PAGES
   ============================================ */

/* Espacements cohérents */
.page-home .section {
    padding: 5rem 2rem;
}

/* Alternance automatique pour toutes les sections dans main */
/* Sections uniformes avec bordures arrondies et décorations */
.page-home main > .section:not(.hero-section):nth-of-type(odd),
.page-projets main > .section:not(.hero-section):nth-of-type(odd),
.page-technologies main > .section:not(.hero-section):nth-of-type(odd),
.page-recherche main > .section:not(.hero-section):nth-of-type(odd) {
    background: var(--background-white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--page-border);
    border-left: 4px solid var(--page-accent, var(--home-primary));
    padding: 4rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.page-home main > .section:not(.hero-section):nth-of-type(odd)::before,
.page-projets main > .section:not(.hero-section):nth-of-type(odd)::before,
.page-technologies main > .section:not(.hero-section):nth-of-type(odd)::before,
.page-recherche main > .section:not(.hero-section):nth-of-type(odd)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-blue);
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

.page-home main > .section:not(.hero-section):nth-of-type(even),
.page-projets main > .section:not(.hero-section):nth-of-type(even),
.page-technologies main > .section:not(.hero-section):nth-of-type(even),
.page-recherche main > .section:not(.hero-section):nth-of-type(even) {
    background: var(--page-bg-alt, var(--background-blue));
    border-radius: var(--radius-xl);
    border: 2px solid var(--page-border);
    border-left: 4px solid var(--page-accent, var(--home-primary));
    padding: 4rem 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    width: 100%;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.page-home main > .section:not(.hero-section):nth-of-type(even)::before,
.page-projets main > .section:not(.hero-section):nth-of-type(even)::before,
.page-technologies main > .section:not(.hero-section):nth-of-type(even)::before,
.page-recherche main > .section:not(.hero-section):nth-of-type(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-blue);
    border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}

/* Sections spécifiques avec styles uniformes */
.page-home .solution-section,
.page-home .projects-cards-section {
    padding: 5rem 2rem;
    border-radius: var(--radius-xl);
}

/* Responsive pour les sections */
@media (max-width: 992px) {
    .page-home main > .section:not(.hero-section),
    .page-projets main > .section:not(.hero-section),
    .page-technologies main > .section:not(.hero-section),
    .page-recherche main > .section:not(.hero-section) {
        padding: 3rem 1.5rem;
        margin: 1.5rem auto;
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .page-home main > .section:not(.hero-section),
    .page-projets main > .section:not(.hero-section),
    .page-technologies main > .section:not(.hero-section),
    .page-recherche main > .section:not(.hero-section) {
        padding: 2.5rem 1.25rem;
        margin: 1.25rem auto;
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 480px) {
    .page-home main > .section:not(.hero-section),
    .page-projets main > .section:not(.hero-section),
    .page-technologies main > .section:not(.hero-section),
    .page-recherche main > .section:not(.hero-section) {
        padding: 2rem 1rem;
        margin: 1rem auto;
        border-radius: var(--radius-md);
    }
}

/* Harmonisation des titres */
.page-home .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--home-primary);
    margin-bottom: 3rem;
    line-height: 1.3;
    text-align: center;
}

.page-home .solution-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--page-accent, var(--home-primary));
    margin-bottom: 2rem;
    line-height: 1.5;
    text-align: center;
    letter-spacing: -0.3px;
}

/* Harmonisation des cartes */
.page-home .tag-item,
.page-home .research-card,
.page-home .research-video-card,
.page-home .stat-card,
.page-home .project-card-modern,
.page-home .innovation-card {
    border-radius: 20px;
    padding: 2.5rem;
    background: white;
    border: 2px solid var(--page-border, rgba(44, 95, 141, 0.15));
    border-top: 3px solid var(--page-accent, var(--home-primary));
}

/* Responsive harmonisé pour toutes les tailles */
@media (max-width: 1200px) {
    .page-home .section,
    .page-home .solution-section,
    .page-home .projects-cards-section {
        padding: 4rem 2rem;
    }
    
    .page-home .section-title {
        font-size: 2.2rem;
    }
    
    .page-home .solution-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .page-home .section,
    .page-home .solution-section,
    .page-home .projects-cards-section {
        padding: 3.5rem 1.5rem;
    }
    
    .page-home .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .page-home .solution-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .page-home .tag-item,
    .page-home .research-card,
    .page-home .research-video-card,
    .page-home .stat-card,
    .page-home .project-card-modern,
    .page-home .innovation-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-home .section,
    .page-home .solution-section,
    .page-home .projects-cards-section {
        padding: 3rem 1.5rem;
    }
    
    .page-home .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .page-home .solution-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .page-home .tag-item,
    .page-home .research-card,
    .page-home .research-video-card,
    .page-home .stat-card,
    .page-home .project-card-modern,
    .page-home .innovation-card {
        padding: 2rem;
    }
    
    .page-home .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .page-home .section,
    .page-home .solution-section,
    .page-home .projects-cards-section {
        padding: 2rem 1rem;
    }
    
    .page-home .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .page-home .solution-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .page-home .tag-item,
    .page-home .research-card,
    .page-home .research-video-card,
    .page-home .stat-card,
    .page-home .project-card-modern,
    .page-home .innovation-card {
        padding: 1.5rem;
    }
    
    .page-home .hero-title {
        font-size: 2rem;
    }
    
    .page-home .hero-title[style*="display: flex"] {
        font-size: 1.75rem !important;
    }
}

/* ============================================
   RESPONSIVE IMAGES ET TITRES — Ajustements globaux
   ============================================ */

/* Base : toutes les images et vidéos redimensionnables (sans déborder) */
.page-home img:not(.logo-image):not(.team-photo):not(.popup-photo),
.page-home .block-image,
.page-home .wide-image,
.page-home .ftt-image,
.page-home .impact-image,
.page-home .timeline-image,
.page-home .footer-logo-b3,
.page-home video {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

.page-home .tag-image {
    max-width: 100%;
    height: auto;
}

.page-home .logo-image {
    max-width: 100%;
    height: auto;
}

/* Titres : cascade responsive */
@media (max-width: 1200px) {
    .page-home .hero-title { font-size: clamp(2rem, 5vw, 4.5rem) !important; }
    .page-home .hero-subtitle { font-size: 1.35rem !important; }
    .page-home .section-title { font-size: 2.2rem !important; }
    .page-home .solution-title { font-size: 1.9rem !important; }
    .page-home .about-card-title { font-size: 2rem !important; }
    .page-home .tag-title { font-size: 1.15rem !important; }
    .page-home .project-card-title { font-size: 1.6rem !important; }
    .page-home .block-title { font-size: 1.65rem !important; }
    .page-home .innovation-card h3 { font-size: 1.35rem !important; }
    .page-home .process-title { font-size: 1.85rem !important; }
}

@media (max-width: 992px) {
    .page-home .hero-title { font-size: clamp(1.75rem, 4.5vw, 3.5rem) !important; }
    .page-home .hero-subtitle { font-size: 1.25rem !important; }
    .page-home .section-title { font-size: 2rem !important; }
    .page-home .solution-title { font-size: 1.7rem !important; }
    .page-home .about-card-title { font-size: 1.85rem !important; }
    .page-home .tag-title { font-size: 1.1rem !important; }
    .page-home .project-card-title { font-size: 1.5rem !important; }
    .page-home .about-section-title { font-size: 1.9rem !important; }
    .page-home .block-title { font-size: 1.5rem !important; }
    .page-home .innovation-card h3 { font-size: 1.25rem !important; }
    .page-home .process-title { font-size: 1.7rem !important; }
    .page-home .step-header-horizontal h4 { font-size: 1.2rem !important; }
}

@media (max-width: 768px) {
    .page-home .hero-title { font-size: clamp(1.5rem, 4vw, 2.75rem) !important; line-height: 1.2 !important; }
    .page-home .hero-subtitle { font-size: 1.1rem !important; }
    .page-home .section-title { font-size: 1.75rem !important; margin-bottom: 1.5rem !important; }
    .page-home .solution-title { font-size: 1.5rem !important; line-height: 1.3 !important; }
    .page-home .about-card-title { font-size: 1.7rem !important; }
    .page-home .tag-title { font-size: 1.05rem !important; }
    .page-home .project-card-title { font-size: 1.4rem !important; }
    .page-home .about-section-title { font-size: 1.75rem !important; }
    .page-home .block-title { font-size: 1.35rem !important; }
    .page-home .innovation-card h3 { font-size: 1.15rem !important; }
    .page-home .process-title { font-size: 1.5rem !important; }
    .page-home .step-header-horizontal h4 { font-size: 1.1rem !important; }
    .page-home .tag-image { max-width: 100% !important; }
    .page-home .timeline-image,
    .page-home .impact-image,
    .page-home .ftt-image { max-width: 100% !important; width: 100% !important; }
}

@media (max-width: 480px) {
    .page-home .hero-title { font-size: clamp(1.25rem, 3.5vw, 2rem) !important; }
    .page-home .hero-subtitle { font-size: 1rem !important; }
    .page-home .section-title { font-size: 1.5rem !important; margin-bottom: 1.25rem !important; }
    .page-home .solution-title { font-size: 1.3rem !important; }
    .page-home .about-card-title { font-size: 1.5rem !important; }
    .page-home .tag-title { font-size: 1rem !important; }
    .page-home .project-card-title { font-size: 1.3rem !important; }
    .page-home .about-section-title { font-size: 1.5rem !important; }
    .page-home .block-title { font-size: 1.2rem !important; }
    .page-home .innovation-card h3 { font-size: 1.05rem !important; }
    .page-home .process-title { font-size: 1.35rem !important; }
    .page-home .step-header-horizontal h4 { font-size: 1rem !important; }
    .page-home .tag-image { max-width: 100% !important; }
    .page-home .tag-image[style*="max-width: 70%"],
    .page-home .tag-image[style*="max-width: 80%"],
    .page-home .tag-image[style*="max-width: 85%"] { max-width: 100% !important; }
    .page-home .footer-logo-b3 { max-height: 48px !important; width: auto !important; }
}

/* Amélioration de la performance et de l'accessibilité */
.page-home img[style*="max-width"],
.page-home video[style*="width"] {
    max-width: 100%;
    height: auto;
}

/* Prévention du débordement horizontal */
.page-home * {
    max-width: 100%;
    box-sizing: border-box;
}

.page-home .container,
.page-home .tags-grid,
.page-home .projects-cards-grid,
.page-home .research-cards-container {
    overflow-x: hidden;
}

/* Amélioration du contraste et de la lisibilité */
.page-home .tag-text,
.page-home .research-card-content,
.page-home .stat-label {
    color: var(--home-text);
    line-height: 1.7;
}

.page-home .tag-title,
.page-home .research-card-title,
.page-home .research-video-title,
.page-home .stat-value {
    color: var(--home-primary);
    font-weight: 700;
}

/* Transitions fluides */
.page-home .tag-item,
.page-home .research-card,
.page-home .research-video-card,
.page-home .stat-card,
.page-home .project-card-modern {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Amélioration de l'impression */
@media print {
    .page-home .navbar,
    .page-home .footer,
    .page-home .hamburger-menu,
    .page-home .language-switcher {
        display: none;
    }
    
    .page-home .section {
        page-break-inside: avoid;
    }
}

