/* ========================================
   VARIABLES CSS - PALETTE TERRE & ZEN
   ======================================== */
:root {
    --primary-color: #e15729;
    --primary-dark: #c74820;
    --secondary-color: #8b6f47;
    --accent-warm: #e8b882;
    --accent-sage: #a8b39e;
    --accent-terracotta: #e15729;
    --text-dark: #2d2417;
    --text-medium: #5a4a3a;
    --text-light: #8a7a6a;
    --bg-cream: #faf7f2;
    --bg-sand: #f5efe7;
    --bg-white: #ffffff;
    --border-color: #e8dfd4;
    --success-color: #7a9b76;
    --shadow-sm: 0 2px 12px rgba(225, 87, 41, 0.08);
    --shadow-md: 0 6px 20px rgba(225, 87, 41, 0.12);
    --shadow-lg: 0 10px 30px rgba(225, 87, 41, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   HEADER STICKY
   ======================================== */
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-warm));
    transition: var(--transition);
    border-radius: 2px;
}

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

.btn-cta-header {
    display: none;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(212, 137, 92, 0.25);
}

.btn-cta-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 137, 92, 0.35);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(165deg, var(--bg-sand) 0%, var(--bg-cream) 50%, #f9f4ed 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 137, 92, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-title {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.reassurance-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.reassurance-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background-color: var(--bg-white);
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.reassurance-icon {
    font-size: 1.5rem;
}

.reassurance-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-cta .btn {
    min-width: 280px;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.2);
    border: 6px solid var(--bg-white);
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 137, 92, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1.1rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
    color: white;
    box-shadow: 0 6px 20px rgba(212, 137, 92, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 137, 92, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 137, 92, 0.3);
}

.btn-full {
    width: 100%;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-warm));
    border-radius: 2px;
}

/* ========================================
   PROBLÉMATIQUES
   ======================================== */
.problematiques {
    background-color: var(--bg-white);
}

.problematiques-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.problematique-card {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-sand) 100%);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.problematique-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 137, 92, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.problematique-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
}

.problematique-card:hover::before {
    opacity: 1;
}

.problematique-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    filter: grayscale(0.2);
    transition: var(--transition);
}

.problematique-card:hover .problematique-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.problematique-card p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ========================================
   DÉROULEMENT
   ======================================== */
.deroulement {
    background: linear-gradient(180deg, var(--bg-sand) 0%, var(--bg-cream) 100%);
}

/* ========================================
   SECTION VIDÉO
   ======================================== */
.video-section {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-sand) 100%);
    padding: 80px 0;
}

.video-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 650px;
    margin: -1.5rem auto 3.5rem;
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    padding: 0 2rem;
}

.video-intro::before,
.video-intro::after {
    content: '✦';
    position: absolute;
    color: var(--primary-color);
    font-size: 0.9rem;
    opacity: 0.5;
}

.video-intro::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.video-intro::after {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.25);
    border: 6px solid var(--bg-white);
    background-color: var(--text-dark);
    transition: var(--transition);
}

.video-container:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(139, 111, 71, 0.35);
}

.wistia_responsive_padding {
    border-radius: 18px;
    overflow: hidden;
}

.wistia_embed {
    border-radius: 18px;
}

/* ========================================
   DÉROULEMENT
   ======================================== */

.deroulement-timeline {
    margin-bottom: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 3px;
    height: calc(100% + 10px);
    background: linear-gradient(180deg, var(--primary-color), var(--accent-warm));
    opacity: 0.3;
    border-radius: 2px;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(212, 137, 92, 0.3);
    position: relative;
}

.timeline-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--accent-warm);
    opacity: 0.3;
}

.timeline-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

.deroulement-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.info-card {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
    color: var(--text-medium);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.info-card strong {
    color: var(--text-dark);
}

/* ========================================
   BÉNÉFICES
   ======================================== */
.benefices {
    background-color: var(--bg-white);
}

/* ========================================
   AVIS CLIENTS
   ======================================== */
.avis-clients {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-sand) 100%);
    padding: 80px 0;
}

.avis-elfsight-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Style du widget Elfsight */
.elfsight-app-b89cba28-3dfd-49da-baba-07979b3a1d7c {
    border-radius: 16px;
    overflow: hidden;
}

/* ========================================
   BÉNÉFICES
   ======================================== */

.benefices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* ========================================
   ESPACE DE SOIN
   ======================================== */
.espace {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-sand) 100%);
    padding: 80px 0;
}

.espace-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: -1rem auto 3rem;
    line-height: 1.8;
}

.espace-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.espace-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.espace-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.espace-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.espace-image:hover img {
    transform: scale(1.05);
}

.espace-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(45, 36, 23, 0.9) 0%, rgba(45, 36, 23, 0.7) 50%, transparent 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.benefices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.benefices-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    color: var(--primary-color);
    letter-spacing: -0.3px;
}

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

.benefices-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    font-size: 1.05rem;
    position: relative;
    padding-left: 2rem;
}

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

.benefices-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* ========================================
   QUI SUIS-JE
   ======================================== */
.qui-suis-je {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-sand) 100%);
}

.qui-suis-je-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.qui-suis-je-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.2);
    border: 6px solid var(--bg-white);
    position: relative;
}

.qui-suis-je-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 137, 92, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.qui-suis-je-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.qui-suis-je-content h3 {
    font-size: 1.85rem;
    margin-bottom: 1.75rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.qui-suis-je-content p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

.qui-suis-je-content p:last-child {
    margin-bottom: 0;
}

.qui-suis-je-content strong {
    color: var(--text-dark);
}

/* ========================================
   OFFRES
   ======================================== */
.offres {
    background-color: var(--bg-white);
}

.offres-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.offre-card {
    padding: 2.5rem;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.offre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-warm));
    transform: scaleX(0);
    transition: var(--transition);
}

.offre-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.15);
    transform: translateY(-8px);
}

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

.offre-primary {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fefbf8 0%, var(--bg-white) 100%);
    box-shadow: 0 10px 40px rgba(212, 137, 92, 0.12);
}

.offre-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 137, 92, 0.3);
    letter-spacing: 0.3px;
}

.offre-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.offre-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offre-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.offre-features li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    font-size: 1rem;
}

.offre-duration {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.offre-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.75rem;
    letter-spacing: -1px;
}

.offre-questions {
    background: linear-gradient(135deg, #f0fff4 0%, #e6f9ea 100%);
    border-color: #25D366;
    text-align: center;
}

.offre-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

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

.offre-features-centered {
    text-align: center;
    list-style: none;
    padding: 0;
}

.offre-features-centered li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.offre-gratuit {
    color: #25D366;
    font-size: 2rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    padding: 1.25rem 2rem;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    background: linear-gradient(180deg, var(--bg-sand) 0%, var(--bg-cream) 100%);
}

/* ========================================
   FAQ
   ======================================== */

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

.faq-item {
    background-color: var(--bg-white);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    padding: 0 2rem 1.75rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========================================
   RÉASSURANCE FINALE
   ======================================== */
.reassurance-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-warm) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.reassurance-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.reassurance-content p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.9;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--text-dark);
    padding: 2.5rem 0;
    border-top: 3px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.footer p {
    color: var(--bg-sand) !important;
}

/* ========================================
   WIDGET WHATSAPP FLOTTANT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    cursor: pointer;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon-svg {
    width: 32px;
    height: 32px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.whatsapp-icon {
    font-size: 1.25rem;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.8), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
}

/* Responsive mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-icon-svg {
        width: 28px;
        height: 28px;
    }
    
    /* Assurer que le widget est au-dessus du menu mobile */
    .whatsapp-float {
        z-index: 10000;
    }
    
    /* Empêcher le menu de se superposer lors du clic sur WhatsApp */
    .nav-menu.mobile-active {
        z-index: 999;
    }
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .btn-cta-header {
        display: block;
    }

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

    .hero-cta {
        flex-direction: row;
    }

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

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

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

    .espace-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .qui-suis-je-grid {
        grid-template-columns: 1fr 2fr;
        align-items: center;
    }

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

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .problematiques-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .deroulement-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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