/* ===================================================
   SEO-PAGES.CSS — Site Laurence Traineau-Roy
   CSS partagé pour toutes les pages SEO thématiques
   Extrait de index.html + nouvelles classes
   =================================================== */

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

:root {
    --primary: #5B21B6;
    --secondary: #059669;
    --accent: #DC2626;
    --text: #0F172A;
    --text-light: #475569;
    --bg-violet-dilue: rgba(191, 219, 254, 0.3);
    --bg-vert-dilue: rgba(167, 243, 208, 0.3);
    --bg-jaune-dilue: rgba(253, 224, 71, 0.3);
    --bg-white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text);
    background: #FFFFFF;
}

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

/* TYPOGRAPHY */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.section-conclusion {
    text-align: center;
    font-size: 1rem;
    font-style: italic;
    margin: 2rem auto;
    max-width: 700px;
}

/* NAVIGATION */
.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.875rem 0;
}

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

.nav-brand {
    text-decoration: none;
}

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

.logo-subtitle {
    font-size: 0.6875rem;
    color: var(--text-light);
}

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

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* NAV DROPDOWN */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0.75rem;
    padding: 0.5rem 0;
    min-width: 230px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 1001;
    list-style: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-menu li a:hover {
    background: var(--bg-violet-dilue);
    color: var(--primary);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(91, 33, 182, 0.3);
}

.btn-primary:hover {
    background: #6D28D9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.4);
}

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

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

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

/* HEADER BUTTON STYLE */
.nav-menu .btn-primary {
    background: white !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    box-shadow: none !important;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.875rem !important;
}

.nav-menu .btn-primary:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.25) !important;
}

/* FIL D'ARIANE */
.breadcrumb {
    padding: 0.75rem 0;
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--text-light);
}

.breadcrumb-list a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

/* ==== VAGUES ANIMÉES ==== */
@keyframes waveFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

section {
    padding: 3.5rem 0;
    position: relative;
}

/* Hero - Fond violet dilué */
.hero {
    background: var(--bg-violet-dilue);
    padding: 4rem 0 calc(5rem + 3vw);
}

/* Symptoms - Fond vert avec VAGUE */
.symptoms {
    background: var(--bg-vert-dilue);
    clip-path: polygon(
        0 8%, 5% 7%, 10% 9%, 15% 7%, 20% 8%, 25% 7%, 30% 9%, 35% 7%, 40% 8%,
        45% 7%, 50% 9%, 55% 7%, 60% 8%, 65% 7%, 70% 9%, 75% 7%, 80% 8%,
        85% 7%, 90% 9%, 95% 7%, 100% 8%, 100% 100%, 0 100%
    );
    padding-top: calc(3.5rem + 8vw);
    padding-bottom: calc(3.5rem + 3vw);
    margin-top: -8vw;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.06));
    animation: waveFloat 6s ease-in-out infinite;
}

/* Transformation - Fond blanc avec VAGUE */
.transformation {
    background: var(--bg-white);
    clip-path: polygon(
        0 8%, 5% 9%, 10% 7%, 15% 9%, 20% 7%, 25% 8%, 30% 7%, 35% 9%, 40% 7%,
        45% 8%, 50% 7%, 55% 9%, 60% 7%, 65% 8%, 70% 7%, 75% 9%, 80% 7%,
        85% 8%, 90% 7%, 95% 9%, 100% 8%, 100% 100%, 0 100%
    );
    padding-top: calc(3.5rem + 8vw);
    padding-bottom: calc(3.5rem + 3vw);
    margin-top: -8vw;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.06));
    animation: waveFloat 6s ease-in-out infinite 0.5s;
}

/* Approach - Fond jaune avec VAGUE */
.approach {
    background: var(--bg-jaune-dilue);
    clip-path: polygon(
        0 8%, 5% 7%, 10% 9%, 15% 7%, 20% 8%, 25% 7%, 30% 9%, 35% 7%, 40% 8%,
        45% 7%, 50% 9%, 55% 7%, 60% 8%, 65% 7%, 70% 9%, 75% 7%, 80% 8%,
        85% 7%, 90% 9%, 95% 7%, 100% 8%, 100% 100%, 0 100%
    );
    padding-top: calc(3.5rem + 8vw);
    padding-bottom: calc(3.5rem + 3vw);
    margin-top: -8vw;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.06));
    animation: waveFloat 6s ease-in-out infinite 1s;
}

/* Trust - Fond violet avec VAGUE */
.trust-section {
    background: var(--bg-violet-dilue);
    clip-path: polygon(
        0 8%, 5% 9%, 10% 7%, 15% 9%, 20% 7%, 25% 8%, 30% 7%, 35% 9%, 40% 7%,
        45% 8%, 50% 7%, 55% 9%, 60% 7%, 65% 8%, 70% 7%, 75% 9%, 80% 7%,
        85% 8%, 90% 7%, 95% 9%, 100% 8%, 100% 97%, 95% 98%, 90% 97%, 85% 98%,
        80% 97%, 75% 98%, 70% 97%, 65% 98%, 60% 97%, 55% 98%, 50% 97%,
        45% 98%, 40% 97%, 35% 98%, 30% 97%, 25% 98%, 20% 97%, 15% 98%,
        10% 97%, 5% 98%, 0 97%
    );
    padding-top: calc(3.5rem + 8vw);
    padding-bottom: calc(3.5rem + 5vw);
    margin-top: -8vw;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.06));
    animation: waveFloat 6s ease-in-out infinite 1.5s;
}

/* Benefits - Fond blanc */
.benefits {
    background: var(--bg-white);
    padding-bottom: calc(3.5rem + 3vw);
}

/* Steps - Fond vert avec VAGUE */
.steps {
    background: var(--bg-vert-dilue);
    clip-path: polygon(
        0 8%, 5% 7%, 10% 9%, 15% 7%, 20% 8%, 25% 7%, 30% 9%, 35% 7%, 40% 8%,
        45% 7%, 50% 9%, 55% 7%, 60% 8%, 65% 7%, 70% 9%, 75% 7%, 80% 8%,
        85% 7%, 90% 9%, 95% 7%, 100% 8%, 100% 100%, 0 100%
    );
    padding-top: calc(3.5rem + 8vw);
    padding-bottom: calc(3.5rem + 3vw);
    margin-top: -8vw;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.06));
    animation: waveFloat 6s ease-in-out infinite 2s;
}

/* Testimonials - Fond blanc avec VAGUE */
.testimonials {
    background: var(--bg-white);
    clip-path: polygon(
        0 8%, 5% 9%, 10% 7%, 15% 9%, 20% 7%, 25% 8%, 30% 7%, 35% 9%, 40% 7%,
        45% 8%, 50% 7%, 55% 9%, 60% 7%, 65% 8%, 70% 7%, 75% 9%, 80% 7%,
        85% 8%, 90% 7%, 95% 9%, 100% 8%, 100% 100%, 0 100%
    );
    padding-top: calc(3.5rem + 8vw);
    padding-bottom: calc(3.5rem + 3vw);
    margin-top: -8vw;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.06));
    animation: waveFloat 6s ease-in-out infinite 2.5s;
}

/* SEO Content - Fond jaune avec VAGUE */
.seo-content-section {
    background: var(--bg-jaune-dilue);
    clip-path: polygon(
        0 8%, 5% 7%, 10% 9%, 15% 7%, 20% 8%, 25% 7%, 30% 9%, 35% 7%, 40% 8%,
        45% 7%, 50% 9%, 55% 7%, 60% 8%, 65% 7%, 70% 9%, 75% 7%, 80% 8%,
        85% 7%, 90% 9%, 95% 7%, 100% 8%, 100% 100%, 0 100%
    );
    padding-top: calc(3.5rem + 8vw);
    padding-bottom: calc(3.5rem + 3vw);
    margin-top: -8vw;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.06));
    animation: waveFloat 6s ease-in-out infinite 3s;
}

.seo-text-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(91, 33, 182, 0.15);
}

.seo-text-block h3:first-child {
    margin-top: 0;
}

.seo-text-block p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.seo-text-block a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.seo-text-block a:hover {
    color: #6D28D9;
}

/* FAQ - Fond blanc avec VAGUE RÉDUITE */
.faq-section {
    background: var(--bg-white);
    clip-path: polygon(
        0 5%, 5% 6%, 10% 4%, 15% 6%, 20% 4%, 25% 5%, 30% 4%, 35% 6%, 40% 4%,
        45% 5%, 50% 4%, 55% 6%, 60% 4%, 65% 5%, 70% 4%, 75% 6%, 80% 4%,
        85% 5%, 90% 4%, 95% 6%, 100% 5%, 100% 100%, 0 100%
    );
    padding-top: calc(3.5rem + 5vw);
    padding-bottom: calc(3.5rem + 3vw);
    margin-top: -5vw;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.06));
    animation: waveFloat 6s ease-in-out infinite 3.5s;
}

/* CTA Final - Fond violet avec VAGUE */
.cta-final {
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.72) 0%, rgba(124, 58, 237, 0.72) 100%);
    color: white;
    text-align: center;
    clip-path: polygon(
        0 8%, 5% 9%, 10% 7%, 15% 9%, 20% 7%, 25% 8%, 30% 7%, 35% 9%, 40% 7%,
        45% 8%, 50% 7%, 55% 9%, 60% 7%, 65% 8%, 70% 7%, 75% 9%, 80% 7%,
        85% 8%, 90% 7%, 95% 9%, 100% 8%, 100% 100%, 0 100%
    );
    padding: calc(3.5rem + 8vw) 0 3.5rem 0;
    margin-top: -8vw;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.06));
    animation: waveFloat 6s ease-in-out infinite 4s;
}

.cta-final .section-title,
.cta-final .section-subtitle {
    color: white;
}

/* HERO */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin: 1.25rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.feature-icon {
    color: var(--secondary);
    font-size: 1.125rem;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    background: white;
    border-radius: 0.75rem;
    margin: 1.25rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: fit-content;
}

.rating-logo {
    height: 36px;
    width: auto;
}

.rating-stars {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--text);
}

.stars {
    color: #FFC107;
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 1.25rem 0;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.hero-photo, .portrait {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* SYMPTOMS */
.symptoms-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 0.875rem;
}

.symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.symptom-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.symptom-icon {
    color: var(--primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.symptom-text {
    font-size: 0.875rem;
    color: var(--text);
}

/* TRANSFORMATION */
.comparison-grid {
    display: grid;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.875rem;
    align-items: center;
    padding: 1rem;
    background: var(--bg-vert-dilue);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.comparison-before {
    text-align: right;
    padding: 0.625rem;
    background: #FEE2E2;
    border-radius: 0.5rem;
}

.comparison-before p {
    font-size: 0.875rem;
    color: var(--accent);
    margin: 0;
}

.comparison-arrow {
    font-size: 1.375rem;
    color: var(--primary);
    font-weight: bold;
}

.comparison-after {
    padding: 0.625rem;
    background: #D1FAE5;
    border-radius: 0.5rem;
}

.comparison-after p {
    font-size: 0.875rem;
    color: var(--secondary);
    margin: 0;
}

/* APPROACH */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin: 1.75rem 0;
}

.pillar {
    text-align: center;
    padding: 1.75rem;
    background: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 33, 182, 0.15);
}

.pillar-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 0.875rem;
}

.pillar-title {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
}

.pillar-description {
    font-size: 0.875rem;
}

.credentials {
    max-width: 800px;
    margin: 2.5rem auto;
    padding: 1.75rem;
    background: white;
    border-radius: 1rem;
    border-left: 4px solid var(--primary);
}

.credentials-title {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 0.875rem;
}

.credentials-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credentials-list li {
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
}

.credentials-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* TRUST */
.trust-title {
    text-align: center;
    margin-bottom: 1.75rem;
}

.trust-track {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.trust-logo {
    height: 45px;
    width: auto;
    opacity: 1;
    filter: none;
}

.trust-rating {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.9375rem;
}

/* BENEFITS */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.benefits-photo {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin: 1.25rem 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    padding: 0.625rem;
    background: var(--bg-violet-dilue);
    border-radius: 0.5rem;
}

.benefits-list li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.benefits-projection {
    padding: 1.25rem;
    background: linear-gradient(135deg, #F3E8FF 0%, #E0E7FF 100%);
    border-radius: 0.75rem;
    margin: 1.25rem 0;
}

.benefits-projection em {
    font-size: 0.9375rem;
    color: var(--primary);
}

.benefits-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.25rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-icon {
    width: 54px;
    height: 54px;
    margin: 0.875rem auto;
}

.step-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
}

.step-arrow {
    font-size: 1.75rem;
    color: var(--primary);
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.testimonial-card {
    padding: 1.75rem;
    background: var(--bg-vert-dilue);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: #FFC107;
    font-size: 1.125rem;
    margin-bottom: 0.875rem;
}

.testimonial-text {
    font-size: 0.875rem;
    font-style: italic;
    margin-bottom: 0.875rem;
    color: var(--text);
}

.testimonial-author {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
}

/* INTERNAL LINKS BLOCK */
.internal-links-block {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(243, 232, 255, 0.8) 0%, rgba(224, 231, 255, 0.8) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(91, 33, 182, 0.1);
}

.internal-links-block h3 {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: none;
}

.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.875rem;
}

.internal-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: white;
    border-radius: 0.75rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.8125rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(91, 33, 182, 0.08);
}

.internal-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.15);
    color: var(--primary);
    border-color: rgba(91, 33, 182, 0.2);
}

.internal-link-icon {
    font-size: 1.5rem;
}

/* FAQ */
.faq-title {
    text-align: center;
    margin-bottom: 1.75rem;
}

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

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.faq-item {
    background: var(--bg-jaune-dilue);
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.125rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.375rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 1.125rem 1.125rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FOOTER */
.footer {
    background: var(--text);
    color: white;
    padding: 2.5rem 0 1rem;
}

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

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
    font-size: 0.9375rem;
    margin-bottom: 0.875rem;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.footer-info {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

/* ANIMATIONS SCROLL */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal:nth-child(1) { transition-delay: 0s; }
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.4s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.5s; }
.scroll-reveal:nth-child(7) { transition-delay: 0.6s; }
.scroll-reveal:nth-child(8) { transition-delay: 0.7s; }
.scroll-reveal:nth-child(9) { transition-delay: 0.8s; }
.scroll-reveal:nth-child(10) { transition-delay: 0.9s; }

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav {
        padding: 0.5rem 0 !important;
        position: fixed !important;
        top: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
    }
    .nav-container {
        padding: 0 1rem !important;
    }
    .logo-text {
        font-size: 0.875rem !important;
    }
    .logo-subtitle {
        font-size: 0.625rem !important;
    }
    .nav-menu {
        display: none !important;
    }
    .nav-dropdown-menu {
        display: none !important;
    }

    body {
        padding-top: 60px !important;
    }

    .hero-content, .benefits-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .hero-image {
        order: -1;
        max-width: 250px;
        margin: 0 auto 1.5rem;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-rating {
        margin: 1rem auto;
    }

    section {
        padding: 2rem 0 !important;
    }
    .container {
        padding: 0 1.25rem !important;
    }

    .symptoms, .transformation, .approach, .trust-section,
    .steps, .testimonials, .seo-content-section, .faq-section, .cta-final {
        animation: none !important;
    }

    .steps-grid,
    .steps-simple,
    .steps-grid:not(:has(.step-arrow)) {
        grid-template-columns: 1fr !important;
    }

    .step-arrow {
        display: none;
    }

    .comparison-card {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .comparison-before {
        text-align: center;
    }

    .internal-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scroll-reveal,
    .scroll-reveal-left,
    .scroll-reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }

    h1 {
        font-size: 1.875rem !important;
    }

    .section-title {
        font-size: 1.625rem !important;
    }
}

@media (max-width: 480px) {
    .hero-cta,
    .cta-center,
    .benefits-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .internal-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
