.elementor-3431 .elementor-element.elementor-element-0351fe5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-3431 .elementor-element.elementor-element-ffd7caa{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3431 .elementor-element.elementor-element-b7edf86{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3431 .elementor-element.elementor-element-03604bb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3431 .elementor-element.elementor-element-8767e28{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3431 .elementor-element.elementor-element-6866dfa{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-8d89d8d *//* ==========================================================================
   HEADER HERO "LIGHT GLASS" - UX/UI 2026
   ========================================================================== */

:root {
    --wine: #9A2A5B;
    --amethyst: #8E44AD;
    --bg-main: #FBF8FF;           /* Le fameux fond lilas clair unifié */
    --text-dark: #2D1E40;         /* Violet sombre pour les textes forts */
    --text-muted: #564D65;        /* Gris-violet doux */
    --glass-white: rgba(255, 255, 255, 0.65); /* Verre dépoli clair */
}

.ux-modern-hero {
    position: relative;
    min-height: 100vh;
    /* On remplace le dégradé sombre par notre fond principal lumineux */
    background-color: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark); /* Le texte de base passe en sombre */
}

/* --- Orbes d'arrière-plan animés (Effet Pastel/Aquarelle) --- */
.ux-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Conserve le flou extrême pour la douceur */
    z-index: 0;
    /* Opacité réduite pour un effet "lueur de jour" très subtil */
    opacity: 0.15; 
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.ux-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--wine), transparent);
    top: -100px; left: -100px;
}

.ux-orb-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--amethyst), transparent);
    bottom: -150px; right: -100px;
    animation-delay: -5s;
}

.ux-orb-3 {
    width: 400px; height: 400px;
    /* Un mix des deux pour l'orbe central/droite */
    background: radial-gradient(circle, #B8336A, transparent);
    top: 30%; right: 15%;
    opacity: 0.1;
    animation-duration: 25s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

/* --- Conteneur Hero --- */
.ux-hero-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    text-align: center;
}

/* --- Badge (Micro-Glassmorphism) --- */
.ux-hero-badge-wrap {
    margin-bottom: 30px;
}

.ux-hero-badge {
    /* Style pilule Glass adapté au fond clair */
    background: rgba(243, 235, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: var(--amethyst); /* Texte Améthyste pour ressortir */
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.05);
}

/* --- Titre --- */
.ux-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    font-weight: 900;
    color: var(--text-dark); /* Le titre principal est violet sombre */
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

/* Le mot mis en valeur dans le titre */
.ux-text-gradient {
    /* Superbe dégradé Wine -> Améthyste pour accrocher l'œil */
    background: linear-gradient(135deg, var(--wine) 0%, var(--amethyst) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Séparateur --- */
.ux-hero-divider {
    width: 120px;
    height: 3px;
    background: rgba(142, 68, 173, 0.1); /* Ligne de base discrète */
    margin: 0 auto 50px;
    border-radius: 2px;
    position: relative;
}

.ux-divider-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, var(--amethyst), transparent);
    /* Fini le néon agressif, place à une douce ombre portée */
    box-shadow: 0 4px 10px rgba(142, 68, 173, 0.2);
    border-radius: 2px;
}

/* --- Citation Box (Vrai Glassmorphism Blanc) --- */
.ux-hero-quote-box {
    background: var(--glass-white);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 45px 60px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    /* Ombre multicouche très douce */
    box-shadow: 0 20px 40px rgba(45, 30, 64, 0.04), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ux-hero-quote-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(142, 68, 173, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.ux-quote-icon {
    width: 40px; height: 40px;
    color: var(--amethyst); /* L'icône de citation passe en Améthyste */
    opacity: 0.8;
    margin-bottom: 25px;
}

.ux-hero-quote {
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-dark); /* Sombre pour une lecture facile */
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* --- Indicateur Scroll (Souris animée) --- */
.ux-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 44px;
    /* Bordure subtile en accord avec le texte */
    border: 2px solid rgba(86, 77, 101, 0.3); 
    border-radius: 13px;
}

.ux-scroll-dot {
    width: 4px; height: 8px;
    background: var(--amethyst); /* Le point animé prend la couleur d'accent */
    border-radius: 2px;
    margin: 8px auto 0;
    animation: scrollMove 2s infinite ease-in-out;
}

@keyframes scrollMove {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .ux-modern-hero { padding: 100px 15px 80px; }
    .ux-hero-title { font-size: 2.4rem; }
    .ux-hero-quote-box { padding: 35px 25px; border-radius: 28px; }
    .ux-hero-quote { font-size: 1.15rem; }
    /* Les orbes sont encore plus discrets sur mobile pour ne pas gêner la lecture */
    .ux-bg-orb { opacity: 0.1; } 
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-8bef2f3 *//* ==========================================================================
   SECTION BIENVENUE "SOFT UI" - LIGHT MODE 2026
   ========================================================================== */

:root {
    --wine-red: #A9445B;
    --text-main: #1e293b;
    --text-light: #64748b;
    --soft-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    --bg-white: #ffffff;
}

.ux-welcome-section {
    background-color: #fafafa; /* Gris très léger pour faire ressortir la carte blanche */
    padding: 100px 20px;
    font-family: system-ui, -apple-system, sans-serif;
    display: flex;
    justify-content: center;
}

.ux-welcome-container {
    max-width: 900px;
    width: 100%;
}

/* --- La Carte (Soft UI) --- */
.ux-welcome-card {
    background-color: var(--bg-white);
    border-radius: 40px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    /* Ombre très diffuse pour l'effet "Cloud" */
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Décoration d'angle bordeaux très subtile */
.ux-card-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(169, 68, 91, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* --- Typographie --- */
.ux-overline {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wine-red);
    margin-bottom: 20px;
}

.ux-welcome-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.ux-welcome-body {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.15rem;
    color: var(--text-light);
}

.ux-welcome-body p {
    margin-bottom: 25px;
}

/* Highlights */
.text-highlight {
    color: var(--wine-red);
    font-weight: 700;
}

.text-bold {
    color: var(--text-main);
    font-weight: 700;
}

.ux-emphasis-text {
    font-size: 1.25rem;
    color: var(--text-main);
    border-left: 3px solid var(--wine-red);
    padding-left: 25px;
    margin: 40px 0 !important;
    font-style: italic;
}

/* --- Footer de la carte --- */
.ux-welcome-footer {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.ux-badge-legal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    border: 1px solid #e2e8f0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .ux-welcome-card {
        padding: 40px 25px;
        border-radius: 30px;
    }
    
    .ux-welcome-title {
        font-size: 1.8rem;
    }
    
    .ux-welcome-body {
        font-size: 1.05rem;
    }
    
    .ux-emphasis-text {
        font-size: 1.1rem;
        padding-left: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-fe83b96 *//* ==========================================================================
   SECTION PILIERS DE PRATIQUE - LIGHT BENTO 2026
   ========================================================================== */

:root {
    --wine: #9A2A5B;
    --amethyst: #8E44AD;
    --bg-main: #FBF8FF;           /* Fond lilas clair */
    --text-dark: #2D1E40;         /* Violet sombre */
    --text-muted: #564D65;        /* Gris-violet doux */
}

.ux-pillars-section {
    position: relative;
    background-color: var(--bg-main); /* On passe sur le fond clair unifié */
    padding: 100px 20px;
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Orbes d'ambiance ultra-doux --- */
.ux-pillar-glow-1,
.ux-pillar-glow-2 {
    position: absolute;
    pointer-events: none;
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 0%, transparent 70%);
    z-index: 0;
}

.ux-pillar-glow-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.08), transparent 70%); /* Halo Améthyste */
    top: -100px; right: -100px;
}

.ux-pillar-glow-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(154, 42, 91, 0.06), transparent 70%); /* Halo Wine */
    bottom: -150px; left: -100px;
}

.ux-pillars-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- En-tête --- */
.text-center { text-align: center; }

.ux-overline-dark {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amethyst); /* Surtitre en Améthyste */
    margin-bottom: 20px;
    /* Effet Glass */
    background: rgba(243, 235, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.05);
}

.ux-section-title-dark {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--text-dark); /* Titre sombre */
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.ux-section-subtitle-dark {
    font-size: 1.15rem;
    color: var(--text-muted); /* Sous-titre en gris-violet */
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* --- Grille des Cartes (Bento) --- */
.ux-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* --- La Carte Pilier (Light Glassmorphism) --- */
.ux-pillar-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(45, 30, 64, 0.03), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.ux-pillar-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(142, 68, 173, 0.2);
    box-shadow: 0 30px 60px rgba(142, 68, 173, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* --- Icône (Squircle Glass) --- */
.ux-pillar-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(243, 235, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    border-radius: 24px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--amethyst); /* Icône Améthyste au repos */
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.05), inset 0 2px 0 rgba(255, 255, 255, 0.8);
}

.ux-pillar-card:hover .ux-pillar-icon-box {
    transform: scale(1.1) rotate(5deg);
    /* L'icône s'illumine avec le dégradé du site au survol */
    background: linear-gradient(135deg, var(--wine) 0%, var(--amethyst) 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(154, 42, 91, 0.25), inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* --- Contenu --- */
.ux-pillar-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark); /* Sombre */
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ux-pillar-text {
    font-size: 1.05rem;
    color: var(--text-muted); /* Gris-violet */
    line-height: 1.7;
    margin-bottom: 0;
}

/* Accent dans le texte */
.text-wine-accent {
    color: var(--wine);
    font-weight: 800;
    background: linear-gradient(90deg, var(--wine), var(--amethyst));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Petite ligne décorative en bas qui s'étire au hover */
.ux-card-accent-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    /* La ligne décorative reprend le beau dégradé */
    background: linear-gradient(90deg, var(--wine), var(--amethyst));
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 4px 4px 0 0;
}

.ux-pillar-card:hover .ux-card-accent-line {
    width: 120px; /* S'étire élégamment au survol */
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .ux-pillars-section { padding: 80px 15px; }
    .ux-pillar-card { padding: 40px 25px; border-radius: 28px; }
    .ux-section-title-dark { font-size: 2.4rem; }
    .ux-pillars-grid { gap: 24px; }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-0edfde2 *//* ==========================================================================
   SECTION LIMITES & ADDICTION - LIGHT MODE 2026
   ========================================================================== */

:root {
    --wine-red: #A9445B;
    --danger-red: #e11d48;
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-soft: #f8fafc;
}

.ux-limits-section {
    background-color: var(--bg-white);
    padding: 100px 20px;
    font-family: system-ui, -apple-system, sans-serif;
}

.ux-limits-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ux-limits-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Layout asymétrique */
    gap: 60px;
    align-items: start;
}

/* --- Typographie --- */
.ux-overline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wine-red);
    margin-bottom: 15px;
    display: block;
}

.ux-limits-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.ux-text-never {
    color: var(--danger-red);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.ux-limits-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 500px;
}

/* --- Liste des Lignes Rouges --- */
.ux-red-lines-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ux-limit-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.ux-limit-item:hover {
    background: var(--bg-soft);
}

.ux-limit-icon-wrap {
    width: 50px; height: 50px;
    background: #fff1f2; /* Rouge très pâle */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ux-limit-heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--danger-red);
    margin-bottom: 8px;
}

.ux-limit-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* --- Carte Addiction (Aside) --- */
.ux-addiction-card {
    background: #fffcf0; /* Ambre très léger */
    border: 1px solid #fef3c7;
    border-radius: 32px;
    padding: 40px;
    position: sticky;
    top: 40px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.05);
}

.ux-addiction-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #b45309;
    margin-bottom: 25px;
    border: 1px solid #fde68a;
}

.ux-pulse-amber {
    width: 8px; height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    animation: pulseAmber 2s infinite;
}

@keyframes pulseAmber {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.ux-addiction-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ux-addiction-text {
    font-size: 1.05rem;
    color: #b45309;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ux-addiction-quote {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.6;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.05);
}

.ux-addiction-quote strong {
    color: var(--danger-red);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .ux-limits-grid {
        grid-template-columns: 1fr;
    }
    .ux-addiction-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .ux-limits-title { font-size: 2rem; }
    .ux-addiction-card { padding: 30px 20px; }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-75d7635 *//* ==========================================================================
   SECTION FAQ FINALE - LIGHT BENTO 2026
   ========================================================================== */

:root {
    --wine: #9A2A5B;
    --amethyst: #8E44AD;
    --bg-main: #FBF8FF;           /* Fond lilas clair unifié */
    --text-dark: #2D1E40;         /* Violet sombre pour les titres/questions */
    --text-muted: #564D65;        /* Gris-violet doux pour les réponses */
}

.ux-faq-final-section {
    position: relative;
    /* On passe sur le fond clair unifié */
    background-color: var(--bg-main);
    padding: 100px 20px;
    overflow: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Halo d'ambiance doux --- */
.ux-faq-glow {
    position: absolute; /* Ajout du absolute pour qu'il flotte en fond */
    width: 800px; height: 800px;
    /* Doux mélange Améthyste et Wine */
    background: radial-gradient(circle, rgba(142, 68, 173, 0.08) 0%, rgba(154, 42, 91, 0.04) 50%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 0%, transparent 70%);
}

.ux-faq-final-container {
    position: relative;
    z-index: 1;
    max-width: 800px; /* Conserve la largeur "interview" pour un confort de lecture optimal */
    margin: 0 auto;
}

/* --- En-tête --- */
.text-center { text-align: center; }

.ux-overline-dark {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--amethyst); /* Surtitre en Améthyste */
    margin-bottom: 20px;
    /* Style micro-glass (Pilule) */
    background: rgba(243, 235, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.05);
}

.ux-section-title-dark {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--text-dark); /* Titre sombre */
    margin-bottom: 60px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

/* --- Stack des items --- */
.ux-faq-stack {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Bel espacement entre les questions */
}

/* --- L'Item FAQ (Glassmorphism Bento) --- */
.ux-faq-item-card {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(45, 30, 64, 0.03), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.ux-faq-item-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(142, 68, 173, 0.2); /* Légère lueur Améthyste sur la bordure */
    /* Au lieu de glisser vers la droite, on la soulève pour rester cohérent avec les autres cartes */
    transform: translateY(-5px); 
    box-shadow: 0 20px 40px rgba(142, 68, 173, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* --- Numérotation UI (Squircles Glass) --- */
.ux-faq-icon-side {
    flex-shrink: 0;
}

.ux-faq-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--amethyst); /* Chiffre Améthyste */
    /* Beau dégradé de verre pour le bloc numéro */
    background: linear-gradient(135deg, rgba(243, 235, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 15px rgba(142, 68, 173, 0.05), inset 0 2px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.ux-faq-item-card:hover .ux-faq-number {
    /* Le numéro s'illumine subtilement au survol de la carte */
    background: var(--amethyst);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.25);
    transform: rotate(-5deg) scale(1.05);
}

/* --- Contenu --- */
.ux-faq-content-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ux-faq-question {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark); /* Sombre */
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.ux-faq-answer {
    font-size: 1.05rem;
    color: var(--text-muted); /* Gris-violet */
    line-height: 1.7;
    margin: 0;
}

/* Accents de couleur pour les mots mis en gras dans tes réponses */
.text-wine-accent {
    color: var(--wine);
    font-weight: 800;
    background: linear-gradient(90deg, var(--wine), var(--amethyst));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-white {
    /* Remplacé par le violet sombre pour être visible sur fond blanc */
    color: var(--text-dark);
    font-weight: 800;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .ux-faq-final-section { padding: 80px 15px; }
    .ux-section-title-dark { font-size: 2.2rem; margin-bottom: 40px; }
    
    .ux-faq-item-card {
        flex-direction: column; /* On empile le numéro et le texte sur mobile */
        gap: 20px;
        padding: 30px 25px;
        border-radius: 28px;
    }
    
    .ux-faq-icon-side {
        /* Permet de ne pas avoir un numéro immense s'il est empilé */
        display: flex;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-ef34b23 *//* ==========================================================================
   FOOTER FINAL "CLARITY" - LIGHT MODE 2026
   ========================================================================== */

:root {
    --wine-red: #A9445B;
    --text-dark: #0f172a;
    --text-soft: #64748b;
    --bg-footer: #ffffff;
}

.ux-footer-final {
    background-color: #fafafa; /* Fond de section très légèrement grisé */
    padding: 80px 20px 40px;
    font-family: system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

.ux-footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* --- La Carte Finale (Bento Style) --- */
.ux-footer-card {
    background-color: var(--bg-footer);
    border-radius: 48px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.ux-footer-content {
    position: relative;
    z-index: 2;
}

/* --- Typographie --- */
.ux-overline {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wine-red);
    margin-bottom: 20px;
    display: block;
}

.ux-footer-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.ux-footer-desc {
    font-size: 1.2rem;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.text-wine {
    color: var(--wine-red);
    font-weight: 700;
}

/* --- Boutons CTA --- */
.ux-footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Bouton Principal (Bordeaux) */
.ux-btn-primary-glow {
    background: var(--wine-red);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(169, 68, 91, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ux-btn-primary-glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(169, 68, 91, 0.4);
    background-color: #8e384c;
}

/* Bouton Secondaire (Outline) */
.ux-btn-secondary-outline {
    background: transparent;
    color: var(--text-dark);
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ux-btn-secondary-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-5px);
}

/* --- Décoration Arrière-plan (Shape) --- */
.ux-footer-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(169, 68, 91, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* --- Mentions de bas de page --- */
.ux-footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

.ux-footer-bottom a {
    color: #64748b;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s ease;
}

.ux-footer-bottom a:hover {
    color: var(--wine-red);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .ux-footer-card {
        padding: 50px 25px;
        border-radius: 32px;
    }
    
    .ux-footer-actions {
        flex-direction: column;
    }
    
    .ux-btn-primary-glow, .ux-btn-secondary-outline {
        width: 100%;
        justify-content: center;
    }
}/* End custom CSS */