/* ============================================
   EQUILIBRES360 & BASTIEN BRAULT - STYLES
   ============================================ */

:root {
    --primary: #011F3B;
    --accent: #F30A46;
    --accent-light: #ff3d5a;
    --accent-soft: rgba(243, 10, 70, 0.1);
    --light: #f8f9fa;
    --dark: #0a0a0a;
    --gray: #6c757d;
    --gradient: linear-gradient(135deg, var(--primary) 0%, #032a4d 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    
    /* Couleurs douces */
    --soft-pink: #fdf2f4;
    --soft-purple: #f5f0ff;
    --soft-mint: #f0fdf4;
    --purple: #8b5cf6;
    --mint: #10b981;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    overflow-x: hidden;
    background: #fff;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
}

.display-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 650px;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    padding: 0.7rem 0;
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
    /* Forcer le logo en bleu (primary color) */
    filter: brightness(0) saturate(100%) invert(8%) sepia(25%) saturate(4847%) hue-rotate(186deg) brightness(96%) contrast(99%);
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

/* Logo blanc sur fond sombre (hero, sections sombres) */
.logo-white {
    filter: brightness(0) invert(1) !important;
}

/* Navbar sur fond sombre (pages avec header sombre) */
.navbar.navbar-dark .navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar.navbar-dark .nav-link {
    color: #fff !important;
}

.navbar.navbar-dark .nav-link:hover {
    color: var(--accent) !important;
}

.navbar.navbar-dark .navbar-toggler i {
    color: #fff;
}

.navbar.navbar-dark.scrolled .navbar-brand img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(25%) saturate(4847%) hue-rotate(186deg) brightness(96%) contrast(99%);
}

.navbar.navbar-dark.scrolled .nav-link {
    color: var(--primary) !important;
}

.navbar.navbar-dark.scrolled .nav-link:hover {
    color: var(--accent) !important;
}

.navbar.navbar-dark.scrolled .navbar-toggler i {
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    color: var(--primary) !important;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--accent) !important;
}

.btn-cta {
    background: var(--accent);
    color: white !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(243, 10, 70, 0.3);
}

.navbar-toggler {
    border: none !important;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary-custom {
    background: var(--gradient-accent);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(243, 10, 70, 0.25);
}

.btn-primary-custom:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(243, 10, 70, 0.35);
}

.btn-secondary-custom {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.03;
    animation: float 20s ease-in-out infinite;
}

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

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 1.2rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-title .highlight-underline {
    position: relative;
}

.hero-title .highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(243, 10, 70, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-promises {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-promise {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--primary);
}

.hero-promise i {
    color: var(--mint);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(1, 31, 59, 0.2);
}

.hero-stats {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    z-index: 3;
}

.hero-stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stats-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.floating-badge {
    position: absolute;
    top: 50px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    z-index: 3;
    animation: bounce 3s ease-in-out infinite;
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: var(--primary);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

section {
    padding: 6rem 0;
}

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

.section-tag {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ============================================
   SPECIALITY / SERVICE CARDS
   ============================================ */

.speciality {
    background: var(--light);
}

.speciality-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.speciality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.speciality-card:hover::before {
    transform: scaleX(1);
}

.speciality-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.speciality-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.speciality-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   METHOD SECTION
   ============================================ */

.method {
    background: white;
}

.method-timeline {
    position: relative;
    padding: 2rem 0;
}

.method-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;
}

.method-step:last-child {
    margin-bottom: 0;
}

.method-step::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -4rem;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.method-step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(1, 31, 59, 0.3);
}

.step-content {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.step-content:hover {
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.step-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0;
}

/* ============================================
   RESULTS SECTION (Dark)
   ============================================ */

.results {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(243,10,70,0.1) 0%, transparent 70%);
}

.results .section-tag {
    background: rgba(255,255,255,0.1);
    color: white;
}

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

.results .section-subtitle {
    opacity: 0.8;
}

.result-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.result-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.result-card h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.result-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

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

.testimonial-quote {
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h6 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--gray);
}

.testimonial-result {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ============================================
   ABOUT / PRESENTATION
   ============================================ */

.about {
    background: white;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 30px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(243, 10, 70, 0.3);
}

.about-experience-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-experience-label {
    font-size: 0.9rem;
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-list li i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--gradient);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn-primary-custom {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-section .btn-primary-custom:hover {
    background: var(--accent);
    color: white;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.cta-guarantee i {
    color: #10b981;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: var(--light);
}

.contact-info {
    background: var(--primary);
    border-radius: 30px;
    padding: 3rem;
    height: 100%;
    color: white;
}

.contact-info h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item-content h6 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-item-content p, 
.contact-item-content a {
    color: rgba(255,255,255,0.7);
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--accent);
}

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

.contact-form h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.form-floating .form-control {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem 1rem;
    height: auto;
    font-size: 1rem;
}

.form-floating .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(243, 10, 70, 0.1);
}

.form-floating label {
    padding: 1.5rem 1rem;
}

.form-floating textarea.form-control {
    min-height: 150px;
}

.form-select {
    cursor: pointer;
}

/* Alert messages */
.alert {
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    max-width: 300px;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

.footer-bottom a:hover {
    color: var(--accent);
}

/* ============================================
   FLOATING CTA
   ============================================ */

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-cta a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-decoration: none;
}

.floating-cta .phone-btn {
    background: var(--accent);
}

.floating-cta .whatsapp-btn {
    background: #25D366;
}

.floating-cta a:hover {
    transform: scale(1.1);
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */

.page-header {
    background: var(--gradient);
    padding: 10rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(243,10,70,0.15) 0%, transparent 70%);
}

.page-header h1 {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.breadcrumb-custom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    color: white;
}

.breadcrumb-custom span {
    color: rgba(255,255,255,0.5);
}

/* ============================================
   MENTIONS LEGALES / TEXT PAGES
   ============================================ */

.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

/* ============================================
   PILLAR CARDS (for Equilibres360)
   ============================================ */

.pillar-card {
    background: var(--light);
    border-radius: 30px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card.sport {
    background: linear-gradient(135deg, #fef3f2 0%, #fef2f2 100%);
}

.pillar-card.nutrition {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.pillar-card.hypnose {
    background: linear-gradient(135deg, #faf5ff 0%, #f5f3ff 100%);
}

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

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.pillar-card.sport .pillar-icon {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}

.pillar-card.nutrition .pillar-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.pillar-card.hypnose .pillar-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.pillar-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.pillar-card .pillar-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.6;
}

.pillar-list li i {
    flex-shrink: 0;
    margin-top: 4px;
}

.pillar-card.sport .pillar-list li i {
    color: #ef4444;
}

.pillar-card.nutrition .pillar-list li i {
    color: #10b981;
}

.pillar-card.hypnose .pillar-list li i {
    color: #8b5cf6;
}

/* ============================================
   TARGET CARDS
   ============================================ */

.target {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.target::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.target .section-tag {
    background: rgba(255,255,255,0.1);
    color: white;
}

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

.target-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.target-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.target-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.target-card p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   INCLUDE CARDS
   ============================================ */

.includes {
    background: linear-gradient(180deg, var(--soft-mint) 0%, #fff 100%);
}

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

.include-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.include-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.include-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-soft);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.include-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.include-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   TRANSFORMATION SECTION
   ============================================ */

.transformation-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.transformation-box {
    background: var(--light);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.transformation-box.before {
    border: 2px dashed #ddd;
}

.transformation-box.after {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 20px 50px rgba(243, 10, 70, 0.25);
}

.transformation-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.transformation-box.after h4 {
    color: white;
}

.transformation-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.transformation-box ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.transformation-box.before ul li {
    color: var(--gray);
}

.transformation-box.before ul li i {
    color: #ef4444;
}

.transformation-box.after ul li i {
    color: white;
}

.transformation-arrow {
    font-size: 3rem;
    color: var(--accent);
}

/* ============================================
   FOUNDERS SECTION
   ============================================ */

.founders {
    background: linear-gradient(180deg, #fff 0%, var(--soft-purple) 100%);
}

.founders-intro {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
}

.founders-intro h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.founders-intro p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

.founders-intro .highlight-box {
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 15px 15px 0;
    margin: 2rem 0;
}

.founders-intro .highlight-box p {
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

.founder-card {
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-accent);
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.founder-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.founder-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.founder-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .hero {
        padding-top: 100px;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
    }

    .hero-stats {
        left: 20px;
    }

    .floating-badge {
        right: 10px;
        top: 30px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .hero-stats {
        left: 10px;
        bottom: 20px;
        padding: 1rem 1.2rem;
    }

    .hero-stats-number {
        font-size: 1.8rem;
    }

    .hero-stats-label {
        font-size: 0.8rem;
    }

    .method-step {
        padding-left: 80px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .about-experience {
        right: 0;
    }

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

@media (max-width: 767px) {
    section {
        padding: 4rem 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }

    .method-step {
        padding-left: 0;
        padding-top: 80px;
    }

    .step-number {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .method-step::before {
        display: none;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-cta a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Hero image en mobile */
    .hero-image-wrapper {
        text-align: center;
    }

    .hero-image img {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-badges-mobile .hero-stats,
    .hero-badges-mobile .floating-badge {
        vertical-align: middle;
    }

    .hero-badges-mobile .hero-stats {
        padding: 0.8rem 1rem;
    }

    .hero-badges-mobile .hero-stats-number {
        font-size: 1.5rem;
    }

    .hero-badges-mobile .hero-stats-label {
        font-size: 0.75rem;
    }

    .hero-badges-mobile .floating-badge {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .transformation-visual {
        flex-direction: column;
    }

    .transformation-box {
        max-width: 100%;
    }

    .page-header {
        padding: 8rem 0 3rem;
    }

    .founders-intro {
        padding: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

/* ============================================
   MENU MOBILE OFF-CANVAS
   ============================================ */

/* Overlay sombre */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Off-Canvas */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Header du menu */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.mobile-menu-logo img {
    height: 40px;
    filter: brightness(0) saturate(100%) invert(8%) sepia(25%) saturate(4847%) hue-rotate(186deg) brightness(96%) contrast(99%);
}

.mobile-menu-close {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--accent);
    color: #fff;
}

/* Navigation */
.mobile-menu-nav {
    padding: 1.5rem;
    flex: 1;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
    border-radius: 15px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-menu-link i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
    color: var(--gray);
    transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: var(--soft-pink);
    color: var(--accent);
}

.mobile-menu-link:hover i,
.mobile-menu-link.active i {
    color: var(--accent);
}

/* CTA */
.mobile-menu-cta {
    padding: 0 1.5rem 1.5rem;
}

.mobile-menu-cta .btn-primary-custom {
    justify-content: center;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Contact */
.mobile-menu-contact {
    padding: 1.5rem;
    background: var(--light);
    border-top: 1px solid #eee;
}

.mobile-menu-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.mobile-menu-contact-item:hover {
    color: var(--accent);
}

.mobile-menu-contact-item i {
    font-size: 1.2rem;
    color: var(--accent);
    width: 24px;
    text-align: center;
}

/* Réseaux sociaux */
.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light);
}

.mobile-menu-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.mobile-menu-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

/* Body lock quand menu ouvert */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   CARROUSEL RÉSULTATS / TÉMOIGNAGES
   ============================================ */

.before-after-section {
    padding: 5rem 0;
    background: var(--gradient);
    overflow: hidden;
}

.before-after-section .section-header {
    margin-bottom: 3rem;
}

.before-after-section .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.before-after-section .section-title {
    color: #fff;
}

.before-after-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.before-after-slider {
    display: flex;
    gap: 2rem;
    animation: scrollSlider 40s linear infinite;
    width: max-content;
}

.before-after-slider:hover {
    animation-play-state: paused;
}

@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Cartes Avant/Après */
.before-after-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    min-width: 320px;
    max-width: 320px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.before-after-images {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.before-after-img {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.before-after-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.before-after-img .label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.before-after-img.after .label {
    background: var(--accent);
}

.before-after-info {
    text-align: center;
}

.before-after-info h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.before-after-result {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.before-after-duration {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.before-after-quote {
    font-style: italic;
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
}

/* Carte de résultat */
.result-card-slider {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    min-width: 350px;
    max-width: 350px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.result-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.2rem;
}

.result-card-weight {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.result-card-slider h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.result-card-duration {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.result-card-quote {
    font-style: italic;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin: 0;
}

/* Responsive carrousel */
@media (max-width: 576px) {
    .result-card-slider {
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .result-card-weight {
        font-size: 2rem;
    }
    
    .before-after-section {
        padding: 3rem 0;
    }
}

/* ============================================
   BLOG
   ============================================ */

.blog-preview {
    padding: 5rem 0;
    background: var(--light);
}

.blog-card {
    display: block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    height: 100%;
}

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

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-content h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h4 {
    color: var(--accent);
}

.blog-card-content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 1rem;
}

/* Page Blog */
.blog-page {
    padding: 2rem 0 5rem;
}

.blog-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.blog-filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--primary);
    color: #fff;
}

.blog-article {
    padding: 5rem 0;
}

.blog-article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.blog-article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-article-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
}

.blog-article-content h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.blog-article-content p {
    margin-bottom: 1.5rem;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-article-content li {
    margin-bottom: 0.5rem;
}

.blog-article-content blockquote {
    background: var(--soft-pink);
    border-left: 4px solid var(--accent);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
}

.blog-share {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.blog-share a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.blog-share a:hover {
    background: var(--accent);
    color: #fff;
}

@media (max-width: 768px) {
    .blog-card-content {
        padding: 1.25rem;
    }
    
    .blog-card-content h4 {
        font-size: 1rem;
    }
    
    .blog-preview {
        padding: 3rem 0;
    }
}

/* Breadcrumb article (fond sombre) */
.article-breadcrumb { font-size: .9rem; color: rgba(255,255,255,.7); letter-spacing: .3px; }
.article-breadcrumb a { color: rgba(255,255,255,.85); text-decoration: none; transition: color .25s; }
.article-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.article-breadcrumb .sep { margin: 0 .5rem; opacity: .4; }
.article-breadcrumb .current { color: rgba(255,255,255,.55); }
