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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    min-height: 70px;
}

.nav-logo {
    flex: 0 0 auto;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    vertical-align: middle;
}

.nav-sitelink {
    display: inline-block;
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    margin-top: 0.15rem;
    transition: color 0.3s ease;
}

.nav-sitelink:hover,
.nav-sitelink:focus {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nav-quotes {
    flex: 0 1 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    color: #475569;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.35rem;
}

.nav-quotes .quote-carousel {
    position: relative;
    width: 100%;
    height: 72px;
}

.nav-quotes blockquote {
    margin: 0;
    color:  #031b4d;
}

.nav-quotes .quote-slide blockquote p {
    color:  #031b4d;
}

.nav-quotes .quote-slide blockquote cite {
    color: #031b4d;
}

.nav-quotes cite {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #2563eb;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 1024px) {
    .nav-quotes {
        display: none;
    }
    .nav-container {
        align-items: center;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 20px 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 0 20px;
        align-items: start;
    }
}

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

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-law-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .hero-stats .stat-item {
        flex: 1 1 calc(50% - 1rem);
        min-width: 0;
    }
}

.hero-stats .stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: #c92929f6;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.4;
}

.hero-stats .stat-source {
    font-size: 0.7rem;
    opacity: 0.6;
    font-style: italic;
    margin-top: 0.5rem;
    display: block;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

.hero-btn-debunk {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
    color: #ffe066;
    border: 2px solid rgba(255, 224, 102, 0.85);
    box-shadow: 0 12px 30px rgba(255, 224, 102, 0.15);
}

.hero-btn-debunk::after {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn-debunk:hover {
    color: #1f2937;
    background: #918c7a;
    border-color: #918c7a;
    box-shadow: 0 12px 24px rgba(255, 224, 102, 0.35);
}

.hero-btn-debunk:hover::after {
    opacity: 1;
}

/* Styles de base pour les boutons */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    margin-bottom: 0.75rem;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
    
    /* Effet de vague au clic */
    &::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
        background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 10%, transparent 10.01%);
        background-repeat: no-repeat;
        background-position: 50%;
        transform: scale(10, 10);
        opacity: 0;
        transition: transform 0.5s, opacity 1s;
    }
    
    &:active::after {
        transform: scale(0, 0);
        opacity: 0.3;
        transition: 0s;
    }
    
    /* Désactiver la sélection de texte sur les boutons */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    /* Taille minimale pour les zones tactiles */
    min-height: 44px;
    min-width: 44px;
}

@media (min-width: 480px) {
    .btn {
        width: auto;
        padding: 12px 30px;
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .hero-btn-debunk {
        margin-top: 1rem;
    }
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

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

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vote-summary {
    margin-top: 1.5rem;
    background: rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.vote-summary-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.vote-summary-subtitle {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 1rem;
}

.vote-bar {
    display: flex;
    height: 30px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
}

.vote-segment {
    height: 100%;
    flex-shrink: 0;
    position: relative;
    cursor: help;
}

.vote-segment:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 4px;
}

.vote-segment::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) scale(0.95);
    background: rgba(15, 23, 42, 0.9);
    color: #f9fafb;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

.vote-segment::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(15, 23, 42, 0.9) transparent transparent transparent;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.vote-segment:hover::after,
.vote-segment:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.vote-segment:hover::before,
.vote-segment:focus-visible::before {
    opacity: 1;
}

.vote-legend {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.vote-legend li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.vote-legend strong {
    font-weight: 600;
    margin-left: 0.2rem;
}

.against-voters {
    margin-top: 1.5rem;
}

.against-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

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

.against-group {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 14px;
    padding: 1rem;
}

.against-group-name {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}

.against-group-name span {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

.against-names {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
    column-count: 2;
    column-gap: 1.5rem;
}

.against-names li {
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
    opacity: 0.9;
    break-inside: avoid;
}

.against-source {
    margin-top: 1rem;
    font-size: 0.75rem;
    opacity: 0.75;
}

.against-source a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    animation: bounce 2s infinite;
    color: white;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    align-content: center;
}

/* Definition Section */
.definition {
    background: #f9fafb;
    padding: 80px 0;
}

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

.definition-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.important-quote {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    border: none;
}

.important-quote i {
    font-size: 2rem;
    opacity: 0.7;
    margin-bottom: 1rem;
    display: block;
}

.important-quote p {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    font-style: italic;
}

.slogan-section {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    text-align: center;
}

.slogan-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.instagram-link-box {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    border: 2px solid #e91e63;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 500px;
    text-align: center;
}

.instagram-link-box p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}

.instagram-link i {
    font-size: 1.5rem;
}

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.5);
}

.instagram-description {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.perls-acronym {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 2px solid #e91e63;
}

.perls-acronym h3 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.acronym-display {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.acronym-letter {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 80px;
}

.acronym-letter:hover {
    transform: translateY(-5px);
}

.acronym-letter .letter {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.5rem;
}

.acronym-letter .word {
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
    font-weight: 500;
}

.mnemonic-phrase {
    background: #fef3cd;
    border: 2px solid #fde68a;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.mnemonic-phrase i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.mnemonic-phrase p {
    margin: 0;
    color: #92400e;
    line-height: 1.6;
    font-size: 1.1rem;
}

.mnemonic-phrase em {
    color: #e91e63;
    font-weight: 600;
    font-style: normal;
}

/* Layout cartes PERLS + carrousel */
.perls-cards-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

.consent-conditions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

/* Cartes retournables PERLS */
.condition-card-flip {
    background: transparent;
    perspective: 1000px;
    height: 280px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.condition-card-flip:hover .card-inner {
    transform: scale(1.02);
}

.condition-card-flip.flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: white;
}

.card-back {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    transform: rotateY(180deg);
}

.condition-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.card-front h4, .card-back h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.card-back h4 {
    color: white;
    margin-bottom: 1rem;
}

.card-front p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.card-back .story {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.flip-hint {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #9c27b0;
    font-weight: 500;
    opacity: 0.8;
}

.card-back .flip-hint {
    color: white;
}

/* Carrousel mnémotechnique */
.mnemonic-carousel {
    background: linear-gradient(135deg, #fff9e6, #ffe6f0);
    border: 2px solid #e91e63;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-icon {
    color: #e91e63;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mnemonic-slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease-in;
}

.mnemonic-slide.active {
    display: block;
}

.mnemonic-slide p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.mnemonic-slide em {
    color: #e91e63;
    font-weight: 600;
    font-style: normal;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #e91e63;
    transform: scale(1.2);
}

.dot.active {
    background: #e91e63;
    width: 30px;
    border-radius: 6px;
}

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

/* Anciens styles condition-card pour compatibilité */
.condition-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.condition-card h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.condition-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

.warning-box {
    background: #fef3cd;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

/* Warning box dans le layout PERLS */
.perls-cards-layout .warning-box {
    position: sticky;
    top: 100px;
    margin: 0;
    height: fit-content;
}

.warning-box i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.warning-box p {
    margin: 0;
    color: #92400e;
    line-height: 1.6;
}

.convention-box {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(30, 64, 175, 0.18) 100%);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #1e3a8a;
    box-shadow: 0 18px 40px rgba(30, 64, 175, 0.18);
}

.convention-box i {
    font-size: 1.6rem;
    margin-top: 0.25rem;
}

.convention-box h4 {
    margin: 0 0 0.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e40af;
    letter-spacing: 0.01em;
}

.convention-box p {
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.6;
    color: #1f2a4d;
}

.definition-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Law Section */
.law {
    background: white;
    padding: 80px 0;
}

.law-content {
    display: grid;
    /*grid-template-columns: 2fr 1fr;*/
    gap: 4rem;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    align-items: start;
}

.law-evolution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
}

.law-before, .law-now {
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid;
}

.law-before {
    border-color: #ef4444;
    background: #fef2f2;
}

.law-now {
    border-color: #10b981;
    background: #f0fdf4;
}

.law-before h3, .law-now h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.law-before h3 {
    color: #dc2626;
}

.law-now h3 {
    color: #059669;
}

.law-principles {
    margin: 2rem 0;
}

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

.law-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.law-list i {
    color: #e91e63;
    margin-top: 0.25rem;
}

.law-europe {
    margin: 2.5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-left: 4px solid #2563eb;
    padding: 1.75rem;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

.law-europe h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.law-europe p {
    color: #b8caf1;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.law-europe-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.law-europe-list li {
    position: relative;
    padding-left: 1.6rem;
    color: #1f2937;
    line-height: 1.6;
}

.law-europe-list li::before {
    content: '\f0a4';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #2563eb;
    position: absolute;
    left: 0;
    top: 0.1rem;
}

.law-europe a {
    color: #1d4ed8;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.law-europe a:hover {
    color: #0f172a;
}

.law-europe-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #475569;
}

.law-europe-spotlight {
    margin: 20px auto 80px;
    max-width: 960px;
    background: rgba(15, 23, 42, 0.75);
    color: #f1f5f9;
    border-left-color: #facc15;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
}

.law-europe-spotlight h3,
.law-europe-spotlight .law-europe-note,
.law-europe-spotlight .law-europe-list li,
.law-europe-spotlight a {
    color: inherit;
}

.law-europe-spotlight .law-europe-list li::before {
    color: #facc15;
}

.parallax-hero {
    position: relative;
    height: 320px;
    /*background: url('assets/images/Definition-Du-viol-23-octobre-2025.png') center/cover fixed;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -120px;
    z-index: 2;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(59, 7, 100, 0.65) 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2.5rem 2rem 3.5rem;
}

.parallax-content {
    max-width: 720px;
    text-align: center;
    color: #f8fafc;
}

.parallax-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: #facc15;
}

.parallax-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.parallax-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(226, 232, 240, 0.9);
}

.law-quote {
    margin: 2rem 0;
}

.law-quote blockquote {
    background: #f8fafc;
    border-left: 4px solid #e91e63;
    padding: 1.5rem;
    margin: 0;
    border-radius: 0 10px 10px 0;
}

.law-quote blockquote i {
    color: #e91e63;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.law-quote blockquote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #374151;
}

.law-quote cite {
    color: #6b7280;
    font-size: 0.9rem;
}

.legal-resources {
    margin: 2rem 0;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #e91e63;
}

.legal-resources h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-resources h3 i {
    color: #e91e63;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-link {
    display: block;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.legal-link:hover {
    background: #e91e63;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(233, 30, 99, 0.2);
}

.legal-slider {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.legal-slider h3 {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    color: #1f2937;
}

.legal-slider h3 i {
    color: #4f46e5;
}

.legal-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0.75rem 0 1.5rem;
}

.legal-note i {
    margin-top: 0.2rem;
    color: #2563eb;
}

.legal-slider__frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 40%);
    padding: 1.5rem;
}

.legal-slider__frame--embedded {
    padding: 0;
}

.legal-evolution-root {
    border-radius: 18px;
    overflow: hidden;
    height: 950px;
}

.myth-reality {
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(99, 102, 241, 0.12) 100%);
    border: 1px solid rgba(37, 99, 235, 0.18);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.myth-reality h3 {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.myth-reality h3 i {
    color: #4f46e5;
}

.myth-reality-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.myth-claim,
.myth-response {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.myth-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.myth-label.reality {
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
}

.myth-claim ul,
.myth-response ul {
    margin: 0;
    padding-left: 1.3rem;
    color: #374151;
    line-height: 1.55;
}

.myth-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.myth-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.myth-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.myth-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.myth-card-points {
    margin: 0;
    padding-left: 1.3rem;
    color: #374151;
    line-height: 1.6;
}

.myth-card-points li + li {
    margin-top: 0.6rem;
}

.myth-example {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 14px;
    padding: 0.9rem 1rem;
}

.myth-summary {
    margin-top: 2.5rem;
    background: rgba(15, 23, 42, 0.04);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.myth-summary h4 {
    margin: 0 0 0.8rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1f2937;
}

.myth-summary ul {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.6;
    color: #374151;
}

.timeline-parallax {
    position: relative;
    width: 100%;
}

.timeline-parallax--done .timeline-parallax__sticky {
    position: relative;
    top: auto;
}

.timeline-parallax--done .timeline-parallax__viewport {
    overflow-x: auto;
}

.timeline-parallax__sticky {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 5;
}

.timeline-parallax__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-parallax__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.timeline-parallax__hint {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #4338ca;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.timeline-parallax__hint span {
    font-size: 1rem;
}

.timeline-parallax__hint--mobile {
    display: none;
}

.timeline-parallax__legend {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.timeline-parallax__legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.35);
}

.timeline-parallax__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto 1rem;
    padding: 0;
}

.timeline-parallax__viewport {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 22px;
    padding-bottom: 2rem;
    background: rgba(15, 23, 42, 0.02);
    scrollbar-width: none;
    max-width: 1500px;
    margin: 0 auto;
}

.timeline-parallax__viewport::-webkit-scrollbar {
    display: none;
}

.timeline-parallax__viewport--parallax {
    overflow-x: hidden;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.08) 100%);
}

.timeline-parallax__track {
    display: flex;
    gap: 1.5rem;
    padding-right: 2.5rem;
    min-width: max-content;
}

.timeline-parallax__track article {
    scroll-snap-align: start;
}

.timeline-parallax__viewport:not(.timeline-parallax__viewport--parallax) {
    scroll-snap-type: x proximity;
}

.timeline-chevron {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    border: none;
    background: rgba(255, 255, 255, 0.86);
    color: #1f2937;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.timeline-chevron span {
    font-size: 1.2rem;
    pointer-events: none;
}

.timeline-chevron--left {
    margin-right: auto;
}

.timeline-chevron--right {
    margin-left: auto;
}

.timeline-chevron.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.timeline-parallax__controls .timeline-chevron.is-visible:hover,
.timeline-parallax__controls .timeline-chevron.is-visible:focus-visible {
    transform: scale(1.05);
}

.timeline-parallax--done .timeline-chevron {
    display: none;
}

@media (max-width: 1023px) {
    .timeline-parallax__sticky {
        position: static;
    }

    .timeline-parallax__hint--desktop {
        display: none;
    }

    .timeline-parallax__hint--mobile {
        display: inline-flex;
    }

    .timeline-parallax__viewport {
        background: rgba(15, 23, 42, 0.03);
        padding-bottom: 1.5rem;
    }

    .timeline-parallax__controls {
        padding: 0;
        margin-bottom: 0.75rem;
    }

    .timeline-chevron {
        display: none;
    }
}

@media (max-width: 640px) {
    .timeline-parallax__track {
        padding-right: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .myth-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .myth-reality {
        padding: 2rem 1.5rem;
    }

    .myth-reality-intro {
        grid-template-columns: 1fr;
    }

    .myth-cards {
        grid-template-columns: 1fr;
    }
}

.law-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.about-text p {
    margin-bottom: 2rem;
    color: #6b7280;
    line-height: 1.7;
}

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

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #6b7280;
}

.values-list i {
    color: #2563eb;
    margin-right: 1rem;
    width: 20px;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Advocacy Section - Ce qu'il reste à faire */
.advocacy {
    background: linear-gradient(135deg, #fff5f7 0%, #f0f9ff 100%);
    padding: 80px 0;
}

.advocacy-content {
    max-width: 960px;
    margin: 0 auto;
}

.advocacy-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.advocacy-intro .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.advocacy-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.advocacy-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advocacy-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.advocacy-category h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.advocacy-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.advocacy-list li:last-child {
    border-bottom: none;
}

.advocacy-list li i {
    position: absolute;
    left: 0;
    top: 1rem;
    color: #e91e63;
    font-size: 0.9rem;
}

.advocacy-list strong {
    color: #333;
    font-weight: 600;
}

.advocacy-conclusion {
    margin-top: 3rem;
}

.conclusion-box {
    background: linear-gradient(135deg, #fff5f7, #ffe9e9);
    border-left: 4px solid #e91e63;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.conclusion-box i {
    color: #e91e63;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.conclusion-box h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.conclusion-box p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.urgency-box {
    margin-top: 1.5rem;
}

.associations-list {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.associations-list h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.associations-list h3 i {
    color: #e91e63;
    margin-right: 0.5rem;
}

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

.association-link {
    display: block;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f9fafb, #fff);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.association-link:hover {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    border-color: #e91e63;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

/* Testimonials Section */
.testimonials {
    background: #f9fafb;
}

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

.testimonial-quote {
    color: #e91e63;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #6b7280;
    line-height: 1.7;
}

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

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

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

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

.contact-item i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

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

/* Slogan Final Section */
.slogan-final {
    background: linear-gradient(135deg, #fff5f7 0%, #f0f9ff 100%);
    padding: 80px 0;
}

.slogan-final .slogan-section {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
/* Styles pour les blocs adjacents en mode colonne sur mobile */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    order: 1;
}

.hero-image {
    order: 2;
    margin: 0 auto;
    max-width: 100%;
}

.vote-summary-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.vote-summary-container h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Ajustements pour le quiz en haut de page */
#quiz {
    background-color: #f8fafc;
    padding: 3rem 0;
}

#quiz .section-title {
    color: #1e40af;
    margin-bottom: 0.5rem;
    text-align: center;
}

#quiz .section-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 2rem;
}

/* Styles pour les appareils tactiles */
@media (hover: none) and (pointer: coarse) {
    /* Amélioration du feedback tactile pour les boutons et liens */
    .btn,
    .nav-link,
    button,
    [role="button"] {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Désactiver les animations pour les appareils à faible puissance */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
}

/* Menu mobile amélioré */
@media (max-width: 1024px) {
    /* Empêcher le défilement du corps lorsque le menu est ouvert */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Style du bouton hamburger */
    .hamburger {
        display: flex;
        margin-left: auto;
        z-index: 1001;
        padding: 10px;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Style des barres du menu hamburger */
    .hamburger .bar {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Animation du bouton hamburger */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Style du menu de navigation mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 90%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 80px 1.5rem 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    /* État actif du menu */
    .nav-menu.active {
        right: 0;
        transform: translateX(0);
    }
    
    /* Style des éléments du menu */
    .nav-item {
        margin: 0.75rem 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Style des liens du menu */
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: background-color 0.2s, color 0.2s;
        font-weight: 500;
        font-size: 1.1rem;
        color: #333;
    }
    
    /* État actif et survol des liens */
    .nav-link.active,
    .nav-link:active {
        background-color: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
    }
    
    /* Animation d'entrée des éléments du menu */
    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Délais d'animation pour chaque élément */
    .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-item:nth-child(6) { transition-delay: 0.35s; }
    
    /* Masquer les citations dans la navigation sur mobile */
    .nav-quotes {
        display: none;
    }
    
    /* Style pour le fond flou derrière le menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Ajustements pour les appareils très petits */
    @media (max-width: 360px) {
        .nav-menu {
            width: 100%;
            max-width: none;
            padding: 70px 1rem 1.5rem;
        }
        
        .nav-link {
            font-size: 1rem;
            padding: 0.6rem 0.75rem;
        }
    }
}

/* Cacher les images spécifiées */
.definition-sidebar .definition-image,
img[src*="Jed%C3%A9cideavecquijeparle.png"] {
    display: none;
}

.law-text {
    width: 1200px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.law-evolution,
.law-principles {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Style pour la notice de prévisualisation */
.preview-notice {
    background-color: #f8f9fa;
    border-left: 4px solid #e91e63;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.preview-notice p {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.preview-link {
    color: #e91e63;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed #e91e63;
    transition: all 0.3s ease;
}

.preview-link:hover {
    color: #c2185b;
    border-bottom-style: solid;
}

/* Style pour l'image SEO */
.seo-image-container {
    display: none; /* Masqué par défaut */
}

/* Affichage uniquement pour les moteurs de recherche */
@media (min-width: 1px) {
    .seo-image {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

/* Style du bouton Débunker 5 idées reçues */
.btn-debunk {
    background-color: #e91e63 !important;
    color: white !important;
    border: none !important;
}

.btn-debunk:hover {
    background-color: #c2185b !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Gestion du bloc urgence sur mobile */
.mobile-urgency-box {
    display: none; /* Masqué par défaut sur desktop */
    margin-top: 2rem;
    background-color: #fff5f7;
    border-left: 4px solid #e91e63;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.law-before,
.law-now {
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

/* Styles spécifiques pour mobile */
@media (max-width: 768px) {
    .law-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .law-evolution {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .law-text,
    .law-evolution,
    .law-principles {
        padding: 0;
    }
    .nav-quotes {
        display: none;
    }
    
    /* Afficher le bloc urgence sur mobile */
    .mobile-urgency-box {
        display: block;
    }
    
    /* Masquer le bloc urgence dans la sidebar sur mobile */
    .definition-sidebar .urgency-box {
        display: none;
    }
    
    /* Ajustement de l'ordre des éléments */
    .definition-content {
        display: flex;
        flex-direction: column;
    }
    
    .definition-text {
        order: 1;
    }
    
    .definition-sidebar {
        order: 2;
        margin-top: 2rem;
    }

    .convention-box {
        margin-top: 1.25rem;
    }
    
    /* Ajustement des boutons */
    .hero-buttons {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, 
    .hero-image {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vote-summary-container {
        padding: 1rem;
    }
    
    .vote-legend {
        grid-template-columns: 1fr 1fr;
    }
    
    .against-groups {
        flex-direction: column;
        gap: 1rem;
    }
    
    .against-group {
        width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        margin-left: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .vote-summary {
        text-align: left;
    }

    .vote-legend {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .against-groups {
        grid-template-columns: 1fr;
    }

    .against-names {
        column-count: 1;
    }

    .debunk-header {
        flex-direction: column;
        align-items: stretch;
    }

    .debunk-header .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .hero {
        padding-bottom: 180px;
    }

    .parallax-hero {
        background-attachment: scroll;
        height: auto;
        min-height: 260px;
        margin-top: -120px;
    }

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

    .law-europe-spotlight {
        margin: -60px auto 40px;
    }

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

    .advocacy-category {
        padding: 1.5rem;
    }

    .condition-card-flip {
        height: 300px;
    }

    .consent-conditions {
        grid-template-columns: 1fr;
    }

    .mnemonic-slide p {
        font-size: 1rem;
    }

    .perls-cards-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .perls-cards-layout .warning-box {
        position: relative;
        top: auto;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .vote-summary {
        padding: 1.25rem;
    }

    .vote-summary-title {
        font-size: 1rem;
    }

    .vote-summary-subtitle {
        font-size: 0.85rem;
    }

    .vote-bar {
        height: 24px;
    }

    .vote-legend {
        grid-template-columns: 1fr;
    }

    .debunk-card {
        padding: 1rem 1.1rem;
    }

    .debunk-myth {
        font-size: 1rem;
    }

    .debunk-reality {
        font-size: 0.9rem;
    }

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

    .parallax-lead {
        font-size: 0.95rem;
    }

    .parallax-hero {
        margin-top: -60px;
    }
    
    .hero {
        padding-bottom: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

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

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

/* Quiz Section */
.quiz {
    background: white;
    padding: 80px 0;
}

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

.quiz-progress {
    margin-bottom: 3rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    width: 12.5%;
    transition: width 0.3s ease;
}

.progress-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.quiz-question {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.quiz-question h3 {
    color: #1f2937;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.quiz-option:hover {
    border-color: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.1);
}

.quiz-option.selected {
    border-color: #e91e63;
    background: #fdf2f8;
}

.quiz-option.correct {
    border-color: #10b981;
    background: #f0fdf4;
}

.quiz-option.incorrect {
    border-color: #ef4444;
    background: #fef2f2;
}

.option-letter {
    width: 30px;
    height: 30px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6b7280;
    transition: all 0.3s ease;
}

.quiz-option:hover .option-letter,
.quiz-option.selected .option-letter {
    background: #e91e63;
    color: white;
}

.quiz-option.correct .option-letter {
    background: #10b981;
    color: white;
}

.quiz-option.incorrect .option-letter {
    background: #ef4444;
    color: white;
}

.option-text {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
}

.quiz-result {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.result-content {
    max-width: 600px;
    margin: 0 auto;
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.result-icon .fa-check-circle {
    color: #10b981;
}

.result-icon .fa-times-circle {
    color: #ef4444;
}

.result-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.result-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quiz-summary {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.score-display {
    margin: 2rem 0;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.score-display p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Resources Section */
.resources {
    background: #f9fafb;
    padding: 80px 0;
}

.resources-content {
    display: grid;
    gap: 3rem;
}

.resources-category {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.resources-category h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resources-category h3 i {
    color: #e91e63;
}

/* Styles personnalisés pour le slider noUiSlider */
#slider {
    margin: 20px 15px;
}

.noUi-target {
    height: 6px;
    border: none;
    background: #e0e0e0;
    border-radius: 3px;
    box-shadow: none;
}

.noUi-connect {
    background: #4f46e5;
}

.noUi-handle {
    width: 14px !important;
    height: 14px !important;
    right: -7px !important;
    top: -5px !important;
    border: 2px solid #4f46e5;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

.noUi-handle:hover {
    background: #f8f9fa;
}

.noUi-handle:active {
    background: #f1f5f9;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-link {
    display: block;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.resource-link:hover {
    background: #e91e63;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

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

.emergency-number {
    text-align: center;
    padding: 1.5rem;
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.emergency-number:hover {
    background: #fee2e2;
    transform: translateY(-2px);
}

.emergency-number .number {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.emergency-number .description {
    color: #7f1d1d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.perls-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #e91e63;
}

.perls-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.perls-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 0.75rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 70px;
}

.perls-item:hover {
    transform: translateY(-3px);
}

.perls-letter {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e91e63;
    margin-bottom: 0.25rem;
}

.perls-principle {
    font-size: 0.7rem;
    color: #6b7280;
    text-align: center;
    font-weight: 500;
}

.mnemonic-reminder {
    background: #fef3cd;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.mnemonic-reminder p {
    margin: 0;
    color: #92400e;
    line-height: 1.5;
    font-size: 1rem;
}

.mnemonic-reminder em {
    color: #e91e63;
   font-weight: 600;
   font-style: normal;
}

/* Debunk Section */
.debunk {
    background: linear-gradient(135deg, #0f172a 0%, #312e81 100%);
    padding: 80px 0;
    color: #f9fafb;
}

.debunk .section-title {
    color: #f9fafb;
}

.debunk .section-subtitle {
    color: rgba(226, 232, 240, 0.9);
}

.debunk-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.debunk-header p {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.95);
}

.debunk-header .btn {
    background: #f97316;
    color: white;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.debunk-header .btn:hover {
    background: #fb923c;
}

.debunk-list {
    display: grid;
    gap: 1.5rem;
}

.debunk-card {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.debunk-card[open] {
    transform: translateY(-2px);
    border-color: #fbbf24;
}

.debunk-summary {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 1.5rem;
}

.debunk-summary::-webkit-details-marker {
    display: none;
}

.debunk-summary::after {
    content: '\\25BC';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.8);
    transition: transform 0.3s ease;
}

.debunk-card[open] .debunk-summary::after {
    transform: rotate(180deg);
}

.debunk-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fbbf24;
}

.debunk-myth {
    font-size: 1.05rem;
    font-weight: 600;
    color: #f9fafb;
    line-height: 1.5;
}

.debunk-reality {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    color: rgba(226, 232, 240, 0.92);
    line-height: 1.7;
    font-size: 0.95rem;
}

.debunk-reality h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

/* Carrousel de citations */
.quote-carousel {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.quote-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.quote-slide blockquote {
    margin: 0;
    padding: 0;
    border: none;
    font-style: italic;
}

.quote-slide blockquote p {
    margin-bottom: 0.5rem;
    color: #e5e7eb;
    line-height: 1.4;
}

.quote-slide blockquote cite {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Smooth scrolling pour les ancres */
html {
    scroll-padding-top: 70px;
}

/* WhatsApp Popup */
.whatsapp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

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

.whatsapp-phone-container {
    position: relative;
    animation: slideUp 0.5s ease forwards;
}

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

.whatsapp-popup-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    border: none;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.whatsapp-popup-close:hover {
    background: #f3f4f6;
    transform: rotate(90deg) scale(1.1);
}

/* Smartphone Device */
.phone-device {
    width: 375px;
    height: 750px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 2px #2a2a2a,
        0 0 0 8px #1a1a1a,
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Notch (encoche du haut) */
.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

/* Écran du téléphone */
.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

/* Iframe contenant whatsApp.html */
.phone-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Barre du bas (home indicator) */
.phone-bottom-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    z-index: 2;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .whatsapp-popup {
        padding: 10px;
    }

    .phone-device {
        width: 100%;
        max-width: 360px;
        height: 85vh;
        max-height: 700px;
    }

    .whatsapp-popup-close {
        top: -45px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

@media (max-width: 400px) {
    .phone-device {
        border-radius: 30px;
        padding: 8px;
    }

    .phone-screen {
        border-radius: 24px;
    }

    .phone-notch {
        width: 120px;
        height: 24px;
    }
}

/* Animation de pulsation pour attirer l'attention */
@keyframes phonePulse {
    0%, 100% {
        box-shadow:
            0 0 0 2px #2a2a2a,
            0 0 0 8px #1a1a1a,
            0 30px 80px rgba(0, 0, 0, 0.5),
            0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow:
            0 0 0 2px #2a2a2a,
            0 0 0 8px #1a1a1a,
            0 30px 80px rgba(0, 0, 0, 0.5),
            0 10px 30px rgba(0, 0, 0, 0.3),
            0 0 0 12px rgba(37, 211, 102, 0.2);
    }
}

.phone-device {
    animation: phonePulse 2s ease-in-out 1s 1;
}

/* Myth Reality Header avec bouton WhatsApp */
.myth-reality-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.myth-reality-header h3 {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.btn-whatsapp-debate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}

.btn-whatsapp-debate:hover {
    background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-debate:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-debate i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .myth-reality-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .myth-reality-header h3 {
        min-width: 100%;
    }

    .btn-whatsapp-debate {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 16px;
    }
}
