/* ===== COMPOSANTS AUDIOS V2 ===== */

/* Styles de composants optimisés */
.welcome-title {
    color: #D4AF37;
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
}

.welcome-subtitle {
    color: #8B6F63;
    text-align: center;
    font-size: 1.1rem;
}

.welcome-features {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.8rem !important;
    justify-content: center !important;
    max-width: 580px !important;
    margin: 0.6rem auto 1rem !important;
}

.welcome-feature {
    background: white !important;
    border: 1px solid #E8DDD4 !important;
    border-radius: 10px !important;
    padding: 0.6rem 0.4rem !important;
    text-align: center !important;
    min-width: 140px !important;
    flex: 0 1 140px !important;
}

.welcome-feature-icon {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background: #69443C !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 0.4rem !important;
}

/* Player Audio Premium */
.audio-demo { 
    background: linear-gradient(145deg, #FFFFFF 0%, #F9F6F3 50%, #F2E9E4 100%);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light); 
    border-radius: var(--radius-card); 
    padding: 2.5rem 2rem; 
    text-align: center; 
    margin: 0 auto 2.5rem; 
    max-width: 800px; 
    box-shadow: var(--shadow-glow);
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.audio-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.audio-demo:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(105, 68, 60, 0.15), 0 8px 32px rgba(105, 68, 60, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.audio-demo-title { 
    font-weight: 700; 
    color: var(--ink); 
    margin-bottom: .8rem; 
    animation: slideInFromTop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    font-size: 1.4rem;
    font-family: 'Cormorant', serif;
    letter-spacing: -0.01em;
}

.audio-demo-text { 
    color: var(--muted); 
    font-size: 1.05rem; 
    margin: 0 auto 1.8rem; 
    max-width: 680px; 
    animation: slideInFromTop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    line-height: 1.6;
    font-weight: 400;
}

/* Bouton Play Premium */
.play-btn { 
    width: 72px; 
    height: 72px; 
    border-radius: 50%; 
    border: none; 
    cursor: pointer; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    background: linear-gradient(145deg, #FFFFFF 0%, var(--card) 100%);
    box-shadow: 
        0 0 0 3px var(--primary) inset,
        0 12px 32px rgba(105,68,60,.2),
        0 4px 16px rgba(105,68,60,.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: var(--primary); 
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
    position: relative;
    overflow: hidden;
    margin: 0 auto 1.2rem;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(105, 68, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(105, 68, 60, 0.1), rgba(139, 111, 99, 0.1));
    opacity: 0;
    transition: opacity .4s ease;
}

.play-btn:hover::before {
    width: 300%;
    height: 300%;
}

.play-btn:hover::after {
    opacity: 1;
}

.play-btn:hover { 
    transform: translateY(-4px) scale(1.08); 
    box-shadow: 
        0 0 0 4px var(--primary) inset,
        0 20px 60px rgba(105,68,60,.25),
        0 8px 32px rgba(105,68,60,.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.play-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.play-icon { 
    font-size: 24px; 
    position: relative;
    z-index: 2;
    transition: all .3s ease;
    margin-left: 2px;
}

.play-btn:hover .play-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(105, 68, 60, 0.3));
}

.audio-caption { 
    margin-top: 1rem; 
    color: var(--muted); 
    font-size: .9rem; 
    animation: slideInFromTop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Benefits Section */
.benefits { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.2rem; 
    margin-top: 2rem; 
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item { 
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border); 
    border-radius: var(--radius-inner); 
    padding: 1.2rem 1rem; 
    display: flex; 
    flex-direction: row;
    align-items: center;
    gap: 0.8rem; 
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
    box-shadow: var(--glass-shadow);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    transition: all .6s ease;
    opacity: 0;
}

.benefit-item:hover::before {
    opacity: 1;
    transform: rotate(45deg) translateX(50%) translateY(50%);
}

.benefit-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(105, 68, 60, 0.15), 0 8px 32px rgba(105, 68, 60, 0.1);
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Icônes des Benefits - Design Ton Sur Ton */
.benefit-icon { 
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem; 
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(105, 68, 60, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%) translateY(-100%);
    transition: transform .6s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 6px 18px rgba(105, 68, 60, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.benefit-item:hover .benefit-icon::after {
    transform: translateX(100%) translateY(100%);
}

.benefit-label { 
    color: var(--ink); 
    font-size: 0.9rem; 
    line-height: 1.3; 
    transition: color .3s ease;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-align: left;
    flex: 1;
}

.benefit-item:hover .benefit-label {
    color: var(--primary);
}

/* ===== SÉANCES INDIVIDUELLES ===== */

/* Section Séances Individuelles - optimisée */
.section.singles {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.section.singles .section-title {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.section.singles .section-sub {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: var(--muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid des séances individuelles - petits carrés compacts */
.singles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px; /* Plus compact */
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

/* Cartes des séances individuelles - petits carrés compacts */
.single-card {
    background: linear-gradient(145deg, #FFFFFF 0%, rgba(249, 246, 243, 0.9) 100%);
    border: 1px solid rgba(105, 68, 60, 0.12);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(105, 68, 60, 0.08);
    position: relative;
    overflow: hidden;
    min-height: 320px; /* Hauteur compacte */
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(4px);
}

/* Header compact pour petits carrés */
.single-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(210, 197, 183, 0.2);
    position: relative;
}

.single-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.single-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.single-card:hover .single-icon::before {
    transform: rotate(45deg) translateX(100%);
}

.single-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(105, 68, 60, 0.2);
    border-color: rgba(105, 68, 60, 0.15);
}

/* Styles par type d'audio */

/* Respiration - Vert menthe */
.single-card[data-type="respiration"] .single-icon {
    background: linear-gradient(135deg, #7DD3C0 0%, #5BAE9B 100%);
    color: white;
}
.single-card[data-type="respiration"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7DD3C0 0%, #5BAE9B 100%);
    transform: scaleX(0);
    transition: transform .4s ease;
}
.single-card[data-type="respiration"]:hover::before {
    transform: scaleX(1);
}

/* Sophrologie - Bleu sage */
.single-card[data-type="sophrologie"] .single-icon {
    background: linear-gradient(135deg, #8FA8C7 0%, #6B7FA3 100%);
    color: white;
}
.single-card[data-type="sophrologie"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8FA8C7 0%, #6B7FA3 100%);
    transform: scaleX(0);
    transition: transform .4s ease;
}
.single-card[data-type="sophrologie"]:hover::before {
    transform: scaleX(1);
}

/* Somatisation - Rose terre */
.single-card[data-type="somatisation"] .single-icon {
    background: linear-gradient(135deg, #C49A7E 0%, #A67C5A 100%);
    color: white;
}
.single-card[data-type="somatisation"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #C49A7E 0%, #A67C5A 100%);
    transform: scaleX(0);
    transition: transform .4s ease;
}
.single-card[data-type="somatisation"]:hover::before {
    transform: scaleX(1);
}

/* Sommeil - Violet doux */
.single-card[data-type="sommeil"] .single-icon {
    background: linear-gradient(135deg, #B19CD9 0%, #9180B8 100%);
    color: white;
}
.single-card[data-type="sommeil"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #B19CD9 0%, #9180B8 100%);
    transform: scaleX(0);
    transition: transform .4s ease;
}
.single-card[data-type="sommeil"]:hover::before {
    transform: scaleX(1);
}

/* Détente - Orange chaud */
.single-card[data-type="detente"] .single-icon {
    background: linear-gradient(135deg, #E5B88A 0%, #D4A574 100%);
    color: white;
}
.single-card[data-type="detente"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #E5B88A 0%, #D4A574 100%);
    transform: scaleX(0);
    transition: transform .4s ease;
}
.single-card[data-type="detente"]:hover::before {
    transform: scaleX(1);
}

/* Titre et badge compacts */
.single-title {
    font-family: 'Cormorant', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
    flex: 1;
}

.single-badge {
    background: rgba(210, 197, 183, 0.25);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(210, 197, 183, 0.3);
    backdrop-filter: blur(2px);
}

/* Contenu compact */
.single-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.single-sub {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.single-spec {
    background: rgba(210, 197, 183, 0.15);
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(210, 197, 183, 0.25);
}

/* Liste compacte */
.single-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex: 1;
}

.single-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.3;
}

.li-check {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7DD3C0 0%, #5BAE9B 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 1px;
    box-shadow: 0 2px 6px rgba(125, 211, 192, 0.25);
    transition: all 0.3s ease;
}

.single-card:hover .li-check {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(125, 211, 192, 0.4);
}

/* Chips d'inclusion */
.single-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.single-chip {
    background: rgba(212, 175, 55, 0.15);
    color: #B8860B;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(4px);
}

/* Footer compact */
.single-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(210, 197, 183, 0.2);
}

.single-price-area {
    text-align: center;
    margin-bottom: 0.75rem;
}

.single-price {
    font-family: 'Cormorant', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.ttc {
    font-size: 0.65rem;
    opacity: 0.8;
    margin-left: 3px;
}

.single-format {
    color: var(--muted);
    font-size: 0.7rem;
    margin-top: 3px;
}

.btn.single-cta {
    width: 100%;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(105, 68, 60, 0.2);
    position: relative;
    overflow: hidden;
}

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

.btn.single-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(105, 68, 60, 0.35);
}

.btn.single-cta:hover::before {
    left: 100%;
}

.purchase-note.single-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Responsive séances individuelles compactes */
@media (max-width: 768px) {
    .singles-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur mobile */
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .single-card {
        min-height: 280px; /* Plus compact sur mobile */
        padding: 1rem;
    }
    
    .single-header {
        margin-bottom: 0.75rem;
        gap: 0.5rem;
    }
    
    .single-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
    
    .single-title {
        font-size: 0.95rem;
    }
    
    .single-price {
        font-size: 1.3rem;
    }
    
    .btn.single-cta {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .singles-grid {
        grid-template-columns: 1fr; /* 1 colonne sur très petit écran */
        gap: 1rem;
    }
    
    .single-card {
        min-height: 260px;
    }
}

.single-access {
    color: var(--muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ===== SECTION CTA ===== */

.cta-card {
    background: var(--card-premium);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-card);
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
}

.cta-card h3 {
    font-family: 'Cormorant', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-card p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-inner);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all .4s ease;
    box-shadow: 0 8px 24px rgba(105, 68, 60, 0.25);
}

.cta-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(105, 68, 60, 0.35);
}

/* ===== SECTION CONTACTS ===== */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-inner);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all .4s ease;
    box-shadow: var(--glass-shadow);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(105, 68, 60, 0.15);
    background: rgba(255, 255, 255, 0.4);
}

.contact-icon {
    font-size: 1.8rem;
    line-height: 1;
    filter: grayscale(20%);
}

/* Remplacer l'icône Facebook bleue */
.contact-item:nth-child(3) .contact-icon {
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(105, 68, 60, 0.25);
}

.contact-body {
    flex: 1;
}

.contact-title {
    font-weight: 600;
    color: var(--ink);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.contact-text {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color .3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Informations pratiques */
.infos {
    background: var(--card-premium);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-inner);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card);
}

.infos h4 {
    font-family: 'Cormorant', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.infos p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-icon [data-lucide] { 
    width: 18px; 
    height: 18px; 
    transition: all .4s ease;
}

/* Icônes Features - Beige-marron */
.feature-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--icon-success) 0%, var(--icon-success-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
    box-shadow: 0 2px 6px rgba(196, 150, 105, 0.25);
    transition: all .3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(196, 150, 105, 0.35);
}

/* Icônes Check - Beige-marron harmonisé */
.li-check { 
    width: 16px; 
    height: 16px; 
    border-radius: 50%; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border: 1px solid var(--icon-success); 
    background: linear-gradient(135deg, var(--icon-success) 0%, var(--icon-success-dark) 100%);
    color: white;
    font-size: .6rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(196, 150, 105, 0.2);
}

.li-check::before {
    content: "✓";
}

.li-check [data-lucide] { 
    display: none;
}

/* Animations */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Export */
.components-loaded {
    --components-ready: true;
}

/* Section de bienvenue modal */
.welcome-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.welcome-content {
    flex: 1;
}

.welcome-title {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    letter-spacing: 0.2px;
}

.welcome-subtitle {
    margin: 0.35rem auto 0;
    color: var(--muted);
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    text-align: center;
    max-width: 560px;
    line-height: 1.4;
}

.welcome-features {
    margin: 0.6rem auto 1rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    max-width: 580px;
    justify-content: center;
}

.welcome-feature {
    text-align: center;
    padding: 0.6rem 0.4rem;
    background: #fff;
    border: 1px solid #E8DDD4;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex: 0 1 min(140px, 30%);
    min-width: 140px;
}

.welcome-feature-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 0.4rem;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.welcome-feature-icon i {
    width: 16px;
    height: 16px;
}

.welcome-feature-text {
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    color: var(--ink);
    font-weight: 500;
    line-height: 1.3;
}

.welcome-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.welcome-btn-primary {
    text-decoration: none;
    height: 44px;
    border-radius: 999px;
    padding: 0 1.4rem;
    min-width: min(280px, 80vw);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.9rem, 3vw, 1rem);
}

.welcome-btn-secondary {
    height: 42px;
    border-radius: 999px;
    padding: 0 1.2rem;
    font-size: clamp(0.85rem, 2.8vw, 0.95rem);
}