/* ============================================================
   MAIN.CSS — Site Laurence Traineau-Roy
   CSS unifié — Design Pro / Personal Brand
   ============================================================ */

/* ---- 1. RESET & VARIABLES ---- */

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

:root {
    --primary:        #5B21B6;
    --primary-dark:   #3B0F8C;
    --primary-light:  #7C3AED;
    --secondary:      #059669;
    --green:          #16A34A;
    --green-soft:     #DCFCE7;
    --accent:         #DC2626;
    --accent-warm:    #F0EEFF;
    --bg:             #F8F7FF;
    --surface:        #FFFFFF;
    --dark:           #0F0A2A;
    --soft-green:     #F0FDF4;
    --soft-yellow:    #FEFCE8;
    --text:           #0F0A2A;
    --text-muted:     #6B7280;
    --text-light:     #6B7280;
    --bg-light:       #F0EEFF;
    --border:         #E5E3F0;
    --shadow-sm:      0 2px 8px rgba(91, 33, 182, 0.06);
    --shadow-md:      0 6px 24px rgba(91, 33, 182, 0.10);
    --shadow-lg:      0 16px 48px rgba(91, 33, 182, 0.14);
    --radius-sm:      0.375rem;
    --radius:         0.625rem;
    --radius-lg:      0.875rem;
    --radius-pill:    50px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
}

/* ---- 2. TYPOGRAPHIE ---- */

h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

/* ---- Section label (petit badge au-dessus des h2) ---- */
.section-label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--accent-warm);
    padding: 0.3rem 0.875rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.section-label.green {
    color: var(--green);
    background: var(--green-soft);
}

.section-label.dark {
    color: #A78BFA;
    background: rgba(167, 139, 250, 0.15);
}

/* ---- Stats row ---- */
.stats-row {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ---- 3. LAYOUT ---- */

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

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 0;
}

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

/* ---- 4. NAVIGATION ---- */

.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    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;
    gap: 1rem;
}

.nav-brand {
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1.2;
}

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

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

.nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-menu > li > a:hover {
    color: var(--primary);
    background: var(--accent-warm);
}

/* Bouton RDV dans nav */
.nav-menu .btn-primary {
    background: var(--primary) !important;
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-pill) !important;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    border: none !important;
    text-decoration: none !important;
}

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

/* ---- 5. DROPDOWN ---- */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown-toggle .fa-chevron-down {
    font-size: 0.6em;
    transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    min-width: 230px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    list-style: none;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
    animation: dropdownFadeIn 0.15s ease-out;
}

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

.nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu li a:hover {
    background: var(--accent-warm);
    color: var(--primary);
}

.nav-dropdown-menu li a i {
    color: var(--primary);
    font-size: 0.875rem;
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

/* ---- 6. HAMBURGER MOBILE ---- */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile nav open */
.nav-menu.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface);
    z-index: 9999;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    overflow-y: auto;
}

.nav-menu.mobile-open li {
    width: 100%;
}

.nav-menu.mobile-open > li > a {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius);
    width: 100%;
}

.nav-menu.mobile-open .nav-dropdown-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--accent-warm);
    margin: 0.25rem 0 0.25rem 1rem;
    padding: 0.25rem 0;
    border-radius: var(--radius);
}

.nav-menu.mobile-open .nav-dropdown-menu li a {
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
}

.nav-close {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10000;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
}

.nav-menu.mobile-open ~ .nav-close,
body.nav-open .nav-close {
    display: block;
}

/* ---- 7. BREADCRUMB ---- */

.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-muted);
    flex-wrap: wrap;
}

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

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

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

/* ---- 8. BOUTONS ---- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1.2;
    white-space: nowrap;
}

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

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

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.btn-secondary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    color: white;
}

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

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

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

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

/* ---- 9. HERO ---- */

.hero {
    background: var(--accent-warm);
    padding: 5rem 0;
}

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

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(91, 33, 182, 0.1);
    padding: 0.3rem 0.875rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin: 0.75rem 0 1.5rem;
    line-height: 1.7;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
}

.feature-icon {
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin: 1.25rem 0;
}

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

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

.rating-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
}

.stars {
    color: #FFC107;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
}

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

.hero-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-photo, .portrait {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* ---- 10. SYMPTOMS ---- */

.symptoms {
    background: var(--soft-green);
}

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

.symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.symptom-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.symptom-text strong {
    font-weight: 600;
    color: var(--text);
}

/* ---- 11. TRANSFORMATION ---- */

.transformation {
    background: var(--surface);
}

.comparison-grid {
    display: grid;
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.comparison-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--soft-green);
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.comparison-before {
    text-align: right;
    padding: 0.625rem 0.875rem;
    background: #FEE2E2;
    border-radius: var(--radius-sm);
}

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

.comparison-arrow {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
    text-align: center;
}

.comparison-after {
    padding: 0.625rem 0.875rem;
    background: #D1FAE5;
    border-radius: var(--radius-sm);
}

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

/* ---- 12. APPROACH ---- */

.approach {
    background: var(--soft-yellow);
}

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

.pillar {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(91, 33, 182, 0.12);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: block;
}

.pillar-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.pillar-description {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Bloc formations */
.credentials {
    max-width: 800px;
    margin: 2.5rem auto 0;
    padding: 1.75rem 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.credentials-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.credentials-list li {
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

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

/* ---- 13. TRUST ---- */

.trust-section {
    background: var(--accent-warm);
}

.trust-title {
    text-align: center;
    margin-bottom: 2rem;
}

/* Pill badges replacing old logo images */
.trust-badges-row {
    display: flex;
    gap: 0.875rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    background: var(--surface);
    border: 1.5px solid var(--border, #E5E7EB);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-badge-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    color: var(--text);
}

/* Legacy trust-logo for other pages */
.trust-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.trust-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.trust-logo:hover {
    opacity: 1;
}

.trust-rating {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

/* ---- 14. BENEFITS ---- */

.benefits {
    background: var(--surface);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.benefits-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text);
    padding: 0.625rem 1rem;
    background: var(--accent-warm);
    border-radius: var(--radius-sm);
}

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

.benefits-projection {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #F3E8FF 0%, #EDE9FE 100%);
    border-radius: var(--radius);
    margin: 1.25rem 0;
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.7;
}

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

/* ---- 15. STEPS ---- */

.steps {
    background: var(--soft-green);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
    align-items: center;
}

/* Steps sans flèches — classe directe (compat tous navigateurs) + :not(:has) moderne */
.steps-simple,
.steps-grid:not(:has(.step-arrow)) {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
    align-items: start;
}

.step {
    text-align: center;
    padding: 2rem 1.25rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.step-icon {
    width: 52px;
    height: 52px;
    margin: 0.5rem auto 0.875rem;
    display: block;
}

.step-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.375rem;
}

.step-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- 16. TÉMOIGNAGES ---- */

.testimonials {
    background: var(--surface);
}

/* Dark variant */
.testimonials.dark {
    background: var(--dark);
}

.testimonials.dark .section-title {
    color: white;
}

.testimonials.dark .section-subtitle {
    color: rgba(255,255,255,0.6);
}

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

.testimonial-card {
    padding: 1.75rem;
    background: var(--accent-warm);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Dark card variant */
.testimonials.dark .testimonial-card {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
}

.testimonials.dark .testimonial-card:hover {
    background: rgba(255,255,255,0.08);
}

.testimonials.dark .testimonial-text {
    color: rgba(255,255,255,0.85);
}

.testimonials.dark .testimonial-author strong {
    color: white;
}

.testimonials.dark .testimonial-author span {
    color: rgba(255,255,255,0.45);
}

.testimonials.dark .testimonial-avatar {
    background: var(--primary-light);
    color: white;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #FFC107;
    font-size: 1rem;
    margin-bottom: 0.875rem;
    letter-spacing: 0.05em;
}

.testimonial-text {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.testimonial-source {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-top: 0.125rem;
}

/* ---- 17. SECTION SEO CONTENT ---- */

.seo-content-section {
    background: var(--soft-yellow);
}

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

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

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

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

.seo-text-block a:hover {
    color: var(--primary-light);
}

/* ---- 18. FAQ ---- */

.faq-section {
    background: var(--accent-warm);
}

.faq-title {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.faq-item {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.125rem 1.25rem;
    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;
    gap: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s;
}

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

.faq-icon {
    font-size: 1.25rem;
    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.35s ease;
}

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.75;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
    margin: 0;
}

/* ---- 19. CTA FINAL ---- */

.cta-final {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-final .section-title,
.cta-final .section-subtitle,
.cta-final p {
    color: rgba(255, 255, 255, 0.9);
}

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

.cta-final .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-final .btn-primary:hover {
    background: var(--accent-warm);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.cta-final .btn-outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.cta-final .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
}

/* ---- 20. LOCATION ---- */

.location-section {
    background: var(--soft-green);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 2rem 0;
}

.location-map {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-container {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-details {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.location-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.location-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.location-address {
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.location-address strong {
    color: var(--primary);
    font-weight: 600;
}

.location-access {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.location-visio {
    display: flex;
}

.visio-card {
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
}

.visio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.visio-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.visio-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.875rem;
}

.visio-description {
    font-size: 0.9375rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

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

.visio-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    background: var(--soft-green);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--text);
}

.benefit-check {
    color: var(--secondary);
    font-weight: 700;
    flex-shrink: 0;
}

.visio-platforms {
    margin: 1.25rem 0;
    padding: 1rem 1.25rem;
    background: var(--soft-yellow);
    border-radius: var(--radius-sm);
}

.visio-platforms-title {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0.625rem;
}

.platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.platform-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--surface);
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.visio-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.visio-note {
    margin-top: 0.625rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
}

.opening-hours {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.opening-title {
    text-align: center;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hours-grid {
    display: grid;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--accent-warm);
    border-radius: var(--radius-sm);
    transition: background 0.2s, transform 0.2s;
}

.hours-item:hover {
    background: var(--soft-green);
    transform: translateX(4px);
}

.day {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9375rem;
}

.time {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9375rem;
}

.hours-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

/* ---- 21. FOOTER ---- */

.footer {
    background: var(--text);
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.375rem;
}

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

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

.footer-heading {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.875rem;
}

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

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

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

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

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

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

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

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

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

/* ---- 22. SCROLL ANIMATIONS ---- */

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    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(-30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

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

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

/* ---- 23. UTILITAIRES ---- */

/* Liens internes */
.internal-links-block {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(245, 243, 255, 0.9) 0%, rgba(237, 233, 254, 0.9) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

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

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

.internal-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 0.875rem 0.625rem;
    background: var(--surface);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.8125rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    border: 1px solid var(--border);
}

.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.375rem;
}

/* Pricing */
.pricing {
    background: var(--surface);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    padding: 1rem 0;
    align-items: stretch;
}

.pricing-card {
    background: #FEF9F3;
    padding: 1.5rem 1.25rem 1.375rem;
    border-radius: var(--radius-lg);
    text-align: left;
    border: 1px solid #EDE3D6;
    transition: box-shadow 0.28s ease, background 0.28s ease, transform 0.28s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(91, 33, 182, 0.14);
    background: #FEF2E0;
}

/* Icon wrap */
.pricing-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1875rem;
    margin-bottom: 0.875rem;
    flex-shrink: 0;
    /* default = purple */
    background: #EDE9FE;
    color: var(--primary);
    transition: transform 0.25s ease;
}

.pricing-card:hover .pricing-icon-wrap {
    transform: scale(1.1);
}

.pricing-accent-bar {
    width: 2rem;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 1rem;
}

.pricing-emoji {
    display: none;
}

.pricing-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.pricing-tagline {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 1.125rem;
    flex: 1;
}

.pricing-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: auto;
}

.pricing-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    white-space: nowrap;
    line-height: 1.2;
}

.pricing-per {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
}

.pricing-time {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}

.pricing-time i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.pricing-duration {
    white-space: nowrap;
}

.pricing-meta-sep { display: none; }

.pricing-description {
    display: none;
}

/* ── Card themes ── */

/* Free */
.pricing-card-free {
    background: #F0FDF7;
    border: 1px solid #A7F3D0;
}
.pricing-card-free:hover {
    background: #E0FAF0;
    box-shadow: 0 10px 32px rgba(22, 163, 74, 0.16);
}
.pricing-card-free .pricing-icon-wrap {
    background: #DCFCE7;
    color: #16A34A;
}
.pricing-card-free .pricing-accent-bar { background: var(--green); }
.pricing-card-free .pricing-price      { color: var(--green); }

/* Student */
.pricing-card-student .pricing-icon-wrap {
    background: #DBEAFE;
    color: #2563EB;
}
.pricing-card-student .pricing-accent-bar { background: #2563EB; }
.pricing-card-student .pricing-price      { color: #2563EB; }
.pricing-card-student:hover {
    background: #EFF6FF;
    box-shadow: 0 10px 32px rgba(37, 99, 235, 0.14);
}

/* Individual (default purple already) */
.pricing-card-individual:hover {
    background: #F3F0FF;
    box-shadow: 0 10px 32px rgba(91, 33, 182, 0.16);
}

/* Couple */
.pricing-card-couple .pricing-icon-wrap {
    background: #FCE7F3;
    color: #BE185D;
}
.pricing-card-couple .pricing-accent-bar { background: #BE185D; }
.pricing-card-couple .pricing-price      { color: #BE185D; }
.pricing-card-couple:hover {
    background: #FDF2F8;
    box-shadow: 0 10px 32px rgba(190, 24, 93, 0.14);
}

/* Family */
.pricing-card-family .pricing-icon-wrap {
    background: #FFEDD5;
    color: #EA580C;
}
.pricing-card-family .pricing-accent-bar { background: #EA580C; }
.pricing-card-family .pricing-price      { color: #EA580C; }
.pricing-card-family:hover {
    background: #FFF7ED;
    box-shadow: 0 10px 32px rgba(234, 88, 12, 0.14);
}

/* ---- 24. ALIASES & CLASSES SPÉCIFIQUES AUX PAGES SEO ---- */
/* Les pages SEO utilisent leurs propres noms de classes.
   Ces règles les mappent au design system unifié.          */

/* --- Nav SEO --- */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-links > li > a {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-links > li > a:hover {
    color: var(--primary);
    background: var(--accent-warm);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--surface);
    z-index: 9999;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    overflow-y: auto;
}

.nav-links.active li {
    width: 100%;
}

.nav-links.active > li > a {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius);
    width: 100%;
}

.nav-links.active .nav-dropdown-menu {
    display: flex !important;
    flex-direction: column;
    position: static;
    box-shadow: none;
    border: none;
    background: var(--accent-warm);
    margin: 0.25rem 0 0.25rem 1rem;
    padding: 0.25rem 0;
    border-radius: var(--radius);
}

.nav-brand-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1.2;
}

.nav-brand-title {
    font-size: 0.6875rem;
    color: var(--text-muted);
    display: block;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.3);
}

/* Nav toggle (hamburger icon via <i> tag) */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text);
    font-size: 1.25rem;
}

/* --- Boutons standalone (sans classe .btn) --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(91, 33, 182, 0.3);
    white-space: nowrap;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    color: white;
}

.btn-large {
    padding: 1.125rem 2.5rem !important;
    font-size: 1.0625rem !important;
}

/* --- Hero SEO --- */
.hero-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--accent-warm);
    padding: 0.3rem 0.875rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

/* Hero image SEO pages — photo détourée */
.hero-image img {
    filter: drop-shadow(0 16px 40px rgba(91,33,182,0.15));
    object-fit: contain;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
}

.hero-feature i {
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0 0.5rem;
    flex-wrap: wrap;
}

.hero-image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: white;
    border-radius: 1.125rem;
    box-shadow: 0 8px 32px rgba(91,33,182,0.18), 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(91,33,182,0.08);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(4px);
}

.hero-image-badge i {
    font-size: 1.375rem;
    color: #F59E0B;
    flex-shrink: 0;
}

.hero-image-badge strong {
    display: block;
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-image-badge span {
    display: block;
    font-size: 0.71875rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.3;
    margin-top: 0.125rem;
}

/* --- Symptoms grid SEO --- */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

/* Symptom-item reskinné en card moderne */
.symptom-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: flex;
    gap: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.symptom-item:hover {
    border-color: rgba(91,33,182,0.3);
    box-shadow: var(--shadow-sm);
}

.symptom-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--accent-warm);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
}

.symptoms-grid .symptom-item h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.symptoms-grid .symptom-item p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

/* --- Transformation SEO --- */
.transformation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.comparison-card.before {
    background: #FEF2F2;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid #FECACA;
}

.comparison-card.after {
    background: #F0FDF4;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid #BBF7D0;
}

.comparison-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    padding: 0.25rem 0.875rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.comparison-card.before .comparison-label {
    background: #FECACA;
    color: var(--accent);
}

.comparison-card.after .comparison-label {
    background: #BBF7D0;
    color: var(--secondary);
}

.comparison-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.comparison-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.5;
}

.comparison-card.before ul li i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.comparison-card.after ul li i {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* --- Approach SEO --- */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 1.5rem;
}

.approach-pillar {
    padding: 2rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.approach-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(91, 33, 182, 0.12);
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(91, 33, 182, 0.12);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.approach-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-warm);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.approach-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.credentials-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.credentials-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 200px;
    min-width: 200px;
}

.credentials-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.credentials-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

.credentials-item span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* --- Trust section SEO — reskin en pills compactes --- */
.trust-logos {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

.trust-logos .trust-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    cursor: default;
}

.trust-logos .trust-logo i,
.trust-logos .trust-logo > i {
    font-size: 1rem;
}

.trust-logos .trust-logo > div {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.trust-logos .trust-logo span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
}

.trust-stars {
    color: #FFC107;
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
}

/* --- Benefits image wrapper SEO --- */
.benefits-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefits-image img {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.benefits-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.benefits-content .benefits-projection {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.benefits-content .benefits-projection i {
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.benefits-list li {
    background: var(--accent-warm);
    align-items: flex-start !important;
}

.benefits-list li::before {
    display: none;
}

.benefits-list li i {
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* --- Steps SEO --- */
.step-card {
    text-align: center;
    padding: 2rem 1.25rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.step-card .step-number {
    position: static;
    transform: none;
    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: 0.9375rem;
    margin: 0 auto 1rem;
}

.step-card .step-icon {
    width: auto;
    height: auto;
    margin: 0 auto 0.875rem;
    font-size: 2rem;
    color: var(--primary);
}

.step-card .step-icon i {
    font-size: 2rem;
    color: var(--primary);
}

/* --- Testimonials SEO --- */
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-author span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- FAQ SEO --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ uses <i class="fas fa-chevron-down"> — rotate on active */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

/* --- CTA Final SEO --- */
.cta-final-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-final-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-final-content p {
    color: rgba(255, 255, 255, 0.85);
}

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

.cta-final .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-final .btn-primary:hover {
    background: var(--accent-warm);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.cta-final .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    box-shadow: none;
}

.cta-final .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
}

/* --- Footer SEO --- */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.375rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-nav h4,
.footer-specialties h4,
.footer-contact h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.875rem;
}

.footer-nav ul,
.footer-specialties ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.footer-specialties a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover,
.footer-specialties a:hover {
    color: white;
}

.footer-contact ul li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    line-height: 1.6;
}

.footer-contact ul li i {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

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

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ---- 25. RESPONSIVE ---- */

@media (max-width: 768px) {
    /* Nav */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0.75rem 0;
    }

    .nav-menu {
        display: none;
    }

    /* SEO pages use .nav-links — hide on mobile, show via .active class */
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    body {
        padding-top: 60px;
    }

    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.125rem; }

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

    /* Sections */
    section { padding: 3.5rem 0; }

    .container { padding: 0 1.25rem; }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-photo {
        max-width: 260px;
        margin: 0 auto 1.5rem;
    }

    .hero-features {
        align-items: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-rating {
        margin: 1rem auto;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Comparison */
    .comparison-card {
        grid-template-columns: 1fr;
    }

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

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

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        transform: rotate(90deg);
        height: 30px;
    }

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

    /* Transformation grid (SEO pages) */
    .transformation-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials (force single col on narrow tablets) */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Location */
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-details {
        flex-direction: column;
        text-align: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

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

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.375rem; }
    h3 { font-size: 1.0625rem; }

    .section-title { font-size: 1.375rem; }

    section { padding: 2.5rem 0; }

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

    .container { padding: 0 1rem; }

    .hero-photo {
        max-width: 200px;
    }

    .hero-cta,
    .cta-center,
    .cta-buttons,
    .benefits-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-large {
        font-size: 0.9375rem;
        padding: 0.875rem 1.25rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .internal-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .cta-box {
        padding: 2rem 1.25rem;
    }

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

/* ---- EXTRAS index.html ---- */

/* Social media section */
.social-media {
    background: var(--surface);
    padding: 3.5rem 0;
    text-align: center;
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.75rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--accent-warm);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-width: 140px;
    border: 1px solid var(--border);
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.social-link .social-icon {
    font-size: 2rem;
}

.social-link.instagram .social-icon { color: #E1306C; }
.social-link.tiktok .social-icon { color: #000000; }

.social-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
}

.social-handle {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Footer links column alias */
.footer-links {
    /* identical to .footer-nav column */
}

.footer-links h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.875rem;
}

/* Trust marquee wrapper */
.trust-marquee {
    margin-bottom: 1rem;
}

.pricing-free-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--green-soft);
    color: var(--green);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.625rem;
    border-radius: 2px;
    margin-bottom: 0.875rem;
}

/* Benefits projection (p version) */
.benefits-projection em {
    font-size: 0.9375rem;
    color: var(--primary);
    display: block;
}

/* ============================================================
   NOUVEAUX COMPOSANTS — Redesign Pro
   ============================================================ */

/* ---- Section about (nouvelle section) ---- */
.about-section {
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 5rem;
    align-items: center;
}

.about-photo-wrap {
    position: relative;
}

.about-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 60%, #6D28D9 100%);
    color: white;
    padding: 1.375rem 1.625rem;
    border-radius: 1.375rem;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 12px 40px rgba(91,33,182,0.38), 0 2px 8px rgba(91,33,182,0.2);
    line-height: 1.3;
    border: 1px solid rgba(255,255,255,0.18);
    min-width: 130px;
}

.about-badge .badge-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.about-badge .badge-text {
    font-size: 0.78125rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.01em;
    margin-top: 0.25rem;
}

.about-credentials {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--accent-warm);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--primary);
}

.about-credentials h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.875rem;
}

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

.about-credentials li {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.about-credentials li::before {
    content: "→";
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- Hero photo avec fond transparent ---- */
.hero-photo-transparent {
    width: 100%;
    max-width: 420px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 20px 48px rgba(91,33,182,0.18));
}

/* ---- Hero background accent ---- */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,33,182,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- Symptoms grid 2 colonnes ---- */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 960px;
    margin: 2rem auto;
}

.symptom-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.symptom-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.symptom-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    background: var(--accent-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9375rem;
    flex-shrink: 0;
}

.symptom-card strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.symptom-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ---- CTA Final dark ---- */
.cta-final-dark {
    background: var(--dark);
}

.cta-final-dark .section-title {
    color: white;
    font-size: 2.5rem;
    letter-spacing: -0.04em;
}

.cta-final-dark .section-subtitle {
    color: rgba(255,255,255,0.65);
    font-size: 1.0625rem;
    max-width: 520px;
    margin: 0 auto 2rem;
    text-align: center;
}

.cta-final-dark .btn-primary {
    background: white;
    color: var(--primary);
    font-weight: 700;
}

.cta-final-dark .btn-primary:hover {
    background: var(--accent-warm);
    transform: translateY(-2px);
}

.cta-final-dark .btn-secondary {
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.cta-final-dark .btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
}

.cta-phone-label {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
}

/* ---- Portrait selfie rotated ---- */
.portrait-rotated {
    transform: rotate(90deg);
}

/* ---- About responsive ---- */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-photo-wrap {
        max-width: 380px;
        margin: 0 auto;
    }

    .about-badge {
        right: 0;
    }

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

@media (max-width: 768px) {
    .hero-photo-transparent {
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-final-dark .section-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .stats-row {
        gap: 1.5rem;
    }

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

    .hero-image-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0.75rem auto 0;
        width: fit-content;
    }
}

/* ============================================================
   CTA FINAL DARK — classes SEO pages
   ============================================================ */

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

.cta-final-dark .cta-final-content h2 {
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: -0.03em;
}

.cta-final-dark .cta-final-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-final-dark .cta-final-content p[style] {
    color: rgba(255, 255, 255, 0.4) !important;
}

.cta-final-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-final-dark .cta-final-buttons .btn-primary {
    background: white;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

.cta-final-dark .cta-final-buttons .btn-primary:hover {
    background: var(--accent-warm);
    transform: translateY(-2px);
}

.cta-final-dark .cta-final-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
    box-shadow: none;
}

.cta-final-dark .cta-final-buttons .btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
    box-shadow: none;
}

/* ============================================================
   SECTION BACKGROUNDS ALTERNÉS — pages SEO
   ============================================================ */

.symptoms { background: var(--bg); }
.transformation { background: var(--surface); }
.approach { background: var(--bg); }
.benefits { background: var(--surface); }
.steps { background: var(--bg); }
.faq-section { background: var(--surface); }

/* Trust section SEO — fond neutre */
.trust-section {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.trust-title {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* Approach pillar — centré et épuré */
.approach-pillar {
    text-align: center;
}

.approach-icon {
    margin: 0 auto 1rem;
}

/* Credentials box — harmonisée */
.credentials-box {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

/* ============================================================
   FOMO BANNER — bannière déroulante sous le menu
   ============================================================ */

.fomo-banner {
    position: sticky;
    top: 0; /* overridden by JS with actual nav height */
    z-index: 990;
    width: 100%;
    background: linear-gradient(90deg, #12044A 0%, #5B21B6 45%, #6D28D9 55%, #12044A 100%);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fomo-banner.fomo-visible {
    max-height: 56px;
}

.fomo-banner-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 3rem 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1;
}

.fomo-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FB923C;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.5);
    animation: fomo-pulse 2s ease-in-out infinite;
}

@keyframes fomo-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(251, 146, 60, 0.5);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(251, 146, 60, 0);
    }
}

.fomo-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fomo-text strong {
    color: white;
    font-weight: 700;
}

.fomo-sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.125rem;
}

.fomo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8125rem;
    padding: 0.3rem 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}

.fomo-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.fomo-close {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    font-size: 1.125rem;
    padding: 0.375rem 0.5rem;
    line-height: 1;
    transition: color 0.2s;
    font-family: inherit;
}

.fomo-close:hover {
    color: white;
}

@media (max-width: 600px) {
    .fomo-text {
        font-size: 0.8125rem;
    }

    .fomo-sep,
    .fomo-cta {
        display: none;
    }

    .fomo-banner-inner {
        padding-right: 2.5rem;
    }
}
