html {
    scroll-behavior: smooth;
}

/* --- ANIMATION PULSE POUR LE BOUTON DE RAPPORT --- */

/* 1. Définition de l'animation */
@keyframes pulse-blue {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 90, 240, 0.7); /* Bleu AMLBot semi-transparent */
    }
    70% {
        transform: scale(1.05); /* S'agrandit très légèrement */
        box-shadow: 0 0 0 15px rgba(0, 90, 240, 0); /* Onde qui s'étend et disparaît */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 90, 240, 0);
    }
}

/* 2. Application aux classes spécifiques du bouton */
.xjlz7q5x8iq.xeclyh7fga4 {
    animation: pulse-blue 2s infinite; /* Boucle toutes les 2 secondes */
    transition: all 0.3s ease;
}

/* 3. Pause de l'animation au survol pour le confort de l'utilisateur */
.xjlz7q5x8iq.xeclyh7fga4:hover {
    animation: none;
    transform: scale(1.08); /* Reste légèrement plus grand au survol */
    box-shadow: 0 10px 20px rgba(0, 90, 240, 0.2);
}

/* RESET GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f4f5f6; /* Couleur de fond gris très clair */
    color: #000;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 24px;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

/* --- BARRE DE NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 24px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: inherit;
}

.site-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: 42px;
    object-fit: contain;
}

.footer-logo-text {
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #000;
}

.nav-actions-desktop {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.login-link, .lang-selector {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 15px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* --- BOUTONS --- */
.btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.2s;
}

.btn:hover {
    opacity: 0.85;
}

.btn-black {
    background-color: #000;
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #d0d4dd;
    color: #000;
}

.btn-blue {
    background-color: #005af0;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* --- SECTION HERO --- */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
    gap: 40px;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-left h1 {
    font-size: clamp(2.6rem, 7vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    text-wrap: balance;
}

.hero-left p {
    font-size: clamp(1rem, 2.4vw, 1.25rem);
    color: #333;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 34rem;
}

.cta-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 60px;
}

.btn-demo {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid transparent;
}

.btn-demo:hover {
    text-decoration: underline;
}

.btn-demo i {
    font-size: 24px;
}

/* --- ENCART DE CONFIANCE (TRUST BADGES) --- */
.trust-badges {
    border: 1px solid #e0e0e0; /* Bordure discrète */
    border-radius: 16px;
    padding: 24px;
    display: inline-block;
    background-color: transparent;
    width: 100%;
    max-width: 580px;
}

.trust-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
    color: #333;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 24px;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}


/* Style pour les vrais logos */
.trust-img {
    width: 24px;
    height: 24px;
    border-radius: 50%; /* Arrondit les bords si les images sont carrées */
    object-fit: cover;  /* Évite que l'image ne se déforme */
    background-color: #fff; /* Fond blanc au cas où tes PNG sont transparents */
}

/* --- IMAGE ORDINATEUR --- */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    right: -40px; /* Décale légèrement l'image vers la droite comme sur le design */
    min-width: 0;
}

.laptop-img {
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
}

/* --- RESPONSIVE (Pour Tablettes et Mobiles) --- */
@media (max-width: 1024px) {
    .page-wrapper {
        padding: 0 32px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .trust-badges {
        text-align: left;
        max-width: 100%;
    }
    
    .hero-right {
        right: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        padding: 0 18px;
    }

    .site-logo {
        height: 34px;
    }

    .navbar {
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
    }

    .nav-actions-desktop {
        width: 100%;
        gap: 12px;
    }

    .nav-actions-desktop .login-link,
    .nav-actions-desktop .lang-selector {
        display: none;
    }

    .btn-black,
    .btn-blue {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero {
        padding: 28px 0 40px;
        gap: 28px;
    }

    .hero-left h1 {
        letter-spacing: -1px;
    }

    .hero-left p {
        margin-bottom: 28px;
    }

    .cta-group {
        gap: 14px;
        margin-bottom: 36px;
    }

    .btn-demo {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        padding: 18px;
    }

    .trust-logos {
        gap: 14px 16px;
    }

    .logo-item {
        width: calc(50% - 8px);
        min-width: 0;
    }

    .hero-right {
        width: 100%;
        margin-top: 0;
    }
}

/* --- SECTION PARTENAIRES --- */
.partners-section {
    padding: 60px 0 100px 0;
    text-align: center;
}

.partners-section h2 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

/* Le conteneur principal qui masque ce qui sort de l'écran */
.partners-slider {
    width: 100%;
    overflow: hidden; /* Cache les logos qui dépassent sur les côtés */
    position: relative;
    padding: 20px 0;
}

/* La piste qui contient les 26 logos (13 originaux + 13 dupliqués) */
.slide-track {
    display: flex;
    gap: 20px;
    width: max-content; /* Prend la largeur exacte de tous les logos alignés */
    animation: scroll 60s linear infinite; /* 60s pour un tour complet, vitesse constante, à l'infini */
}

/* Met l'animation en pause quand on passe la souris dessus (petit bonus sympa !) */
.slide-track:hover {
    animation-play-state: paused;
}

/* L'animation magique */
@keyframes scroll {
    0% {
        transform: translateX(0); /* Point de départ */
    }
    100% {
        /* On recule de la moitié de la piste (donc on arrive à la fin des 13 premiers logos) */
        /* Note: calc() ajuste précisément pour inclure l'espace (gap) entre les logos */
        transform: translateX(calc(-50% - 10px)); 
    }
}

/* Les cartes blanches */
.partner-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px 40px;
    min-width: 220px; /* Largeur minimum de chaque carte */
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Empêche les cartes de s'écraser les unes sur les autres */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02); /* Optionnel : très légère ombre */
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Garde les proportions de vos logos intactes */
}

/* --- RESPONSIVE PARTENAIRES --- */
@media (max-width: 1024px) {
    .partner-card {
        min-width: 180px;
        height: 80px;
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 48px 0 72px 0;
    }

    .partner-card {
        min-width: 150px;
        height: 72px;
        padding: 14px 18px;
        border-radius: 14px;
    }
}

/* --- SECTION STATISTIQUES (BANDE BLEUE) --- */
.stats-banner {
    background: linear-gradient(135deg, #1f53ff 0%, #3f72ff 100%);
    padding: 32px;
    color: #ffffff;
    border-radius: 28px;
    margin-bottom: 80px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.stat-item {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stat-visual {
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.stat-item h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
}

.stat-item p {
    max-width: 18ch;
    font-size: 1.02rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* Les logos du milieu (Binance, OKX...) */
.exchanges-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 40px;
    flex-wrap: wrap;
}

.exchanges-logos img {
    height: 30px;
    object-fit: contain;
}

/* --- ANIMATION AU SCROLL (FADE UP) --- */
/* État de départ : transparent et décalé de 60px vers le bas */
.fade-up {
    opacity: 0;
    transform: translateY(60px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* État d'arrivée (ajouté par le Javascript) : 100% visible et à sa place d'origine */
.fade-up.visible {
    opacity: 1;
    transform: translateY(0); 
}

/* Petits délais pour un effet "cascade" pro (colonne 1, puis 2, puis 3) */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* --- RESPONSIVE BANDE BLEUE --- */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .stats-banner {
        padding: 20px;
        border-radius: 22px;
        margin-bottom: 56px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat-item {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .stat-item h3 {
        font-size: 1.9rem;
    }

    .stat-item p {
        font-size: 1rem;
        max-width: 22ch;
    }

    .exchanges-logos {
        gap: 12px;
    }

    .exchanges-logos img {
        height: 28px;
    }
}

/* --- SECTION ANALYSIS --- */
.analysis-section {
    padding: 20px 0 80px;
}

.analysis-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.analysis-header h2 {
    font-size: clamp(2rem, 5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.analysis-header p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.analysis-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.analysis-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: #005af0;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.analysis-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.analysis-card p {
    color: #555;
    line-height: 1.6;
}

.analysis-link {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #005af0;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .analysis-section {
        padding: 0 0 64px;
    }

    .analysis-card {
        padding: 22px;
        border-radius: 18px;
    }
}

/* --- SECTION INITIATIVES --- */
.initiatives-section {
    padding: 20px 0 80px 0;
}

.initiatives-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.initiatives-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -1px;
}

.blog-link {
    text-decoration: none;
    color: #005af0; /* Le bleu de ton site */
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.blog-link:hover {
    opacity: 0.8;
}

/* La grille pour aligner les 4 cartes */
.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes de largeur égale */
    gap: 24px;
}

/* Design d'une carte individuelle */
.initiative-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 16px; /* L'espace blanc à l'intérieur de la carte */
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* Petit effet au survol (hover) */
.initiative-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Ombre douce */
    transform: translateY(-5px); /* Se soulève de 5px */
}

/* L'image de la carte */
.initiative-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 16px;
    object-fit: cover;
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.read-time {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.initiative-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #000;
}

.initiative-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* --- RESPONSIVE INITIATIVES (Pour tablettes et mobiles) --- */
@media (max-width: 1024px) {
    /* Sur tablette, on passe à 2 colonnes au lieu de 4 */
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Sur mobile, on passe à 1 colonne (les cartes s'empilent) */
    .initiatives-grid {
        grid-template-columns: 1fr;
    }
    
    .initiatives-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .initiative-card {
        padding: 14px;
    }
}

/* --- SECTION SERVICES --- */
.services-section {
    padding: 100px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 1.15rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

/* Grille de 3 colonnes */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Design des cartes */
.service-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Légère ombre au survol */
    transform: translateY(-5px);
}

.service-icon {
    width: 48px; /* Taille des petites icônes 3D */
    height: 48px;
    margin-bottom: 24px;
    object-fit: contain;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #000;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 22px;
}

.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #005af0;
    text-decoration: none;
    font-weight: 700;
}

/* --- RESPONSIVE SERVICES --- */
@media (max-width: 1024px) {
    /* Sur tablette, on passe à 2 colonnes */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Sur mobile, on passe à 1 colonne */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-section {
        padding: 64px 0 80px;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-header p {
        font-size: 1rem;
    }

    .service-card {
        padding: 28px 22px;
        border-radius: 18px;
    }
}

/* --- MOBILE MENU & ALIGNMENT OVERHAUL --- */

/* Cacher les actions desktop sur mobile */
.nav-actions-desktop { display: flex; align-items: center; gap: 20px; }
.mobile-actions { display: none; }
.burger-menu { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.burger-menu span { width: 25px; height: 3px; background: #000; border-radius: 2px; transition: 0.3s; }

@media (max-width: 768px) {
    .nav-actions-desktop { display: none; }
    .burger-menu { display: flex; z-index: 1001; }
    
    /* Le menu qui glisse du côté */
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 100px 40px;
        gap: 25px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active { right: 0; }
    .mobile-actions { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; border-top: 1px solid #eee; padding-top: 20px; }
    
    /* Animation du bouton Burger */
    .burger-menu.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-menu.open span:nth-child(2) { opacity: 0; }
    .burger-menu.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* --- ALIGNEMENTS TEXTE MOBILE --- */
    .hero, .services-header, .initiatives-header, .partners-section h2 {
        text-align: center !important;
    }

    .hero-left h1 { font-size: 2.2rem; line-height: 1.2; }
    .hero-left p { margin: 0 auto 30px auto; }
    
    .cta-group { justify-content: center; width: 100%; }
    .btn-blue { width: 100%; text-align: center; font-size: 1.2rem; }

    .stat-item { align-items: center; text-align: center; }
    .exchanges-logos { justify-content: center; }
}

/* --- SECTION CERTIFICATION ISO --- */
.certification-section {
    padding: 20px 0 100px 0;
}

.certification-card {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.cert-icon img {
    width: 220px;
    height: auto;
}

.cert-content {
    flex: 1;
}

.cert-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.cert-content p {
    font-size: 1.3rem;
    color: #000;
    line-height: 1.4;
    margin-bottom: 32px;
}

.cert-link {
    text-decoration: none;
    color: #005af0;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- AJUSTEMENT MOBILE POUR LA CERTIFICATION --- */
@media (max-width: 768px) {
    .certification-card {
        flex-direction: column;
        padding: 40px 24px;
        text-align: center;
        gap: 30px;
        border-radius: 28px;
    }

    .cert-icon img {
        width: 150px;
    }

    .cert-content h2 {
        font-size: 2rem;
    }

    .cert-content p {
        font-size: 1.1rem;
    }

    .cert-link {
        justify-content: center;
    }
}

/* --- SECTION PRICING --- */
.pricing-section {
    padding: 20px 0 80px;
}

.pricing-card {
    background: linear-gradient(135deg, #0f1728 0%, #1d2d4f 100%);
    color: #ffffff;
    border-radius: 32px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.pricing-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: #8bb2ff;
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pricing-copy h2 {
    font-size: clamp(2.1rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.pricing-copy p,
.pricing-panel p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

.pricing-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.pricing-value {
    font-size: clamp(2.6rem, 6vw, 3.6rem);
    font-weight: 800;
    line-height: 1;
}

.pricing-unit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.pricing-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
}

/* --- SECTION ABOUT --- */
.about-section {
    padding: 20px 0 80px;
}

.about-header {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.about-header p {
    color: #444;
    line-height: 1.6;
    font-size: 1.05rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.about-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    color: #005af0;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.about-card p {
    color: #555;
    line-height: 1.6;
}

.about-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #005af0;
    font-weight: 700;
}

/* --- SECTION CONTACT --- */
.contact-section {
    padding: 20px 0 0;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e7eaf0;
    border-radius: 28px;
    padding: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.contact-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: #005af0;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-copy h2 {
    font-size: clamp(2rem, 5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.contact-copy p {
    color: #555;
    line-height: 1.6;
    max-width: 56ch;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.contact-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.contact-actions .btn-outline {
    padding: 16px 28px;
    border-radius: 14px;
    border: 1px solid #d5dce7;
    background: #ffffff;
}

.contact-primary {
    padding: 16px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #151922 0%, #000000 100%);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1024px) {
    .pricing-card {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-actions {
        justify-content: flex-start;
    }
}

/* --- SUBPAGES --- */
.subpage-main {
    padding-bottom: 80px;
}

.page-hero {
    padding: 28px 0 56px;
    max-width: 820px;
}

.page-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef4ff;
    color: #005af0;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.page-hero p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #444;
    max-width: 62ch;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.page-section {
    padding: 20px 0 72px;
}

.page-section-head {
    max-width: 760px;
    margin-bottom: 28px;
}

.page-section-head h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.page-section-head p {
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
}

.page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.page-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-grid.four-col {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.page-card h3,
.page-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
}

.page-card p {
    color: #555;
    line-height: 1.65;
}

.page-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    color: #555;
}

.page-card li {
    position: relative;
    padding-left: 18px;
    line-height: 1.55;
}

.page-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #005af0;
    transform: translateY(-50%);
}

.page-card .small-link,
.text-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #005af0;
    text-decoration: none;
    font-weight: 700;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.stat-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid #e7eaf0;
}

.stat-box strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-box span {
    color: #555;
    line-height: 1.5;
}

.split-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.stack-list {
    display: grid;
    gap: 16px;
}

.stack-item {
    padding: 18px 20px;
    border-radius: 18px;
    background: #f8f9fb;
    border: 1px solid #e7eaf0;
}

.stack-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
}

.stack-item p {
    color: #555;
    line-height: 1.6;
}

.tab-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.tab-links a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dfe5ef;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.tab-links a:hover {
    border-color: #005af0;
    color: #005af0;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline-item {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid #e7eaf0;
}

.timeline-step {
    display: inline-flex;
    margin-bottom: 12px;
    color: #005af0;
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pill {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: #f1f4f9;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.channel-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #e7eaf0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.channel-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
}

.channel-card p {
    color: #555;
    line-height: 1.65;
}

.legal-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #e7eaf0;
}

.legal-card + .legal-card {
    margin-top: 20px;
}

.legal-card h2 {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.legal-card p,
.legal-card li {
    color: #555;
    line-height: 1.7;
}

.legal-card ul {
    margin-top: 14px;
    padding-left: 18px;
}

@media (max-width: 1024px) {
    .page-grid,
    .page-grid.four-col,
    .stat-grid,
    .channel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .subpage-main {
        padding-bottom: 56px;
    }

    .page-hero {
        padding: 18px 0 40px;
    }

    .page-actions,
    .tab-links {
        flex-direction: column;
    }

    .page-grid,
    .page-grid.two-col,
    .page-grid.four-col,
    .stat-grid,
    .channel-grid {
        grid-template-columns: 1fr;
    }

    .page-card,
    .split-card,
    .channel-card,
    .legal-card {
        padding: 22px;
        border-radius: 20px;
    }
}

/* --- SECTION NOTRE ÉQUIPE --- */
.team-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.team-content {
    padding: 24px;
}

.team-role {
    font-size: 14px;
    color: #888;
    display: block;
    margin-bottom: 8px;
}

.team-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.team-socials {
    display: flex;
    gap: 12px;
}

.team-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f4f5f6;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s;
}

.team-socials a:hover {
    color: #005af0;
    background: #eef4ff;
}

.team-socials i {
    font-size: 14px;
}

/* --- ADAPTATION MOBILE --- */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-img-container img {
        height: 350px;
    }
}

/* --- SECTION FAQ --- */
.faq-section {
    padding: 80px 0;
}

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    color: #000;
}

.faq-question i {
    color: #005af0;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: 0.4s ease-out;
    color: #555;
    line-height: 1.6;
}

.faq-answer p + p {
    margin-top: 14px;
}

.faq-answer strong {
    color: #000;
}

/* État Actif */
.faq-item.active {
    box-shadow: 0 10px 25px rgba(0, 90, 240, 0.08);
}

.faq-item.active .faq-answer {
    max-height: 1400px;
    padding-bottom: 30px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/* --- SECTION FOOTER --- */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 40px 0;
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #888;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #005af0;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #555;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #fff;
    font-size: 20px;
    transition: transform 0.3s, color 0.3s;
}

.footer-socials a:hover {
    color: #005af0;
    transform: translateY(-3px);
}

/* --- FOOTER RESPONSIVE --- */
@media (max-width: 768px) {
    .pricing-card,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card,
    .contact-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .contact-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-actions {
        justify-content: flex-start;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 20px auto 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-socials {
        justify-content: center;
    }
}
