/* ==========================================================================
   BOUTIQUE MYSTIQUE - SÉLECTEUR CINÉMATOGRAPHIQUE
   Architecture émotionnelle avec effets wahou
   ========================================================================== */

/* --- 1. HERO SECTION --- */
.boutique-hero-mystique {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #1b0033;
}

.hero-overlay-mystique {
    position: absolute;
    inset: 0;
    background: rgba(27, 0, 51, 0.75);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.hero-content-mystique,
.boutique-hero-mystique > .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Timer compact */
.timer-mystique-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.hero-title-mystique {
    font-family: 'Allan', 'Helvetica', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #FFD700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

.hero-teaser-mystique {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.timer-circle-mystique {
    position: relative;
    display: inline-block;
    margin: 15px 0;
    width: 100px;
    height: 100px;
}

.timer-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(131, 14, 231, 0.6));
}

.timer-progress {
    stroke-dasharray: 377;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.timer-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.timer-number {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.timer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3px;
}

.timer-message-zero {
    display: none;
    text-align: center;
    padding: 15px;
    background: rgba(40, 0, 68, 0.9);
    border: 2px solid #FFD700;
    border-radius: 15px;
    margin-top: 10px;
    animation: fadeIn 0.5s ease;
}

.timer-message-zero.visible {
    display: block !important;
}

.coffee-animation {
    font-size: 2.5rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.message-text-zero {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 8px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 2. SÉLECTEUR MYSTIQUE COMPACT --- */
.selector-intelligent-mystique {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(40, 0, 68, 0.95);
    border: 3px solid rgba(131, 14, 231, 0.6);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(131, 14, 231, 0.4);
    min-height: 380px;
    overflow: hidden;
}

/* ✨ Particules mystiques flottantes */
.selector-intelligent-mystique::before,
.selector-intelligent-mystique::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.selector-intelligent-mystique::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
}

.selector-intelligent-mystique::after {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(131, 14, 231, 0.15) 0%, transparent 70%);
    bottom: -125px;
    left: -125px;
    animation: float 10s ease-in-out infinite reverse;
}

.selector-intelligent-mystique:hover::before,
.selector-intelligent-mystique:hover::after {
    opacity: 1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

/* Étapes avec transitions fluides */
.selector-step-mystique {
    position: absolute;
    inset: 30px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.selector-step-mystique.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    inset: auto;
}

.selector-title-mystique {
    font-size: 1.6rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.step-number {
    color: #fff;
    font-weight: normal;
    display: inline-block;
    padding: 3px 10px;
    background: rgba(131, 14, 231, 0.3);
    border-radius: 15px;
    margin-right: 5px;
}

/* ✨ ÉTAPE 1 : 3 CARTES BESOINS avec effets magiques */
.needs-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.need-card-mystique {
    position: relative;
    background: rgba(27, 0, 51, 0.8);
    border: 2px solid rgba(131, 14, 231, 0.4);
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Particules dorées au hover */
.need-card-mystique::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 215, 0, 0.1) 50%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    animation: shimmer 2s infinite;
}

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

.need-card-mystique:hover::before {
    opacity: 1;
}

/* Effet hover : Illumination + élévation */
.need-card-mystique:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #FFD700;
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2) inset;
    background: rgba(27, 0, 51, 0.95);
}

/* Effet sélection : Checkmark + illumination permanente */
.need-card-mystique.selected {
    background: rgba(131, 14, 231, 0.3);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Checkmark animé qui apparaît */
.need-card-mystique.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    animation: checkmarkPop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* Désaturation des autres cartes */
.need-card-mystique:not(.selected) {
    opacity: 0.6;
    filter: grayscale(0.3);
}

.needs-cards-grid:has(.need-card-mystique.selected) .need-card-mystique:not(.selected) {
    opacity: 0.5;
    filter: grayscale(0.5);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.need-card-mystique:hover .card-glow,
.need-card-mystique.selected .card-glow {
    opacity: 1;
}

.need-icon-mystique {
    font-size: 2.5rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px currentColor);
}

.need-title-mystique {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 8px;
    font-weight: bold;
}

.need-desc-mystique {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.3;
}

.need-price-mystique {
    font-size: 1.1rem;
    color: #fff;
    font-weight: bold;
}

/* ✨ ÉTAPE 2 : 6 PORTES avec effet 3D */
.methods-doors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.method-door-mystique {
    position: relative;
    aspect-ratio: 1.1;
    background: rgba(27, 0, 51, 0.9);
    border: 3px solid rgba(131, 14, 231, 0.5);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    perspective: 1000px;
}

/* Lumière dorée derrière (cachée par défaut) */
.method-door-mystique::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

/* Effet hover : Porte s'ouvre avec rotation 3D + lumière */
.method-door-mystique:hover {
    transform: scale(1.05) rotateY(5deg);
    border-color: #FFD700;
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.3) inset;
}

.method-door-mystique:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

/* Effet sélection : Porte reste ouverte + halo doré */
.method-door-mystique.selected {
    transform: scale(1.05) rotateY(5deg);
    background: rgba(131, 14, 231, 0.4);
    border-color: #FFD700;
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.6),
        0 15px 40px rgba(131, 14, 231, 0.4);
}

.method-door-mystique.selected::before {
    opacity: 1;
    transform: scale(2);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.door-icon-mystique {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px currentColor);
    transition: transform 0.3s ease;
}

.method-door-mystique:hover .door-icon-mystique,
.method-door-mystique.selected .door-icon-mystique {
    transform: scale(1.1) translateY(-5px);
}

.door-name-mystique {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Prix qui pulse quand sélectionné */
.door-price-mystique {
    font-size: 1rem;
    color: #fff;
    font-weight: bold;
    margin-top: 5px;
}

.method-door-mystique.selected .door-price-mystique {
    animation: pricePulse 1.5s ease-in-out infinite;
}

@keyframes pricePulse {
    0%, 100% { 
        transform: scale(1);
        color: #FFD700;
    }
    50% { 
        transform: scale(1.1);
        color: #FFF;
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

/* ✨ ÉTAPE 3 : RÉSULTAT avec apparition magique */
.result-card-mystique {
    text-align: center;
    padding: 30px;
    background: rgba(27, 0, 51, 0.9);
    border: 2px solid #FFD700;
    border-radius: 20px;
    animation: resultAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Animation d'apparition depuis le haut */
@keyframes resultAppear {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    60% {
        transform: translateY(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Pulsation d'attention subtile */
.result-card-mystique::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    border-radius: 20px;
    animation: attentionPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes attentionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.result-icon-mystique {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    animation: iconFloat 3s ease-in-out infinite;
}

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

.result-product-name {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 12px;
    font-weight: bold;
}

.result-product-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.5;
}

.result-product-price {
    font-size: 2.2rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.result-actions-mystique {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Boutons avec effet glow animé */
.button-mystique {
    position: relative;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
    overflow: hidden;
}

.button-mystique::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.button-mystique:hover::before {
    transform: translateX(100%);
}

.button-mystique.primary {
    background: linear-gradient(135deg, #FFD700, #830EE7);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.button-mystique.primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.4);
}

.button-mystique.secondary {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.button-mystique.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
    color: #FFD700;
}

/* --- 3. NAVIGATION STICKY --- */
.boutique-nav-sticky-mystique {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(27, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    box-shadow: 0 5px 30px rgba(131, 14, 231, 0.3);
    border-bottom: 2px solid rgba(131, 14, 231, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.boutique-nav-sticky-mystique.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links-mystique {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-link-mystique {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: rgba(40, 0, 68, 0.7);
    border: 2px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-link-mystique:hover {
    border-color: rgba(131, 14, 231, 0.8);
    background: rgba(40, 0, 68, 0.9);
}

.nav-link-mystique.active {
    background: rgba(131, 14, 231, 0.5);
    border-color: #FFD700;
    color: #FFD700;
}

.nav-icon-mystique {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* --- 4. SECTIONS PRODUITS --- */
.service-section-mystique {
    position: relative;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.service-section-mystique.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-overlay-mystique {
    position: absolute;
    inset: 0;
    background: rgba(40, 0, 68, 0.85);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.service-section-mystique > .container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-mystique {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon-mystique {
    font-size: 4.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.section-title-mystique {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #FFD700;
    margin-bottom: 20px;
}

.section-description-mystique {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.products-grid-mystique {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card-mystique {
    background: rgba(40, 0, 68, 0.85);
    border: 2px solid rgba(131, 14, 231, 0.4);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card-mystique:hover {
    border-color: #FFD700;
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
    background: rgba(40, 0, 68, 0.95);
}

.product-badge-mystique {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.badge-ideal { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; }
.badge-popular { background: linear-gradient(135deg, #FF6B6B, #FF4757); color: white; }
.badge-premium { background: linear-gradient(135deg, #A78BFA, #8B5CF6); color: white; }
.badge-love { background: linear-gradient(135deg, #FF6B9D, #C44569); color: white; }
.badge-whatsapp { background: #25D366; color: white; }
.badge-messenger { background: #0084FF; color: white; }
.badge-guidance { 
    background: linear-gradient(135deg, #FF6B6B, #DC143C); 
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

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

.product-icon-wrapper-mystique {
    margin-bottom: 20px;
}

.product-icon-wrapper-mystique i {
    font-size: 3.5rem;
    color: #FFD700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.product-icon-wrapper-mystique .fab {
    color: #25D366;
}

.product-icon-wrapper-mystique .fab.fa-facebook-messenger {
    color: #0084FF;
}

.product-name-mystique {
    font-size: 1.6rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.product-description-mystique {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-price-mystique {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-duration-mystique {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.product-duration-mystique i {
    color: #FFD700;
    margin-right: 5px;
}

.button-product-mystique {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    margin-top: auto;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #830EE7;
    background: rgba(131, 14, 231, 0.3);
    color: #fff;
}

.button-product-mystique:hover {
    background: #830EE7;
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 14, 231, 0.6);
}

.button-product-mystique.secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.button-product-mystique.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFD700;
}

.button-product-mystique.tertiary {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
}

.button-product-mystique.tertiary:hover {
    background: #25D366;
    border-color: #FFD700;
}

/* --- 5. SECTION SEO --- */
.seo-content-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a001a 0%, #1b0033 50%, #280044 100%);
    overflow: hidden;
}

.seo-content-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(131, 14, 231, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.seo-content-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.seo-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.seo-header {
    text-align: center;
    margin-bottom: 60px;
}

.seo-title {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    font-family: 'Allan', 'Helvetica', sans-serif;
}

.seo-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.seo-cards-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
}

.seo-card-large {
    grid-column: span 7;
    background: rgba(40, 0, 68, 0.6);
    border: 2px solid rgba(131, 14, 231, 0.4);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.seo-card-large:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 60px rgba(131, 14, 231, 0.5);
}

.seo-card-image {
    grid-column: span 5;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    min-height: 400px;
}

.seo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.seo-card-image.left {
    grid-column: 1 / span 5;
}

.seo-card-large.right {
    grid-column: 6 / span 7;
}

.seo-card-content h3 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

.seo-card-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 15px;
}

.seo-card-full {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: rgba(40, 0, 68, 0.6);
    border: 2px solid rgba(131, 14, 231, 0.4);
    border-radius: 30px;
    padding: 50px;
    backdrop-filter: blur(10px);
    align-items: center;
}

.seo-card-full:hover {
    border-color: #FFD700;
    box-shadow: 0 20px 60px rgba(131, 14, 231, 0.5);
}

.seo-card-full .seo-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.seo-card-full img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.seo-card-full:hover img {
    transform: scale(1.05);
}

/* --- 6. CTA FINAL --- */
.final-cta-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #280044 0%, #1b0033 50%, #830EE7 100%);
    text-align: center;
    overflow: hidden;
}

.final-cta-section::before {
    content: '✨';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

.final-cta-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    animation: pulse 2s ease-in-out infinite;
}

.final-cta-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.final-cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .products-grid-mystique {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .needs-cards-grid, 
    .methods-doors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .seo-card-large,
    .seo-card-large.right,
    .seo-card-image,
    .seo-card-image.left {
        grid-column: span 12;
    }
    .seo-card-full {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .boutique-hero-mystique { 
        padding: 80px 15px 40px; 
        background-attachment: scroll; 
    }
    .selector-intelligent-mystique {
        padding: 20px;
        min-height: 350px;
    }
    .selector-title-mystique {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .needs-cards-grid, 
    .methods-doors-grid, 
    .products-grid-mystique {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    .need-card-mystique,
    .method-door-mystique {
        padding: 20px 15px;
    }
    .result-card-mystique {
        padding: 25px 20px;
    }
    .hero-title-mystique { 
        font-size: 1.8rem; 
    }
    .boutique-nav-sticky-mystique { 
        display: none !important;
    }
    .seo-content-section {
        padding: 60px 15px;
    }
    .seo-card-large {
        padding: 30px 20px;
    }
    .seo-card-image {
        min-height: 250px;
    }
    .seo-card-full {
        padding: 30px 20px;
    }
}