/* CSS SPÉCIFIQUE ACCUEIL LAMBOT */




/* --- BLOC 2 : FEATURETTE (Style LuxAlgo) --- */
.lambot-scripts-section {
    padding: 80px 20px 40px 20px;
    /* background: #1a1924; */
    background: radial-gradient(circle at center, #2f2b4a 0%, #1a1924 100%);
    /* Fond légèrement différent pour alterner */
    margin-top: 10em;
    border-radius: 20px;
}

/* --- Variables (à adapter selon ton thème si besoin) --- */
:root {
    --lambot-primary: #b170e5;
    /* Violet Lambot */
    --lambot-secondary: #f57c00;
    /* Orange */
    --lambot-dark-bg: #242336;
    /* Fond sombre */
    --lambot-text: #eaeaea;
    --lambot-card-bg: rgba(36, 35, 54, 0.8);
}

/* --- BLOC 1 : HERO SECTION --- */
.lambot-hero-section {
    text-align: center;
    padding: 60px 20px;
    /* background: radial-gradient(circle at center, #2f2b4a 0%, #1a1924 100%); */
    border-radius: 12px;
    margin-bottom: 40px;
    /* border: 1px solid rgba(177, 112, 229, 0.1); */
}

.hero-title {
    font-size: 3.2em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.highlight-text {
    color: var(--lambot-primary);
    text-shadow: 0 0 20px rgba(177, 112, 229, 0.4);
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--lambot-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    background-color: var(--lambot-primary) !important;
    border-color: var(--lambot-primary) !important;
    color: #fff !important;
    padding: 12px 30px !important;
    font-weight: bold !important;
    border-radius: 50px !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background-color: #9a5ecb !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(177, 112, 229, 0.4);
}

.cta-button-secondary {
    background: transparent !important;
    border: 2px solid #eaeaea !important;
    color: #eaeaea !important;
    padding: 12px 30px !important;
    font-weight: bold !important;
    border-radius: 50px !important;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-color: #fff !important;
}

.hero-trust {
    margin-top: 30px;
    color: #888;
    font-size: 0.9em;
}

.exchange-logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.exchange-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--lambot-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- BLOC 3 : SOLUTION SECTION --- */
.lambot-solution-section {
    padding: 60px 20px;
    text-align: center;
    flex: 1;
    margin: 0 auto;
}

.section-title {
    font-size: 2em;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.inter-title {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--lambot-text);
    margin-bottom: 50px;
    font-size: 1.1em;
}

.solution-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    flex-direction: column;
}

.solution-card {
    background: var(--lambot-dark-bg);
    padding: 25px 15px;
    border-radius: 12px;
    width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--lambot-primary);
}

.highlight-card {
    /* border-color: var(--lambot-primary); */
    background: linear-gradient(145deg, #242336 0%, #2d2b45 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-wrapper {
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-wrapper i {
    font-size: 32px;
    color: var(--lambot-primary);
}

.highlight-card .icon-wrapper {
    background: var(--lambot-primary);
}

.highlight-card .icon-wrapper i {
    color: #fff;
}

.solution-card h3 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.solution-card p {
    color: var(--lambot-text);
    font-size: 0.95em;
    line-height: 1.5;
}

.connector-arrow {
    color: #555;
    display: flex;
    align-items: center;
}

.connector-arrow i {
    font-size: 30px;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .solution-grid {
        flex-direction: column;
        gap: 30px;
    }

    .connector-arrow {
        transform: rotate(90deg);
        margin: -10px 0;
    }

    .hero-title {
        font-size: 1.8em;
    }

    .hero-actions {
        flex-direction: column;
    }
}

/* --- BLOC 2 : FEATURETTE () --- */

.featurette-container {
    display: flex;
    align-items: flex-start;
    /* Alignement en haut pour éviter l'étirement */
    justify-content: space-between;
    /* Espacement max */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.featurette-text {
    flex: 1;
    min-width: 300px;
    /* Largeur min pour éviter l'écrasement */
    max-width: 500px;
}

.featurette-visual {
    flex: 1;
    min-width: 300px;
    width: 100%;
    /* Force la largeur */
    position: relative;
    display: block !important;
    /* Force l'affichage */
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    /* flex-direction: column; */
}

.feature-icon {
    font-size: 32px;
    color: var(--lambot-primary);
    /* Orange pour le contraste */
    /* background: rgba(245, 124, 0, 0.1); */
    padding: 12px;
    border-radius: 12px;
    width: 10%;
}

.feature-item h4 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-item p {
    color: var(--lambot-text);
    font-size: 0.95em;
    line-height: 1.5;
    margin: 0;
}

/* Adaptation du Slider existant */
.slider_nav {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Utilitaires de visibilité pour le V2 */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

.liens_anim {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--lambot-text) !important;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 auto 0 auto;
}

.liens_anim:hover,
.liens_anim.active {
    background: var(--lambot-secondary);
    color: #fff !important;
    border-color: var(--lambot-secondary);
}

.cd-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Mobile */
@media (max-width: 992px) {
    .featurette-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .featurette-text {
        max-width: 100%;
    }

    .section-title,
    .section-subtitle {
        text-align: center !important;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .slider_nav {
        justify-content: center;
    }

    /* Bascule Desktop/Mobile pour le V2 */
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .backtest-card {
        width: auto !important;
        /* Forcer une largeur fixe sur mobile */
        height: 100px !important;
        /* Forcer une hauteur fixe */
        flex-shrink: 0;
        /* Empêcher l'écrasement */
    }

    .marquee-content {
        gap: 15px;
        /* Réduire un peu l'espace entre les cartes */
    }

    .backtest-card img {
        height: 100px !important;
    }

    .marquee-content {
        gap: 15px;
        /* Réduire un peu l'espace entre les cartes */
    }
}

/* --- BLOC 4 : FAQ --- */
/* .lambot-faq-section {
    padding: 60px 20px;
    background: radial-gradient(circle at center, #2f2b4a 0%, #1a1924 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 5px 10px 5px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--lambot-primary);
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    color: var(--lambot-secondary);
    font-size: 24px;
}

.faq-question h3 {
    color: #fff;
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
}

.faq-answer {
    color: var(--lambot-text);
    font-size: 0.95em;
    line-height: 1.6;
    margin-left: 40px;
}

@media (max-width: 768px) {
    .faq-answer {
        margin-left: 0;
    }
} */

/* --- CSS MANQUANT POUR LE SLIDER V2 --- */

/* 1. Gestion des Onglets */
.strat-container {
    display: none;
    animation: fadeIn 0.5s ease;
}

.strat-container.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 2. Styles du Slider (Inspiré de custom.css mais adapté V2) */
.class_container_strat,
.class_container_strat_mobile {
    display: grid;
    place-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    --position: 12.9%;
    /* Valeur par défaut */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-container {
    position: relative;
    width: 100%;
    /* aspect-ratio: 16/9;  Optionnel, adapte selon tes images */
}

.slider-image {
    width: 100%;
    height: auto;
    /* Important pour garder le ratio */
    display: block;
    object-fit: cover;
}

.image-before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--position);
    object-fit: cover;
    object-position: left;
    /* filter: grayscale(100%); Optionnel */
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.image-after {
    position: relative;
    z-index: 1;
}

.slider_input {
    position: absolute;
    inset: 0;
    cursor: ew-resize;
    opacity: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    /* Doit être au-dessus de tout */
    margin: 0;
    touch-action: none;
    appearance: none;
}

.slider-line {
    position: absolute;
    inset: 0;
    width: 4px;
    height: 100%;
    background-color: #fff;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-button3 {
    position: absolute;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 4;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* --- BLOC 1 : BACKTEST MARQUEE (Nouveau) --- */
.lambot-backtest-section {
    padding: 80px 20px;
    background: radial-gradient(circle at center, #2f2b4a 0%, #1a1924 100%);
    overflow: hidden;
    border-radius: 20px;
}

.backtest-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.backtest-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.backtest-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    justify-content: flex-end;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2em;
    font-weight: 800;
    color: var(--lambot-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9em;
    color: var(--lambot-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.backtest-visual {
    flex: 1.5;
    /* Plus large que le texte */
    width: 100%;
    position: relative;
    /* Pour les overlays */
    min-width: 0;
    /* Fix flexbox overflow */
}

/* Marquee Wrapper */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    gap: 20px;
    width: max-content;
    /* Important pour que ça ne wrap pas */
}

.marquee-group {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
    /* Vitesse ajustable */
}

.backtest-card {
    /* Changer la taille des images dans le carousel infini */
    /* width: 300px; */
    /* Largeur fixe des cartes */
    height: 200px;
    /* Hauteur fixe pour uniformiser */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    /* Empêche le rétrécissement */
}

.backtest-card:hover {
    transform: scale(1.05);
    /* border-color: var(--lambot-primary); */
    z-index: 10;
}

.backtest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Remplit la carte sans déformer */
    display: block;
}

/* Animation Infini */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Pause au survol */
.marquee-wrapper:hover .marquee-group {
    animation-play-state: paused;
}

/* Responsive Mobile */
@media (max-width: 992px) {
    .backtest-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .backtest-text {
        max-width: 100%;
    }

    .section-title,
    .section-subtitle {
        text-align: center !important;
    }

    .backtest-stats {
        justify-content: center;
    }

    .backtest-visual {
        width: 100vw;
        /* Pleine largeur écran */
        margin-left: -20px;
        /* Compenser le padding parent */
        margin-right: -20px;
    }

}

/* --- BLOC 2 : INVERTED LAYOUT (Slider Gauche / Texte Droite) --- */
.lambot-scripts-section.inverted-layout .featurette-container {
    flex-direction: row-reverse;
}

@media (max-width: 992px) {
    .lambot-scripts-section.inverted-layout .featurette-container {
        flex-direction: column-reverse;
    }
}

/* --- BLOC 3 : AUTOMATION (iPhone) --- */
.lambot-automation-section {
    padding: 100px 20px;
    /* background: #09080a; */
    /* Fond très sombre */
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.automation-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 60px 20px;
}

.automation-header {
    margin-bottom: 60px;
}

.automation-visual {
    position: relative;
    display: inline-block;
    /* Pour centrer l'iPhone */
    margin-bottom: 50px;
    perspective: 1000px;
}

/* iPhone Mockup CSS */
.iphone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    box-shadow:
        0 0 0 2px #333,
        /* Contour fin */
        0 0 0 6px #1a1a1a,
        /* Cadre principal */
        0 20px 50px rgba(0, 0, 0, 0.8);
    /* Ombre portée */
    position: relative;
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    /* Légère 3D */
    transition: transform 0.5s ease;
    border: 8px solid #111;
}

.iphone-mockup:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #111;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    border-radius: 32px;
}

.iphone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glow Effects */
.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: pulseGlow 5s infinite alternate;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--lambot-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: #6a0dad;
    /* Violet */
    top: 20%;
    right: -100px;
    animation-delay: 2s;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .iphone-mockup {
        width: 260px;
        height: 520px;
        transform: none;
        /* Pas de 3D sur mobile pour simplifier */
    }

    .iphone-mockup:hover {
        transform: none;
    }

    .lambot-automation-section {
        flex-direction: column-reverse;
        padding: 100px 20px 20px 20px;
    }

    .inter-title {
        font-size: 1.5em;
    }

    .feature-icon {
        padding: 0px;
    }

    .display-mobile {
        display: none;
    }

    .display-none-mobile {
        display: inline-block;
    }

    .lambot-solution-section {
        padding: 20px;
    }

    .lambot-scripts-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.display-none-mobile {
    display: none;
}

.lambot-section {
    display: flex;
    text-align: center;
    flex-direction: column;
    margin-top: 10em;
}


.lambot-footer {
    display: flex;
    flex-direction: column;
}

.cta-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* --- ANIMATIONS --- */
/* Classe utilitaire pour cacher les éléments avant l'animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Classe ajoutée par JS quand l'élément est visible */
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Délais pour l'effet "cascade" */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}


/* --- PRICING SECTION --- */
.pricing-section {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* SWITCHER (Segmented Control) */
.pricing-switcher-container {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
}

.pricing-switcher {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    /* Fond un peu plus visible */
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Bordure plus marquée */
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Ombre interne pour la profondeur */
}

.pricing-switcher input {
    display: none;
}

.switch-label {
    position: relative;
    z-index: 2;
    padding: 10px 25px;
    cursor: pointer;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: .5rem;
}

.badge-promo {
    background: var(--lambot-primary);
    color: black;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 800;
}

/* Animation du curseur */
.switch-selection {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    background: var(--lambot-primary);
    /* Cyan */
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(177, 112, 229, 0.3);
}

/* Logique d'affichage du curseur (Approximation CSS pure, JS recommandé pour précision parfaite) */
/* Pour simplifier en CSS pur, on utilise des largeurs fixes ou flex */
.pricing-switcher input:checked+label {
    color: #000;
    /* Texte noir sur fond cyan */
}

/* Positionnement du curseur selon l'input coché (Ajuster les % selon la largeur des labels) */
#switch-1:checked~.switch-selection {
    width: 30%;
    transform: translateX(0);
}

#switch-4:checked~.switch-selection {
    width: 36%;
    transform: translateX(85%);
}

#switch-12:checked~.switch-selection {
    width: 32%;
    transform: translateX(208%);
}


/* GRILLE DES PRIX */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    /* Pour que la carte premium puisse être plus grande */
}

/* CARTE DE PRIX */
.price-card {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* CARTE PREMIUM (Le Stratège) */
.price-card.premium {
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.8), rgba(177, 112, 229, 0.05));
    border: 1px solid var(--lambot-primary);
    box-shadow: 0 0 20px rgba(177, 112, 229, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.price-card.premium:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(177, 112, 229, 0.25);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lambot-primary);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(177, 112, 229, 0.4);
}

/* CONTENU CARTE */

.card-header,
.card-footer {
    background-color: transparent !important;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.card-price {
    margin-bottom: 2rem;
    text-align: center;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.price-period {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.price-daily {
    color: var(--lambot-primary);
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 500;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
    /* Pousse le bouton vers le bas */
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.card-features li i {
    color: var(--lambot-primary);
    font-size: 1.2rem;
}

/* BOUTONS */
.btn-pricing {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing.outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-pricing.outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-pricing.full {
    background: var(--lambot-primary);
    color: black;
    box-shadow: 0 4px 15px rgba(177, 112, 229, 0.3);
}

.btn-pricing.full:hover {
    background: #33efff;
    /* Cyan un peu plus clair */
    box-shadow: 0 6px 20px rgba(177, 112, 229, 0.5);
}

/* FOOTER INFO */
.pricing-footer-info {
    margin-top: 3rem;
    text-align: center;
}


/* --- FAQ ACCORDION --- */
.lambot-faq-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: white;
    display: flex;
    flex-direction: column;
    /* text-align: center; */
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
    background: rgba(20, 20, 30, 0.8);
    border-color: var(--lambot-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    background: var(--lambot-dark-bg);
    border: none;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--lambot-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    padding: 25px 25px 25px 25px;
    color: var(--lambot-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-content ul {
    padding-left: 20px;
    margin: 0;
}

.faq-content li {
    margin-bottom: 8px;
}

body#checkout section.checkout-step .delivery-option {
    background: transparent !important;
    border: none !important;
}