/* --- RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --or-clair: #c9b47e;
    --or-sombre: #5C4A26;
    --texte-clair: #E8E8E8;
    --noir-profond: #050505; 
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--noir-profond);
    color: var(--texte-clair);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- LE HALO LUMINEUX DYNAMIQUE (Luminosité Augmentée) --- */
.halo-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0; 
    pointer-events: none; 
    overflow: hidden;
}

.halo-bg::before,
.halo-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px); 
    opacity: 1; /* Opacité au maximum */
}

/* Tache dorée claire (Haut gauche) */
.halo-bg::before {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(201, 180, 126, 0.50) 0%, transparent 65%);
    top: -10%;
    left: -10%;
    animation: haloFloat1 25s ease-in-out infinite alternate;
}

/* Tache dorée sombre (Bas droite) */
.halo-bg::after {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(201, 180, 126, 0.40) 0%, transparent 65%);
    bottom: -10%;
    right: -10%;
    animation: haloFloat2 30s ease-in-out infinite alternate;
}

/* Trajectoires larges */
@keyframes haloFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(35vw, 25vh) scale(1.1); }
    66% { transform: translate(15vw, 45vh) scale(0.9); }
    100% { transform: translate(45vw, 15vh) scale(1.05); }
}

@keyframes haloFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-35vw, -30vh) scale(1.1); }
    66% { transform: translate(-15vw, -45vh) scale(0.9); }
    100% { transform: translate(-45vw, -10vh) scale(1.05); }
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100vw; /* Point de départ de la largeur */
    padding: clamp(15px, 4vh, 30px) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    
    /* Points de départ invisibles pour éviter les sauts brutaux */
    background: rgba(10, 10, 10, 0);
    border: 1px solid rgba(201, 180, 126, 0);
    border-radius: 0px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    
    /* Transition allongée et beaucoup plus douce */
    transition: all 0.6s ease-in-out;
    pointer-events: none;
}

/* L'effet "Pilule Flottante" au scroll */
header.scrolled {
    top: 25px; 
    width: 90%; 
    max-width: 1100px;
    padding: 12px 40px;
    background: rgba(10, 10, 10, 0.75); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 180, 126, 0.4); 
    border-radius: 50px; 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); 
}

header .logo-hybrid,
header .nav-links {
    pointer-events: auto;
}

/* --- LE LOGO HYBRIDE --- */
.logo-hybrid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    user-select: none;
}

.logo-top-old {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to right, #907743, #c9b47e, #907743);
    -webkit-background-clip: text;
    background-clip: text; /* CORRECTION VS CODE ICI */
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.logo-bottom-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2px;
}

.logo-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 3px;
    background: linear-gradient(to right, #907743, #c9b47e, #907743);
    -webkit-background-clip: text;
    background-clip: text; /* CORRECTION VS CODE ICI */
    -webkit-text-fill-color: transparent;
}

.logo-dot {
    width: 5px;
    height: 5px;
    background-color: var(--or-clair);
    border-radius: 50%;
}

.logo-line { height: 1px; width: 50px; }
.left-line { background: linear-gradient(to right, transparent, var(--or-clair)); }
.right-line { background: linear-gradient(to left, transparent, var(--or-clair)); }

/* --- MENU NAV --- */
.nav-links {
    display: flex;
    gap: clamp(15px, 3vw, 30px);
    list-style: none;
}

.nav-links a {
    color: var(--texte-clair);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--or-clair);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: transparent;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
    gap: 40px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-divider {
    width: 60px;
    height: 2px;
    margin-bottom: 25px;
    background: linear-gradient(to right, transparent, var(--or-clair), transparent);
    background-size: 200% 100%;
    animation: slideLine 3s ease-in-out infinite;
}

@keyframes slideLine {
    0% { transform: translateX(0); background-position: 100% 0; }
    50% { transform: translateX(270px); background-position: 0% 0; }
    100% { transform: translateX(0); background-position: 100% 0; }
}

/* --- BOUTONS --- */
.btn-gold {
    display: inline-block;
    padding: 18px 45px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    text-decoration: none;
    border-radius: 40px;
    background: linear-gradient(135deg, #c9b47e 0%, #907743 100%);
    box-shadow: 0 10px 20px rgba(144, 119, 67, 0.15);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(144, 119, 67, 0.35);
    background: linear-gradient(135deg, #d6c392 0%, #a38950 100%);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--or-clair);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: auto;
}

.btn-outline:hover {
    background: transparent;
    color: var(--or-clair);
    box-shadow: 0 5px 15px rgba(201, 180, 126, 0.2); 
}

/* --- CARROUSEL GLASSMORPHISM ET STATS --- */
.hero-reviews { 
    flex: 1.2; 
    display: flex; 
    justify-content: flex-end; 
    align-items: center; 
    gap: 20px; 
}

.stats-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.stat-card-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(201, 180, 126, 0.2);
    border-radius: 20px;
    padding: 15px; 
    width: 140px; 
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.stat-card-glass:hover {
    border-color: var(--or-clair);
    background: rgba(201, 180, 126, 0.05);
    transform: translateY(-5px);
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--or-clair);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 0.65rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* --- LE CARROUSEL D'AVIS --- */
.review-card-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(201, 180, 126, 0.2);
    border-radius: 20px;
    padding: 35px 30px; 
    width: 100%;
    max-width: 420px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.review-label { 
    display: block; 
    text-transform: uppercase; 
    font-size: 0.7rem; 
    letter-spacing: 3px; 
    color: var(--or-clair); 
    margin-bottom: 20px; 
}

.stars { color: var(--or-clair); margin-bottom: 8px; font-size: 1.1rem; }

.review-content h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.4rem; 
    margin-bottom: 10px; 
}

.review-content p { 
    font-style: italic; 
    color: #ccc; 
    margin-bottom: 20px; 
    line-height: 1.5; 
    font-size: 0.9rem; 
}

.review-author { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 40px; height: 40px; background: var(--or-clair); color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.author-info strong { display: block; font-size: 0.9rem; }
.author-info span { font-size: 0.75rem; color: #888; }

.carousel-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 25px; }
.nav-arrow { background: none; border: none; color: var(--or-clair); font-size: 1.5rem; cursor: pointer; }
.dots { display: flex; gap: 8px; }
.dot { width: 6px; height: 6px; background: rgba(255,255,255,0.2); border-radius: 50%; cursor: pointer; }
.dot.active { background: var(--or-clair); width: 20px; border-radius: 10px; }

/* --- FOND CONTINU --- */
.fond-continu {
    background-color: transparent;
    overflow: hidden;
}

/* --- SECTION PRESTATIONS (Minimalisme + Glassmorphism) --- */
.target-section {
    min-height: auto;
    padding: clamp(60px, 10vh, 120px) 5%;
    background-color: transparent !important;
    position: relative;
    z-index: 2;
}

.minimal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 6vw, 100px);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.minimal-col {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.minimal-col h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--or-clair);
    margin-bottom: 40px; 
    letter-spacing: 1px;
}

.minimal-col h2 .subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #fff;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 15px;
}

.minimal-divider {
    width: 1px;
    height: 250px;
    background: linear-gradient(to bottom, transparent, rgba(201, 180, 126, 0.5), transparent);
}

/* --- LE BOUTON GLASSMORPHISM --- */
.btn-glass {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 180, 126, 0.3); 
    border-radius: 40px;
    color: var(--texte-clair);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-glass:hover {
    background: rgba(201, 180, 126, 0.1); 
    border-color: var(--or-clair);
    color: #fff;
    transform: translateY(-4px); 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.boomerang-effect {
    display: inline-block;
    background-image: linear-gradient(
    120deg,
    rgba(201, 180, 126, 0.3) 20%,
    #ffffff 50%,
    rgba(201, 180, 126, 0.3) 80%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: boomerang-light 3s ease-in-out infinite;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

@keyframes boomerang-light {
    0% { background-position: -100% 0; }
    40% { background-position: 100% 0; }
    60% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* --- SLIDERS AVANT/APRES --- */
.comparison-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(144, 119, 67, 0.3);
    overflow: hidden;
    border-radius: 4px;
}

.img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
}

.before-img { z-index: 2; clip-path: inset(0 50% 0 0); }

.slider-line {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
    background: var(--or-clair); z-index: 10;
}

.slider-button {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: clamp(40px, 7vw, 52px); height: clamp(40px, 7vw, 52px);
    background-color: var(--noir-profond); border: 2px solid var(--or-clair);
    border-radius: 50%; z-index: 11;
    display: flex; align-items: center; justify-content: center; gap: 4px;
}

.slider-button .dot { width: 6px; height: 6px; background-color: var(--or-clair); border-radius: 50%; flex-shrink: 0; }
.slider-button .arrow-left, .slider-button .arrow-right { color: var(--or-clair); font-size: 1.6rem; font-weight: 400; line-height: 1; user-select: none; pointer-events: none; display: flex; align-items: center; transform: translateY(-2px); }

.slider-input {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; cursor: ew-resize; z-index: 20;
}

.label {
    position: absolute; bottom: 15px; padding: 5px 12px; background: rgba(0,0,0,0.6);
    font-size: 0.6rem; letter-spacing: 2px; z-index: 5; color: #fff;
}
.label.avant { left: 15px; }
.label.apres { right: 15px; }

/* --- DESIGN DU SÉLECTEUR (ÉTAPE 1) --- */
.selection-header {
    position: relative;
    z-index: 10; 
    margin-bottom: 60px;
}
.selection-header a { color: var(--or-clair); text-decoration: underline; }
.selection-header p a {
    position: relative;
    display: inline-block;
    z-index: 20; 
    pointer-events: auto !important; 
    padding: 5px; 
    margin: -5px; 
}

.selection-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 5%;
    text-align: center;
}

.selection-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 40px !important;
    width: 100% !important;
}

.selection-item { grid-column: span 2 !important; display: block !important; }
.selection-item.item-wide { grid-column: span 3 !important; }
.selection-item input[type="radio"] { display: none; }

.selection-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 10px;
    cursor: pointer;
    transition: 0.3s all ease;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    text-align: center;
}

.selection-card span {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selection-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--or-clair);
    transform: translateY(-5px);
}

.selection-item input[type="radio"]:checked + .selection-card {
    border-color: var(--or-clair) !important;
    background: rgba(201, 180, 126, 0.15) !important;
    box-shadow: 0 0 25px rgba(201, 180, 126, 0.3);
}

.selection-item input[type="radio"]:checked + .selection-card span {
    color: var(--or-clair);
}

/* BOUTON CONTINUER */
.selection-footer { margin-top: 50px; padding-bottom: 80px; }

.btn-continuer {
    background: #151515;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 60px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-continuer:hover {
    background: var(--or-clair);
    color: #000;
}

/* --- STYLE DU STEPPER (PROGRESSION) --- */
.stepper-wrapper {
    max-width: 900px;
    margin: 0 auto 60px auto;
    position: relative;
}

.stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.step-line {
    position: absolute;
    top: 20px; 
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #666;
    transition: 0.4s all ease;
    margin-bottom: 15px;
}

.step-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    font-weight: 600;
    text-align: center;
    transition: 0.4s;
}

.step.active .step-circle {
    background: var(--or-clair);
    border-color: var(--or-clair);
    color: #000;
    box-shadow: 0 0 20px rgba(201, 180, 126, 0.5); 
}

.step.active .step-label {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* --- DESIGN DES PACKS (CHOIX ÉTAPE 2) --- */
.pack-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px auto;
    max-width: 1000px;
}

.pack-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.pack-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: left;
    transition: 0.4s all ease;
    position: relative;
    cursor: pointer;
    height: 100%;
}

.pack-item input[type="radio"] { display: none; }

.pack-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #000;
    border: 1px solid var(--or-clair);
    color: var(--or-clair);
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.pack-card h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.pack-price {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pack-price span {
    font-size: 2.2rem;
    color: var(--or-clair);
    font-weight: 700;
    margin-left: 5px;
}

.pack-features {
    list-style: none;
    padding: 0;
}

.pack-features li {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.pack-features li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--or-clair);
    font-size: 0.7rem;
    top: 2px;
}

.pack-item input[type="radio"]:checked + .pack-card {
    border-color: var(--or-clair);
    background: rgba(201, 180, 126, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.pack-card.recommended {
    border-color: rgba(201, 180, 126, 0.4);
}

/* --- DESIGN DES SUPPLÉMENTS (ÉTAPE 3) --- */
.supplements-container {
    max-width: 800px;
    margin: 0 auto;
}

.supp-category-title {
    font-family: 'Playfair Display', serif;
    color: var(--or-clair);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 50px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 180, 126, 0.2);
    text-align: left;
}

.supplements-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.supp-item input[type="checkbox"] { display: none; }

.supp-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.supp-info { text-align: left; }

.supp-info h3 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0;
    text-transform: none; 
}

.supp-info p {
    font-size: 0.85rem;
    color: #888;
}

.supp-price {
    font-weight: 600;
    color: var(--or-clair);
    font-size: 1.1rem;
}

.supp-item input[type="checkbox"]:checked + .supp-card {
    border-color: var(--or-clair);
    background: rgba(201, 180, 126, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.supp-item input[type="checkbox"]:checked + .supp-card .supp-info h3 {
    color: var(--or-clair);
}

/* --- DESIGN DU FORMULAIRE (ÉTAPE 4 & DEVIS) --- */
.form-container {
    max-width: 800px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 180, 126, 0.1);
    border-radius: 15px;
    padding: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--or-clair);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--or-clair);
    box-shadow: 0 0 10px rgba(201, 180, 126, 0.2);
}

/* --- RESPONSIVE GENERAL --- */
@media (max-width: 992px) {
    .hero-container { flex-direction: column; text-align: center; gap: 60px; padding-top: 100px; }
    
    /* --- CORRECTION BULLE ELOIGNEE SUR MOBILE --- */
    #comparaison .hero-container { padding-top: 0 !important; gap: 30px; }
    
    .hero-content { max-width: 100%; text-align: center; }
    
    .hero-reviews { 
        flex-direction: column-reverse; 
        align-items: center; 
    }
    .stats-column { 
        flex-direction: row; 
        width: 100%; 
        max-width: 460px; 
    }
    .stat-card-glass { 
        width: 100%; 
        height: auto;
        padding: 15px; 
    }
    .review-card-glass {
        max-width: 100%;
    }
    
    .hero-divider { margin: 0 auto 25px; }
}

@media (max-width: 900px) {
    .minimal-container {
        flex-direction: column;
        gap: 20px;
    }
    .minimal-divider {
        width: 150px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(201, 180, 126, 0.5), transparent);
        margin: 40px 0;
    }
    
    .selection-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .selection-item, .selection-item.item-wide { grid-column: span 1 !important; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding-top: 120px; }
}

@media (max-width: 600px) {
    .form-row { flex-direction: column; gap: 0; }
    .form-container { padding: 20px; }
    .selection-grid { grid-template-columns: 1fr !important; }
    
    .step-label { font-size: 0.6rem; }
    .step-circle { width: 30px; height: 30px; font-size: 0.8rem; }
    .step-line { top: 15px; }
}

/* --- FOOTER --- */
footer {
    padding: 60px 5% 40px;
    background-color: #050505;
    text-align: center;
    border-top: 1px solid rgba(144, 119, 67, 0.1);
}

footer p { font-size: 0.75rem; color: #666; text-transform: uppercase; letter-spacing: 2px; }

/* --- SECTION FAQ --- */
.faq-section {
    padding: clamp(60px, 10vh, 120px) 5%;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 180, 126, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(201, 180, 126, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item.active {
    border-color: var(--or-clair);
    background: rgba(201, 180, 126, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--or-clair);
    font-weight: 300;
    transition: transform 0.4s ease;
}

.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-item.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); 
}

.faq-answer {
    overflow: hidden;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .faq-question { font-size: 0.95rem; padding: 15px; }
    .faq-answer p { padding: 0 15px 15px 15px; font-size: 0.85rem; }
}

/* ============================================================
   BOÎTE DE RÉCAPITULATIF (PAIEMENT.HTML)
   ============================================================ */
.recap-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 30px;
    max-width: 650px;
    margin: 40px auto;
    position: relative;
    z-index: 10 !important;
}

.recap-header-main h3 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: var(--or-clair);
    font-size: 1.6rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.recap-section-title {
    color: var(--or-clair);
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 5px;
    margin: 25px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.recap-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.recap-item:last-child {
    border-bottom: none;
}

.recap-label { color: #ccc; font-size: 0.95rem; }
.recap-value { color: #fff; font-weight: 600; text-align: right; }

.total-wrapper {
    background: rgba(212, 175, 55, 0.1);
    margin: 30px -30px -30px -30px;
    padding: 25px 30px;
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.total-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 1px;
}

.total-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--or-clair);
}

/* ============================================================
   MISE EN AVANT : MESSAGE D'ACOMPTE (PAIEMENT.HTML)
   ============================================================ */
.payment-notice {
    background: rgba(212, 175, 55, 0.1); 
    border-left: 4px solid var(--or-clair); 
    padding: 20px 25px;
    margin: 30px auto; 
    max-width: 650px; 
    border-radius: 0 10px 10px 0; 
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15); 
    position: relative;
    z-index: 10;
}

.payment-notice p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    text-align: left; 
}

.payment-notice strong {
    color: var(--or-clair);
    font-size: 1.25rem; 
    font-weight: 700;
}

.category-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid rgba(201, 180, 126, 0.5);
    margin: 0 auto 25px auto;
    background: #000; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-img-wrapper img {
    width: 85%; 
    height: auto;
    object-fit: contain; 
}

/* --- CORRECTION DU SCROLL POUR LE MENU FIXE --- */
#prestations, 
#comparaison, 
#faq {
    scroll-margin-top: 130px;
}

/* ============================================================
   MENU MOBILE (HAMBURGER & DROPDOWN)
   ============================================================ */

/* L'icône par défaut (Cachée sur ordinateur) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001; /* Pour rester au-dessus du menu */
}

/* Les 3 petites barres dorées */
.hamburger .bar {
    height: 2px;
    width: 100%;
    background-color: var(--or-clair);
    border-radius: 10px;
    transition: all 0.4s ease;
}

/* Le design de la boîte du menu déroulant */
.mobile-dropdown {
    position: absolute;
    top: 75px; /* S'aligne juste sous la bulle du logo */
    right: 5%;
    width: 220px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 180, 126, 0.3);
    border-radius: 15px;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px); /* Légèrement remonté quand il est fermé */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    z-index: 1000;
}

/* Les liens à l'intérieur du menu */
.mobile-dropdown ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-dropdown a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    transition: color 0.3s;
}

.mobile-dropdown a:hover {
    color: var(--or-clair);
}

/* --- LES ANIMATIONS D'OUVERTURE --- */

/* Apparition du menu en douceur */
.mobile-dropdown.menu-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Transformation des 3 tirets en "X" */
.hamburger.toggle-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.toggle-active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.toggle-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- RÈGLES SPÉCIFIQUES POUR LES TÉLÉPHONES --- */
@media (max-width: 768px) {
    .nav-links { 
        display: none; /* On cache le menu ordinateur */
    }
    .hamburger { 
        display: flex; /* On affiche les 3 tirets */
    }
}