/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Palette - Orange Vif Lumineux
       Couleurs vibrantes avec effet de lumière et brillance */
    --primary: #FF6B2C;
    --primary-light: #FF8F5C;
    --primary-dark: #E5551A;
    --gold: #FFB800;
    --gold-light: #FFE066;
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    --white: #FFFFFF;
    --cream: #FFFFFF;
    --neutral-light: #FEFEFE;
    --neutral-medium: #F5F5F5;
    --neutral-dark: #2D2926;
    --text-primary: #2D2926;
    --text-secondary: #555555;
    --text-light: #888888;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Animation */
    --transition-fast: 200ms ease;
    --transition-base: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 800ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows - Plus de brillance et de lumière */
    --shadow-sm: 0 2px 8px rgba(45, 41, 38, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 41, 38, 0.10);
    --shadow-lg: 0 8px 40px rgba(45, 41, 38, 0.15);
    --shadow-gold: 0 4px 30px rgba(255, 184, 0, 0.4);
    --shadow-primary: 0 4px 25px rgba(255, 107, 44, 0.45);
    --glow-gold: 0 0 50px rgba(255, 184, 0, 0.6);
    --glow-primary: 0 0 50px rgba(255, 107, 44, 0.5);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 65ch;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ENHANCED ANIMATIONS - EFFET WOW
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-left {
    transform: translateX(-80px);
}

.animate-on-scroll.animate-right {
    transform: translateX(80px);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.85);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays - plus progressifs */
.stagger-1 { transition-delay: 0ms; }
.stagger-2 { transition-delay: 150ms; }
.stagger-3 { transition-delay: 300ms; }
.stagger-4 { transition-delay: 450ms; }
.stagger-5 { transition-delay: 600ms; }

/* ============================================
   GLOW & SHIMMER EFFECTS
   ============================================ */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 25px rgba(255, 184, 0, 0.5), 0 0 50px rgba(255, 107, 44, 0.3);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 184, 0, 0.7), 0 0 100px rgba(255, 107, 44, 0.5);
    }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes float-enhanced {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-12px) rotate(2deg); }
    75% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 184, 0, 0.6)); }
    50% { filter: drop-shadow(0 0 35px rgba(255, 184, 0, 1)); }
}

@keyframes text-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.glow-effect {
    animation: pulse-glow 3s ease-in-out infinite;
}

.shimmer-text {
    background: linear-gradient(90deg, var(--gold) 0%, var(--primary) 25%, var(--gold) 50%, var(--primary) 75%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: transparent;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 254, 249, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glow-pulse 3s ease-in-out infinite;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--primary);
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: var(--space-lg);
    }
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: var(--transition-base);
    box-shadow: 0 0 15px rgba(255, 107, 44, 0.7);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--text-primary);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-primary);
    transition: var(--transition-base);
}

.nav-cta:hover,
.nav-cta:focus {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(255, 107, 44, 0.55);
}

/* Mobile menu button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-base);
}

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

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

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

/* Mobile nav */
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 254, 249, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

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

.nav-mobile .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* ============================================
   HERO SECTION - ENHANCED
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--space-3xl) + 60px) 0 var(--space-3xl);
    background: linear-gradient(165deg, #FFFFFF 0%, #FFF9F5 40%, #FFF5EE 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 70%;
    height: 130%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 44, 0.15) 0%, rgba(255, 143, 92, 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 45%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(255, 184, 0, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 22px 9px 18px;
    background:
        linear-gradient(135deg, rgba(58, 18, 13, 0.55) 0%, rgba(90, 30, 18, 0.62) 100%);
    border: 1px solid rgba(240, 180, 91, 0.55);
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff3dc;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(240, 180, 91, 0.18) inset,
        0 1px 0 rgba(255, 235, 200, 0.18) inset;
    overflow: hidden;
    isolation: isolate;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 215, 140, 0.85) 0%, rgba(240, 180, 91, 0.4) 50%, rgba(255, 215, 140, 0.85) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.hero-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 235, 200, 0.35) 50%, transparent 100%);
    transform: skewX(-20deg);
    animation: badgeShimmer 4.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes badgeShimmer {
    0%, 100% { left: -60%; }
    50%      { left: 120%; }
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: #ffd78c;
    filter: drop-shadow(0 0 6px rgba(255, 215, 140, 0.6));
    flex-shrink: 0;
    z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
    .hero-badge::after { animation: none; opacity: 0; }
}

.hero-title {
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    text-shadow: 0 0 40px rgba(255, 107, 44, 0.4);
    white-space: nowrap;
}

.hero-title .highlight::after {
    display: none;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    min-height: 52px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 50px rgba(255, 107, 44, 0.6);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover,
.btn-secondary:focus {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-scroll svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.about-grid {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-3xl);
    }
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-gold);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(45, 41, 38, 0.1) 100%);
    z-index: 1;
}

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

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

.about-image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(255, 140, 66, 0.2));
    border-radius: 50%;
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

.about-image-quote {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), var(--glow-gold);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--text-primary);
    z-index: 2;
    border-left: 4px solid var(--gold);
}

@media (min-width: 900px) {
    .about-image-quote {
        left: -30px;
        right: auto;
        max-width: 280px;
    }
}

.about-content {
    padding-top: var(--space-xl);
}

@media (min-width: 900px) {
    .about-content {
        padding-top: 0;
    }
}

.about-text {
    margin-bottom: var(--space-lg);
}

.about-text p {
    margin-bottom: var(--space-md);
}

.about-mission {
    background: linear-gradient(135deg, #FFFFFF, #FFF8F0);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 184, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.about-mission::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.about-mission h3 {
    color: var(--gold);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.about-mission p {
    font-style: italic;
    line-height: 1.9;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: var(--white);
    border: 1px solid var(--neutral-medium);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.about-badge:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.about-badge svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    position: relative;
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.services-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15), rgba(212, 175, 55, 0.1));
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: var(--glow-primary);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.service-price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-heading);
}

.service-price .amount {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
}

.service-price .unit {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   MIRACLES SECTION - ULTRA VISIBLE
   ============================================ */
.miracles-showcase {
    background: linear-gradient(135deg, #1a1510 0%, #2d2520 50%, #1a1510 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.miracles-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 115, 74, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
}

.miracles-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.miracles-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(212, 115, 74, 0.1));
    border: 2px solid rgba(201, 162, 39, 0.5);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
}

.miracles-badge span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.miracles-number-container {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.miracles-number {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
    background: linear-gradient(135deg, var(--gold) 0%, #f5e6a3 25%, var(--gold) 50%, #d4af55 75%, var(--gold) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shine 6s ease-in-out infinite;
    text-shadow: none;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.12));
    transition: filter 1s ease;
}

.miracles-plus {
    position: absolute;
    top: 0;
    right: -0.5em;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shine 4s linear infinite;
}

.miracles-label {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.miracles-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.miracles-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: linear-gradient(135deg, var(--gold), var(--primary));
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 40px rgba(201, 162, 39, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.miracles-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 60px rgba(201, 162, 39, 0.6);
}

.miracles-cta svg {
    width: 24px;
    height: 24px;
}

/* Miracles section - Mobile responsive */
@media (max-width: 767px) {
    .miracles-showcase {
        padding: var(--space-xl) 0;
    }

    .miracles-number {
        font-size: clamp(4rem, 18vw, 6rem);
    }

    .miracles-plus {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        right: -0.6em;
    }

    .miracles-number-container {
        margin-bottom: var(--space-md);
    }

    .miracles-badge {
        margin-bottom: var(--space-md);
    }

    .miracles-badge span {
        font-size: 0.75rem;
    }

    .miracles-label {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-bottom: var(--space-sm);
    }

    .miracles-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 0 var(--space-sm);
        margin-bottom: var(--space-lg);
    }

    .miracles-cta {
        font-size: 0.95rem;
        padding: var(--space-sm) var(--space-lg);
    }

    .miracles-cta svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 380px) {
    .miracles-number {
        font-size: 3.5rem;
    }

    .miracles-plus {
        font-size: 1.5rem;
    }

    .miracles-label {
        font-size: 1.2rem;
    }

    .miracles-subtitle {
        font-size: 0.85rem;
    }

    .miracles-cta {
        font-size: 0.85rem;
        padding: var(--space-sm) var(--space-md);
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: linear-gradient(180deg, #FFFDF8 0%, #FFF9F0 40%, #FFFDF8 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.testimonials-grid {
    display: block;
    position: relative;
    min-height: 280px;
}

.testimonial-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FFFBF5 50%, #FFF7EE 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: none;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(255, 107, 44, 0.1), rgba(212, 175, 55, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-quote-icon {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.2;
    font-family: Georgia, serif;
    margin-bottom: 0.5rem;
    display: block;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.testimonial-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(255, 107, 44, 0.08);
    border: 1px solid rgba(255, 107, 44, 0.2);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: var(--space-sm);
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-md);
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    position: relative;
    font-style: italic;
}

.testimonial-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-text.expanded {
    -webkit-line-clamp: unset;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: var(--space-md);
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}

.read-more-btn:hover {
    color: var(--gold);
    text-decoration: underline;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.testimonial-info span {
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* ============================================
   TESTIMONIAL MODAL (popup haut de gamme)
   ============================================ */
.testi-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    pointer-events: none;
}
.testi-modal.open,
.testi-modal.closing {
    visibility: visible;
    pointer-events: auto;
}

.testi-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 18, 8, 0);
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
    transition: background .45s ease, -webkit-backdrop-filter .45s ease, backdrop-filter .45s ease;
}
.testi-modal.open .testi-modal-backdrop {
    background: rgba(28, 18, 8, 0.55);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
            backdrop-filter: blur(14px) saturate(140%);
}

.testi-modal-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(620px, 92vw);
    max-height: 86vh;
    overflow-y: auto;
    overflow-x: hidden;
    background: linear-gradient(145deg, #FFFFFF 0%, #FFFBF5 50%, #FFF7EE 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 22px;
    padding: 2.5rem 2rem 2rem;
    box-shadow:
        0 30px 80px rgba(212, 175, 55, 0.30),
        0 6px 24px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translate(-50%, calc(-50% + 24px)) scale(0.92);
    filter: blur(4px);
    transition:
        opacity .45s cubic-bezier(.22, 1, .36, 1),
        transform .45s cubic-bezier(.22, 1, .36, 1),
        filter .45s cubic-bezier(.22, 1, .36, 1);
}
.testi-modal.open .testi-modal-card {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
}
.testi-modal.closing .testi-modal-card {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 24px)) scale(0.94);
    filter: blur(3px);
}
.testi-modal.closing .testi-modal-backdrop {
    background: rgba(28, 18, 8, 0);
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
}

.testi-modal-card::-webkit-scrollbar { width: 6px; }
.testi-modal-card::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 3px;
}

.testi-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.92);
    color: #6b5524;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), background .3s, color .3s, box-shadow .3s;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.18);
    z-index: 2;
}
.testi-modal-close:hover {
    transform: rotate(90deg) scale(1.08);
    background: linear-gradient(135deg, var(--gold), #e8b930);
    color: #fff;
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
}

.testi-modal-quote {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.22;
    font-family: Georgia, serif;
    margin: 0 0 0.4rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}
.testi-modal-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 0.9rem;
}
.testi-modal-stars svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}
.testi-modal-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(255, 107, 44, 0.08);
    border: 1px solid rgba(255, 107, 44, 0.2);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 1.1rem;
}
.testi-modal-text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-primary);
    font-style: italic;
    margin: 0 0 1.4rem;
    white-space: pre-wrap;
}
.testi-modal-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}
.testi-modal-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
    flex-shrink: 0;
}
.testi-modal-info h4 {
    font-size: 1.05rem;
    margin: 0 0 3px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}
.testi-modal-info span {
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

@media (max-width: 600px) {
    .testi-modal-card {
        padding: 2rem 1.25rem 1.5rem;
        border-radius: 18px;
        max-height: 90vh;
    }
    .testi-modal-text { font-size: 0.98rem; line-height: 1.78; }
    .testi-modal-quote { font-size: 2.8rem; }
}

@media (prefers-reduced-motion: reduce) {
    /* Gardé visible (min 200ms) — pas de saut à 1ms qui rendrait l'effet invisible */
    .testi-modal-backdrop,
    .testi-modal-card {
        transition-duration: 0.2s;
    }
    .testi-modal-card { filter: none !important; }
}

/* ============================================
   TESTIMONIALS CAROUSEL — INFINITE HORIZONTAL
   ============================================ */
.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    /* padding latéral large pour loger les flèches HORS de la zone de cartes
       (évite qu'elles passent par-dessus les témoignages) */
    padding: 0 76px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding: 1rem 0.5rem 2rem;
    scroll-padding-inline: 1rem;
    cursor: grab;
    min-height: auto;
    /* fade des bords (gauche/droite) pour signaler le défilement */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonials-grid:active { cursor: grabbing; }

.testimonial-card {
    flex: 0 0 auto;
    width: min(380px, 82vw);
    display: flex !important;
    flex-direction: column;
    scroll-snap-align: center;
    margin: 0;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Classes du carousel précédent neutralisées (compat. avec ancien DOM) */
.testimonial-card.carousel-visible,
.testimonial-card.carousel-enter-next,
.testimonial-card.carousel-enter-prev {
    display: flex !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    filter: none !important;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: linear-gradient(145deg, #FFFDF5, #FFF5E6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, box-shadow .3s, border-color .3s, color .3s;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin: 0;
}
.carousel-arrow-prev { left: 8px; }
.carousel-arrow-next { right: 8px; }

.carousel-arrow:hover {
    background: linear-gradient(135deg, var(--gold), #e8b930);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45), 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.carousel-arrow:hover svg {
    color: var(--white);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.carousel-arrow svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    transition: color .3s, filter .3s;
}

/* En mode infini, les flèches ne sont jamais désactivées */
.carousel-arrow:disabled {
    opacity: 1;
    cursor: pointer;
}

@media (max-width: 768px) {
    /* Les flèches sont cachées — le swipe tactile suffit
       et le container reprend tout l'espace dispo */
    .carousel-arrow { display: none; }
    .testimonials-carousel { padding: 0 8px; }
    .testimonials-grid {
        gap: 1rem;
        padding: 1rem 0.25rem 1.5rem;
    }
    .testimonial-card { width: min(320px, 86vw); }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-question {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition-base);
    min-height: 60px;
}

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

.faq-question svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--gold);
    transition: var(--transition-base);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-inner {
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    max-width: none;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-white:hover,
.btn-white:focus {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-5px) scale(1.03);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--neutral-dark);
    padding: var(--space-xl) 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-lg);
    justify-content: center;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow-primary);
}

.footer-social svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 900;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    position: relative;
    isolation: isolate;
    box-shadow:
        0 4px 25px rgba(37, 211, 102, 0.5),
        0 0 0 1px rgba(240, 180, 91, 0.35),
        0 0 22px rgba(240, 180, 91, 0.22);
    transition: var(--transition-base);
    animation: pulse-whatsapp 2.6s ease-in-out infinite;
}

.whatsapp-btn > svg { position: relative; z-index: 3; }

/* Halo doré premium (anneau lent, large) */
.whatsapp-btn::before,
.whatsapp-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.whatsapp-btn::before {
    background: radial-gradient(circle, rgba(240,180,91,0.55) 0%, rgba(240,180,91,0) 70%);
    animation: pulse-gold-halo 2.8s ease-out infinite;
}
.whatsapp-btn::after {
    border: 2px solid rgba(37, 211, 102, 0.85);
    box-shadow: 0 0 0 2px rgba(240, 180, 91, 0.25) inset;
    animation: pulse-green-ring 2.2s ease-out infinite;
}

@keyframes pulse-gold-halo {
    0%   { transform: scale(1);   opacity: 0.85; }
    70%  { transform: scale(2.1); opacity: 0;    }
    100% { transform: scale(2.1); opacity: 0;    }
}
@keyframes pulse-green-ring {
    0%   { transform: scale(1);   opacity: 0.9; }
    80%  { transform: scale(1.85); opacity: 0;  }
    100% { transform: scale(1.85); opacity: 0;  }
}


@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow:
            0 4px 25px rgba(37, 211, 102, 0.5),
            0 0 0 1px rgba(240, 180, 91, 0.35),
            0 0 22px rgba(240, 180, 91, 0.22);
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 4px 40px rgba(37, 211, 102, 0.7),
            0 0 0 1px rgba(240, 180, 91, 0.55),
            0 0 32px rgba(240, 180, 91, 0.38);
        transform: scale(1.04);
    }
}

.whatsapp-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 34px;
    height: 34px;
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + var(--space-sm));
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .whatsapp-widget {
        bottom: var(--space-sm);
        right: var(--space-sm);
    }

    .whatsapp-btn {
        width: 48px;
        height: 48px;
    }

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

    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   ANGEL WINGS DECORATION
   ============================================ */
.wings-decoration {
    display: none;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip to main content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   LIGHT RAYS EFFECT
   ============================================ */
.light-rays {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(255, 184, 0, 0.12) 0%, rgba(255, 107, 44, 0.06) 30%, transparent 60%);
    pointer-events: none;
}

/* ─── POLISH FAQ chevron + → × et modal pointer-events (v=19) ─── */
.faq-question svg.faq-plus,
.faq-question svg {
    transition: transform .55s cubic-bezier(.22, 1, .36, 1) !important;
    transform-origin: center center !important;
}
.faq-item.active .faq-question svg,
.faq-item.active .faq-question svg.faq-plus {
    transform: rotate(45deg) !important;
}

.testi-modal {
    transition: opacity .45s cubic-bezier(.22, 1, .36, 1),
                visibility 0s linear .45s !important;
    pointer-events: none !important;
}
.testi-modal.open {
    pointer-events: auto !important;
    transition: opacity .45s cubic-bezier(.22, 1, .36, 1),
                visibility 0s linear 0s !important;
}
.testi-modal:not(.open) {
    pointer-events: none !important;
    visibility: hidden !important;
}

/* ── Footer polish 2026-07-06 : 3 liens légaux sur leur propre ligne + centrage bas ── */
.footer-links-break {
    display: block;
    flex-basis: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}
.footer-bottom {
    text-align: center !important;
}
.footer-bottom p,
.footer-bottom p[data-dg-credit] {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}
