/* ============================================ */
/* MOBILE.CSS V7 - DESKTOP/MOBILE SEPARATION   */
/* Stratégie: .desktop-only / .mobile-only     */
/* ============================================ */

/* ============================================ */
/* CLASSES DE VISIBILITÉ                       */
/* ============================================ */

/* Desktop: affiche desktop, cache mobile */
@media screen and (min-width: 901px) {
    .mobile-only { display: none !important; }
    .desktop-only { display: block !important; }
    .desktop-only-flex { display: flex !important; }
    .desktop-only-grid { display: grid !important; }
}

/* Mobile: affiche mobile, cache desktop */
@media screen and (max-width: 900px) {
    .desktop-only,
    .desktop-only-flex,
    .desktop-only-grid { display: none !important; }
    .mobile-only { display: block !important; }
    .mobile-only-flex { display: flex !important; }
    .mobile-only-grid { display: grid !important; }

    /* Padding pour le header fixe */
    body {
        padding-top: 60px;
    }
}

/* ===== ANIMATIONS ICÔNES ===== */
@keyframes circuitFlow {
    0% { stroke-dashoffset: 12; }
    100% { stroke-dashoffset: 0; }
}

@keyframes nodePulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes iaPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.6; }
}

@keyframes speedLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes needleFast {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes needleSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes chronoMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

@keyframes smileyBlackhole {
    0%, 65% { transform: scale(1) rotate(0deg); opacity: 1; }
    75% { transform: scale(0.5) rotate(180deg); opacity: 0.7; }
    82% { transform: scale(0) rotate(360deg); opacity: 0; }
    92% { transform: scale(0); opacity: 0; }
    96% { transform: scale(1.08) rotate(0deg); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes starFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-3px) scale(1.1); opacity: 1; }
}

/* Classes animations */
.circuit-path { stroke-dasharray: 4 2; animation: circuitFlow 1s linear infinite; }
.circuit-path-delay-1 { animation-delay: 0.25s; }
.circuit-path-delay-2 { animation-delay: 0.5s; }
.circuit-path-delay-3 { animation-delay: 0.75s; }
.node-pulse { animation: nodePulse 1.5s ease-in-out infinite; transform-origin: center; }
.node-pulse-delay-1 { animation-delay: 0.25s; }
.node-pulse-delay-2 { animation-delay: 0.5s; }
.node-pulse-delay-3 { animation-delay: 0.75s; }
.ia-pulse { animation: iaPulse 2s ease-in-out infinite; }
.speed-line { animation: speedLine 0.8s ease-in-out infinite; }
.speed-line-delay-1 { animation-delay: 0.15s; }
.speed-line-delay-2 { animation-delay: 0.3s; }
.chrono-group { animation: chronoMove 0.8s ease-in-out infinite; }
.needle-fast { transform-origin: 36px 30px; animation: needleFast 4s linear infinite; }
.needle-slow { transform-origin: 36px 30px; animation: needleSlow 12s linear infinite; }
.smiley-bh { animation: smileyBlackhole 7s ease-in-out infinite; transform-origin: center; }
.star-float { animation: starFloat 2s ease-in-out infinite; }
.star-float-delay-1 { animation-delay: 0.3s; }
.star-float-delay-2 { animation-delay: 0.6s; }


/* ============================================ */
/* HEADER MOBILE V6                            */
/* ============================================ */

.header-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1a0033;
}

.header-mobile__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.header-mobile__logo img {
    height: 36px;
    width: auto;
    border-radius: 8px;
}

.header-mobile__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-mobile__cta {
    padding: 7px 16px;
    background: linear-gradient(180deg, #ff7a51 0%, #ff3f9b 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.78rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease;
}

.header-mobile__cta:hover,
.header-mobile__cta:active {
    transform: translateY(-1px);
}

/* Burger tricolore */
.header-mobile__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.header-mobile__burger span {
    display: block;
    height: 3px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-mobile__burger span:nth-child(1) {
    width: 24px;
    background: #8000ff;
}

.header-mobile__burger span:nth-child(2) {
    width: 18px;
    background: #ff3f9b;
}

.header-mobile__burger span:nth-child(3) {
    width: 24px;
    background: #ff703d;
}

/* Burger -> X animation */
.header-mobile__burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
    width: 24px;
}

.header-mobile__burger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.header-mobile__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
    width: 24px;
}

/* Menu overlay - aligné sur le style page contact (slide animation + barres colorées) */
.header-mobile__menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a0033;
    padding: 30px 25px;
    overflow-y: auto;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.header-mobile__menu.active {
    transform: translateX(0);
}

.header-mobile__menu-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-mobile__link {
    display: block;
    padding: 18px 24px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 4px solid #8000ff;
    transition: all 0.3s ease;
}

/* Barres colorées par défaut (violet / rose / orange) — match page contact */
.header-mobile__link:nth-of-type(2) { border-left-color: #ff3f9b; }
.header-mobile__link:nth-of-type(3) { border-left-color: #ff703d; }
.header-mobile__link:nth-of-type(4) { border-left-color: #8000ff; }
.header-mobile__link:nth-of-type(5) { border-left-color: #ff3f9b; }

.header-mobile__link:hover,
.header-mobile__link:active {
    background: rgba(168, 85, 247, 0.12);
    padding-left: 28px;
}

.header-mobile__menu-separator {
    height: 2px;
    background: linear-gradient(90deg, #8000ff, #ff3f9b, #ff703d);
    margin: 28px 0;
    border-radius: 2px;
    opacity: 0.4;
}

.header-mobile__menu-contact {
    text-align: center;
    padding: 10px;
}

.header-mobile__menu-contact p {
    color: white;
    opacity: 0.5;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.header-mobile__phone {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    color: #8000ff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

/* Body menu open */
body.mobile-menu-open {
    overflow: hidden;
}


/* ============================================ */
/* HERO MOBILE V6                              */
/* ============================================ */

.hero-mobile {
    padding: 20px 20px 35px;
    text-align: center;
    background: #1a0033;
}

.hero-mobile__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-mobile__title span {
    background: linear-gradient(135deg, #8000ff, #ff3f9b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-mobile__subtitle {
    color: white;
    opacity: 0.7;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-mobile__cta {
    width: 100%;
    padding: 16px;
    background: #ff703d;
    border: none;
    border-radius: 14px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 112, 61, 0.3);
    text-decoration: none;
    display: block;
    text-align: center;
}


/* ============================================ */
/* LOGOS CLIENTS MOBILE V6                     */
/* ============================================ */

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

.clients-mobile {
    padding: 20px 0 25px;
    text-align: center;
    overflow: hidden;
}

.clients-mobile__label {
    font-size: 0.75rem;
    color: white;
    opacity: 0.5;
    margin: 0 0 14px;
    font-weight: 500;
    padding: 0 20px;
}

.clients-mobile__track {
    overflow: hidden;
    width: 100%;
}

.clients-mobile__logos {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    animation: scrollLogos 15s linear infinite;
}

.clients-mobile__logos:hover {
    animation-play-state: paused;
}

.clients-mobile__logo {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(128, 0, 255, 0.08);
    flex-shrink: 0;
}

.clients-mobile__logo svg {
    height: 22px;
    width: auto;
    color: white;
    opacity: 0.5;
}


/* ============================================ */
/* 3 RAISONS MOBILE V6                         */
/* ============================================ */

.reasons-mobile {
    padding: 0 15px 25px;
}

.reasons-mobile__container {
    background: linear-gradient(135deg, #8000ff 0%, #ff3f9b 100%);
    border-radius: 24px;
    padding: 30px 20px;
}

.reasons-mobile__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 24px;
}

.reasons-mobile__cards {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.reasons-mobile__card {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reasons-mobile__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.reasons-mobile__icon svg {
    width: 50px;
    height: 50px;
}

.reasons-mobile__card h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.reasons-mobile__card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
    line-height: 1.5;
    margin: 0;
}


/* ============================================ */
/* COMMENT ÇA MARCHE MOBILE V6                 */
/* ============================================ */

.steps-mobile {
    padding: 25px 20px;
}

.steps-mobile__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.steps-mobile__container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.steps-mobile__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.steps-mobile__step:nth-child(2) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 63, 155, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.steps-mobile__step:nth-child(3) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 112, 61, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.steps-mobile__number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: white;
}

.steps-mobile__number--purple {
    background: linear-gradient(135deg, #8000ff, #a64dff);
}

.steps-mobile__number--pink {
    background: linear-gradient(135deg, #ff3f9b, #ff6bb3);
}

.steps-mobile__number--orange {
    background: linear-gradient(135deg, #ff703d, #ff8f66);
}

.steps-mobile__content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 6px;
}

.steps-mobile__content p {
    color: white;
    opacity: 0.7;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}


/* ============================================ */
/* CAS D'USAGE MOBILE V6                       */
/* ============================================ */

.profiles-mobile {
    padding: 25px 0;
}

.profiles-mobile__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

/* Tabs en grille 2x2 style cards */
.profiles-mobile__tabs {
    padding: 0 20px 20px;
}

.profiles-mobile__tabs-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.profiles-mobile__tab {
    padding: 14px 10px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.12), rgba(255, 63, 155, 0.08));
    color: white;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    position: relative;
}

.profiles-mobile__tab:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 63, 155, 0.12), rgba(255, 112, 61, 0.08));
}

.profiles-mobile__tab:nth-child(3) {
    background: linear-gradient(135deg, rgba(255, 112, 61, 0.12), rgba(255, 63, 155, 0.08));
}

.profiles-mobile__tab:nth-child(4) {
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.08), rgba(255, 112, 61, 0.12));
}

.profiles-mobile__tab.active {
    background: linear-gradient(135deg, #8000ff, #ff3f9b);
    color: white;
    box-shadow: 0 4px 15px rgba(128, 0, 255, 0.35);
    transform: scale(1.02);
}

.profiles-mobile__tab.active:nth-child(2) {
    background: linear-gradient(135deg, #ff3f9b, #ff703d);
    box-shadow: 0 4px 15px rgba(255, 63, 155, 0.35);
}

.profiles-mobile__tab.active:nth-child(3) {
    background: linear-gradient(135deg, #ff703d, #ff3f9b);
    box-shadow: 0 4px 15px rgba(255, 112, 61, 0.35);
}

.profiles-mobile__tab.active:nth-child(4) {
    background: linear-gradient(135deg, #8000ff, #ff703d);
    box-shadow: 0 4px 15px rgba(128, 0, 255, 0.35);
}

.profiles-mobile__content {
    padding: 0 20px;
}

.profiles-mobile__card {
    display: none;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(128, 0, 255, 0.15);
    overflow: hidden;
}

.profiles-mobile__card.active {
    display: block;
}

/* Image de profil dans la carte */
.profiles-mobile__image {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

.profiles-mobile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.profiles-mobile__card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 10px;
}

.profiles-mobile__card > p {
    color: white;
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 16px;
}

.profiles-mobile__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.profiles-mobile__tag {
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.1), rgba(255, 63, 155, 0.1));
    border-radius: 50px;
    font-size: 0.75rem;
    color: #8000ff;
    font-weight: 500;
}

.profiles-mobile__cta {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #8000ff, #ff3f9b);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(128, 0, 255, 0.3);
}


/* ============================================ */
/* STATS MOBILE V6                             */
/* ============================================ */

.stats-mobile {
    padding: 25px 20px;
}

.stats-mobile__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stats-mobile__card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.stats-mobile__value {
    font-size: 1.7rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #8000ff, #ff3f9b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-mobile__value--alt {
    background: linear-gradient(135deg, #ff3f9b, #ff703d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-mobile__label {
    color: white;
    opacity: 0.6;
    font-size: 0.75rem;
    margin-top: 4px;
}


/* ============================================ */
/* VIDEO MOBILE V6                             */
/* ============================================ */

.video-mobile {
    padding: 25px 20px;
}

.video-mobile__container {
    background: #1a0033;
    border-radius: 24px;
    padding: 20px;
}

.video-mobile__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 16px;
}

.video-mobile__player {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #8000ff, #ff3f9b);
    cursor: pointer;
    margin-bottom: 14px;
}

.video-mobile__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-mobile__play::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #8000ff;
    margin-left: 4px;
}

.video-mobile__duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 3px 8px;
    border-radius: 4px;
    color: white;
    font-size: 0.7rem;
}

.video-mobile__tabs {
    display: flex;
    gap: 10px;
}

.video-mobile__tab {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

/* Démo = violet */
.video-mobile__tab--demo.active {
    background: rgba(128, 0, 255, 0.25);
    border-color: #8000ff;
}

/* Témoignage = orange */
.video-mobile__tab--temoignage.active {
    background: rgba(255, 112, 61, 0.25);
    border-color: #ff703d;
}

.video-mobile__tab-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Icône démo = violet */
.video-mobile__tab--demo .video-mobile__tab-icon {
    background: linear-gradient(135deg, #8000ff, #a64dff);
}

/* Icône témoignage = orange */
.video-mobile__tab--temoignage .video-mobile__tab-icon {
    background: linear-gradient(135deg, #ff703d, #ff8f66);
}

.video-mobile__tab-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid white;
    margin-left: 2px;
}

.video-mobile__tab-text p {
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    margin: 0;
}

.video-mobile__tab-text span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6rem;
}


/* ============================================ */
/* TÉMOIGNAGES MOBILE V6                       */
/* ============================================ */

.testimonials-mobile {
    padding: 25px 20px;
}

.testimonials-mobile__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 16px;
}

.testimonials-mobile__carousel {
    position: relative;
}

.testimonials-mobile__card {
    display: none;
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(128, 0, 255, 0.12);
    border-left: 4px solid #8000ff;
}

.testimonials-mobile__card.active {
    display: block;
}

.testimonials-mobile__card[data-color="pink"] {
    border-left-color: #ff3f9b;
}

.testimonials-mobile__card[data-color="orange"] {
    border-left-color: #ff703d;
}

/* Header avec photo et infos */
.testimonials-mobile__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonials-mobile__photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #8000ff;
    flex-shrink: 0;
}

.testimonials-mobile__card[data-color="pink"] .testimonials-mobile__photo {
    border-color: #ff3f9b;
}

.testimonials-mobile__card[data-color="orange"] .testimonials-mobile__photo {
    border-color: #ff703d;
}

.testimonials-mobile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-mobile__info {
    flex: 1;
}

.testimonials-mobile__name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 0.95rem;
    margin: 0 0 2px;
}

.testimonials-mobile__role {
    color: #8000ff;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
}

.testimonials-mobile__card[data-color="pink"] .testimonials-mobile__role {
    color: #ff3f9b;
}

.testimonials-mobile__card[data-color="orange"] .testimonials-mobile__role {
    color: #ff703d;
}

.testimonials-mobile__company {
    color: white;
    opacity: 0.6;
    font-size: 0.75rem;
    margin: 2px 0 0;
}

.testimonials-mobile__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.testimonials-mobile__stars svg {
    width: 16px;
    height: 16px;
    fill: #8000ff;
}

.testimonials-mobile__card[data-color="pink"] .testimonials-mobile__stars svg {
    fill: #ff3f9b;
}

.testimonials-mobile__card[data-color="orange"] .testimonials-mobile__stars svg {
    fill: #ff703d;
}

.testimonials-mobile__quote {
    color: white;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 16px;
}

.testimonials-mobile__quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 1.5rem;
    color: #8000ff;
    font-family: Georgia, serif;
    opacity: 0.4;
}

.testimonials-mobile__card[data-color="pink"] .testimonials-mobile__quote::before {
    color: #ff3f9b;
}

.testimonials-mobile__card[data-color="orange"] .testimonials-mobile__quote::before {
    color: #ff703d;
}

.testimonials-mobile__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.testimonials-mobile__dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    border: none;
    background: rgba(128, 0, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testimonials-mobile__dot.active {
    width: 24px;
    background: linear-gradient(135deg, #8000ff, #ff3f9b);
}


/* ============================================ */
/* FAQ MOBILE V6                               */
/* ============================================ */

.faq-mobile {
    padding: 25px 20px;
}

.faq-mobile__container {
    background: #1a0033;
    border-radius: 24px;
    padding: 22px;
}

.faq-mobile__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 18px;
}

.faq-mobile__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-mobile__item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-mobile__item.active {
    border-color: rgba(255, 63, 155, 0.4);
}

.faq-mobile__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-mobile__question p {
    color: white;
    font-size: 0.82rem;
    font-weight: 500;
    margin: 0;
    padding-right: 10px;
}

.faq-mobile__question span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.faq-mobile__item.active .faq-mobile__question span {
    color: #ff3f9b;
    transform: rotate(45deg);
}

.faq-mobile__answer {
    display: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    margin: 10px 0 0;
    line-height: 1.5;
}

.faq-mobile__item.active .faq-mobile__answer {
    display: block;
}


/* ============================================ */
/* SÉCURITÉ MOBILE V6                          */
/* ============================================ */

.security-mobile {
    padding: 20px 20px 25px;
    text-align: center;
}

.security-mobile__badges {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.security-mobile__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.security-mobile__icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #8000ff, #ff3f9b);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(128, 0, 255, 0.25);
}

.security-mobile__badge span {
    font-size: 0.72rem;
    font-weight: 600;
    color: white;
}


/* ============================================ */
/* CTA MOBILE V6                               */
/* ============================================ */

.cta-mobile {
    padding: 25px 20px;
}

.cta-mobile__container {
    background: linear-gradient(135deg, #8000ff, #ff3f9b);
    border-radius: 24px;
    padding: 28px 22px;
    text-align: center;
}

.cta-mobile__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-mobile__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
}

.cta-mobile__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin: 0 0 20px;
}

.cta-mobile__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-mobile__option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-mobile__option--primary {
    background: #ff703d;
    color: white;
}

.cta-mobile__option--secondary {
    background: rgba(255, 255, 255, 0.95);
    color: white;
}

.cta-mobile__option--tertiary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-mobile__option-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-mobile__option--primary .cta-mobile__option-icon {
    background: rgba(255, 255, 255, 0.2);
}

.cta-mobile__option--secondary .cta-mobile__option-icon {
    background: linear-gradient(135deg, #8000ff, #ff3f9b);
    color: white;
}

.cta-mobile__option--tertiary .cta-mobile__option-icon {
    background: rgba(255, 255, 255, 0.15);
}

.cta-mobile__option-text {
    text-align: left;
}

.cta-mobile__option-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-mobile__option-text span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.cta-mobile__option--secondary .cta-mobile__option-text span {
    color: #666;
}


/* ============================================ */
/* FOOTER MOBILE V6                            */
/* ============================================ */

.footer-mobile {
    background: #1a0033;
    padding: 32px 20px 24px;
    text-align: center;
}

.footer-mobile__top {
    margin-bottom: 20px;
}

.footer-mobile__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.footer-mobile__logo img {
    height: 36px;
    width: auto;
    border-radius: 8px;
}

.footer-mobile__tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin: 0;
}

.footer-mobile__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-mobile__contact-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-mobile__contact-item svg {
    opacity: 0.7;
}

.footer-mobile__social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-mobile__social-link {
    width: 40px;
    height: 40px;
    background: #ff3f9b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 63, 155, 0.4);
}

.footer-mobile__social-link:hover {
    background: #e6358a;
    transform: translateY(-2px);
}

.footer-mobile__links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
}

.footer-mobile__links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-decoration: none;
}

.footer-mobile__copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.65rem;
    margin: 0;
}
