/* ==============================
   GLOBAL HERO
============================== */
.landing-hero {
    padding: 110px 0 80px;
    background: #0D0D0D;
    color: #fff;
}

.landing-hero-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

/* ==============================
   LEFT COLUMN
============================== */
.landing-hero-left {
    flex: 1;
}

/* (A) CALLROOM — discrète mais lisible */
.hero-brand {
    font-size: 30px;
    font-weight: 800;
    color: #FF6A1A !important;   /* Orange CallRoom */
    opacity: 0.9;                 /* Légère atténuation premium */
    margin: 0 0 22px 0;
    line-height: 1;
    letter-spacing: -0.4px;
}

/* (B) BADGE */
.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    font-size: 16px;
    margin-bottom: 50px;
}

.landing-badge .icon {
    font-size: 18px;
    color: #FF6A1A;
}

/* (E) MAIN SUBTITLE — TON CHAMP hero_subtitle = grand titre */
.hero-subtitle {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin: 0 0 50px;
    max-width: 700px;
}

/* Accent automatique après le premier point */
.hero-subtitle::after {
    content: "";
}

.hero-subtitle span {
    color: #FF6A1A;
}

/* On colore automatiquement le texte après le point */
.hero-subtitle {
    display: block;
}

.hero-subtitle strong {
    color: #FF6A1A;
}

.hero-extra-text {
    font-size: 20px;
    color: #ffffff;
    margin: 10px 0 25px;
    opacity: 0.9;
}

/* ==============================
   CTA GROUP
============================== */
.landing-cta-group {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 60px;
}

/* CTA ORANGE */
.cta-primary {
    background: #FF6A1A;
    padding: 20px 45px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 0 22px rgba(255, 106, 26, 0.45);
    transition: 0.2s ease;
}

.cta-primary:hover {
    background: #FF7A2A;
    box-shadow: 0 0 30px rgba(255, 106, 26, 0.6);
}

/* CTA SECONDARY */
.cta-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 18px 40px;
    font-size: 20px;
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.2s ease;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.14);
}

/* ==============================
   RESPONSIVE FIX — HERO
============================== */
@media (max-width: 1024px) {
    .landing-hero-inner {
        flex-direction: column;
        text-align: left;
        gap: 50px;
    }

    .landing-hero-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .landing-hero-right img {
        width: 100%;
        max-width: 420px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 70px 0 60px;
    }

    .hero-brand {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .landing-badge {
        font-size: 14px;
        padding: 8px 16px;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 36px;
        line-height: 1.2;
        max-width: 100%;
    }

    .landing-cta-group {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 30px;
    }
}

/* FIX DU BOUTON CTA SUR MOBILE */
@media (max-width: 480px) {

    .landing-cta-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch; /* force la largeur 100% */
    }

    .cta-primary,
    .cta-secondary {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        padding: 16px 10px !important; /* réduit le padding latéral */
        font-size: 17px !important;
        box-sizing: border-box !important;
        text-align: center;
        white-space: normal !important;  /* évite que le texte déborde */
    }
}

/* ==============================
   STATS
============================== */
.landing-stats {
    display: flex;
    white-space: nowrap;
    gap: 100px;
}

.stat .value {
    display: block;
    font-size: 26px;
    font-weight: 400;
}

.stat .label {
    font-size: 18px;
    opacity: 0.75;
    margin-top: 5px;
}

/* ==============================
   RIGHT IMAGE
============================== */
.landing-hero-left {
    max-width: 55%; /* Empêche la colonne gauche de tout prendre */
}

.landing-hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 380px; /* Empêche l’écrasement de la colonne */
}

.landing-hero-right img {
    width: 100%;
    max-width: 520px; /* Taille réelle souhaitée de l’image */
    height: auto;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1100px) {
    .landing-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 42px;
    }

    .landing-hero-right img {
        width: 100%;
        max-width: 420px;
        margin: 40px auto 0;
    }

    .landing-cta-group {
        justify-content: center;
    }

    .landing-stats {
        justify-content: center;
    }
}

/* Neutralisation du calque newsletter uniquement sur la landing */
.page-template-template-landing #news-signup_bg,
.page-template-template-landing #news-signup {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Désactive le lock du body qui provoque le calque gris */
body.landing-callroom-body {
    overflow: visible !important;
}

body.landing-callroom-body #news-signup,
body.landing-callroom-body #news-signup_bg {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =====================================
   PROBLÈME / SOLUTION SECTION
===================================== */
.landing-problem-solution {
    padding: 120px 0 80px;
    background: #0D0D0D;
    color: #fff;
}

.ps-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 120px;
    align-items: flex-start;
}

/* =====================================
   COLUMN BLOCKS
===================================== */
.ps-block {
    flex: 1;
}

/* =====================================
   BADGES
===================================== */
.ps-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 40px;
}

.ps-badge .icon {
    font-size: 16px;
}

.ps-badge-red {
    background: rgba(255,40,40,0.08);
    border: 1px solid rgba(255,40,40,0.15);
    color: #FF4040;
}

.ps-badge-orange {
    background: rgba(255,106,26,0.08);
    border: 1px solid rgba(255,106,26,0.15);
    color: #FF6A1A;
}

/* =====================================
   TITLES
===================================== */
.ps-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 35px 0;
}

.ps-title .ps-grey {
    color: rgba(255,255,255,0.55);
}

.ps-title .ps-orange {
    color: #FF6A1A;
}

/* =====================================
   TEXT
===================================== */
.ps-text {
    font-size: 20px;
    color: rgba(255,255,255,0.80);
    line-height: 1.6;
    margin-bottom: 22px;
}

/* =====================================
   LISTS
===================================== */
.ps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.ps-list li {
    font-size: 20px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ps-list-red li::before,
.ps-list-orange li::before {
    content: "•";
    font-size: 26px;
    margin-right: 8px;
}

.ps-list-red li::before {
    color: #FF4040;
}

.ps-list-orange li::before {
    color: #FF6A1A;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 1100px) {
    .ps-container {
        flex-direction: column;
        gap: 80px;
    }

    .ps-title {
        font-size: 42px;
    }
}


/* ====================================
   FEATURES SECTION
==================================== */
.landing-features {
    background: #0D0D0D;
    padding: 120px 0 100px;
    color: #fff;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.features-title-accent {
    color: #FF6A1A;
}

.features-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    max-width: 850px;
    margin: 0 auto;
}

/* ====================================
   GRID
==================================== */
.features-grid {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 50px;
}

/* ====================================
   FEATURE CARD
==================================== */
.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 18px;
    transition: 0.25s ease;
}

.feature-card:hover {
    border-color: rgba(255,255,255,0.20);
    background: rgba(255,255,255,0.07);
}

/* ICON */
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,106,26,0.12);
    border: 1px solid rgba(255,106,26,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 26px;
}

/* TITRE */
.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* TEXTE */
.feature-text {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255,255,255,0.75);
}

/* ====================================
   RESPONSIVE
==================================== */
@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-title {
        font-size: 42px;
    }
}


/* =====================================
   DÉCOUVREZ LA CALL ROOM
===================================== */

.landing-callroom {
    background: #0D0D0D;
    padding: 140px 0 120px;
    color: #fff;
}

/* ----- HEADER ----- */

.callroom-header {
    text-align: center;
    margin-bottom: 80px;
}

.callroom-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 18px;
}

.callroom-title span {
    color: #FF6A1A;
}

.callroom-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.75);
    max-width: 850px;
    margin: 0 auto;
}

/* ----- IMAGES GRID ----- */

.callroom-images {
    max-width: 1500px;
    margin: 0 auto 90px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.callroom-image-card {
    flex: 1;
}

.callroom-image-card img {
    width: 100%;
    border-radius: 22px;
    display: block;
    box-shadow: 0px 0px 40px rgba(0,0,0,0.45);
}

/* ----- STATS ----- */

.callroom-stats-subtitle {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 40px;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    text-align: center;
}

.callroom-stats {
    max-width: 1500px;
    margin: 0 auto 80px;
    padding: 0 40px;

    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
    gap: 60px 40px;
    text-align: center;
}

.cr-stat h3 {
    font-size: 48px;
    font-weight: 800;
    color: #FF6A1A;
    margin-bottom: 12px;
}

.cr-stat p {
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255,255,255,0.75);
    max-width: 330px;
    margin: 0 auto;
}

/* TABLETTE */
@media (max-width: 900px) {
    .callroom-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .callroom-stats {
        grid-template-columns: 1fr;
    }

    .cr-stat h3 {
        font-size: 40px;
    }
}

/* ==========================================
   TESTIMONIALS SECTION
========================================== */
.landing-testimonials {
    background: #0D0D0D;
    padding: 140px 0 120px;
    color: #fff;
}

/* ----- HEADER ----- */
.testi-header {
    text-align: center;
    margin-bottom: 80px;
}

.testi-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
}

.testi-title span {
    color: #FF6A1A;
}

.testi-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.75);
}

/* ----- GRID ----- */
.testi-grid {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ----- CARD ----- */
.testi-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.35);
    transition: 0.25s ease;
}

.testi-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
}

/* ----- ICON ----- */
.testi-icon {
    font-size: 42px;
    color: #FF6A1A;
    line-height: 1;
}

/* ----- STARS ----- */
.testi-stars {
    color: #FF6A1A;
    letter-spacing: 4px;
    font-size: 20px;
}

/* ----- TEXT ----- */
.testi-text {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
}

/* ----- AUTHOR ----- */
.testi-author {
    margin-top: auto;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    padding-top: 25px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1100px) {
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* SECTION VIDEO */
.landing-testimonials-video {
    background: #0D0D0D;      /* fond sombre comme le reste */
    padding: 120px 0;
    text-align: center;
    color: #fff;
    width: 100%;
}

.video-inner {
    max-width: 900px;        /* centre tout le contenu */
    margin: 0 auto;
    padding: 0 40px;
}

/* TITRE VIDEO */
.video-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 50px;
    text-align: center !important;
}

.video-title span {
    color: #FF6A1A;
}

/* VIDEO SHORTS RESPONSIVE */
.short-wrapper {
    width: 400px;              /* largeur normale d'un Short */
    max-width: 100%;           /* responsive */
    margin: 0 auto;
    position: relative;
    aspect-ratio: 9 / 16;      /* ratio officiel vertical */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
}

.short-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* MOBILE */
@media (max-width: 700px) {
    .video-title {
        font-size: 36px;
    }
}

/* ==========================================
   SOCIAL PROOF SECTION
========================================== */
.landing-social-proof {
    background: #0D0D0D;
    padding: 140px 0 0;
    color: #fff;
}

/* ---------- RATINGS ---------- */
.ratings-grid {
    max-width: 1500px;
    margin: 0 auto 120px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.rating-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 330px;
    box-shadow: 0px 0px 35px rgba(0,0,0,0.35);
}

.rating-card img {
    max-height: 170px;
    width: auto;
    object-fit: contain;
}

/* ---------- CLIENT LOGOS ---------- */
.clients-section {
    background: #FF6A1A;
    padding: 100px 0;
    text-align: center;
}

.clients-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 70px;
    color: #fff;
}

.clients-logos {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.client-card {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 22px 40px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 120px;
    backdrop-filter: blur(4px);
}

.client-card img {
    width: 100%;        /* ON REMPLIT EN LARGEUR */
    max-width: 150px;   /* Limite haute */
    height: auto;       /* Ratio respecté */
    object-fit: contain;
    display: block;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .ratings-grid {
        grid-template-columns: 1fr;
    }

    .clients-logos {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .clients-title {
        font-size: 32px;
    }

    .client-card {
        min-width: 140px;
        height: 70px;
    }
}

/* ===========================
   Pricing Section
=========================== */

.pricing-section {
    padding: 140px 0;
    background: #0e0e0e;
    color: #fff;
    text-align: center;
}

/* Title */
.pricing-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
}

.pricing-header h2 span {
    color: #ff6a1a;
}

.pricing-header p {
    color: rgba(255,255,255,0.65);
    font-size: 18px;
    margin-bottom: 60px;
}

/* Card */
.pricing-card {
    max-width: 900px;
    margin: 0 auto 70px;
    padding: 50px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,110,26,0.05), rgba(255,110,26,0.02));
    border: 1px solid rgba(255,110,26,0.25);
    text-align: left;
}

/* Badge */
.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,110,26,0.15);
    border: 1px solid rgba(255,110,26,0.35);
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 35px;
}

.pricing-badge .icon {
    color: #ff6a1a;
    font-size: 17px;
}

/* Price */
.pricing-price {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.pricing-price .amount {
    color: #fff;
}

.pricing-price .ht {
    font-size: 18px;
    opacity: 0.75;
    margin-left: 5px;
}

.pricing-sub {
    color: rgba(255,255,255,0.65);
    margin-bottom: 35px;
}

/* Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.pricing-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 17px;
}

.pricing-features li::before {
    content: "✔";
    color: #ff6a1a;
    position: absolute;
    left: 0;
    top: 0;
}

/* Note */
.pricing-note {
    padding: 18px 22px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 15px;
    margin-bottom: 35px;
}

/* CTA */
.pricing-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: #ff6a1a;
    color: white;
    padding: 18px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 18px;
    transition: 0.25s;
}

.pricing-cta:hover {
    background: #ff7a2a;
}

.cta-icon {
    margin-right: 8px;
}

/* Small line */
.pricing-small {
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* Bottom Stats */
.pricing-stats {
    display: flex;
    justify-content: center;
    gap: 120px;
}

.pstat .value {
    display: block;
    color: #ff6a1a;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 3px;
}

.pstat .label {
    opacity: 0.7;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-card { padding: 35px; }
    .pricing-stats { flex-direction: column; gap: 30px; }
    .pricing-header h2 { font-size: 40px; }
}

/* ===========================
   Formations Section
=========================== */

.formations-section {
    padding: 120px 0;
    background: #0E0E0E;
    color: white;
    text-align: center;
}

.formations-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.formations-header h2 span {
    color: #FF6A1A;
}

.formations-header p {
    color: rgba(255,255,255,0.75);
    font-size: 18px;
    margin-bottom: 60px;
}

/* Grid */
.formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards */
.formation-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px 22px;
    text-align: left;
    transition: 0.25s;
}

.formation-card:hover {
    border-color: rgba(255,110,26,0.4);
    background: rgba(255,110,26,0.06);
}

.formation-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Price */
.formation-card p {
    font-size: 22px;
    font-weight: 800;
    color: #FF6A1A;
    margin-bottom: 18px;
}

/* CTA */
.formation-cta {
    display: inline-block;
    padding: 12px 22px;
    background: #FF6A1A;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
}

.formation-cta:hover {
    background: #FF7A2A;
}

/* Responsive */
@media (max-width: 600px) {
    .formations-header h2 {
        font-size: 40px;
    }
}

/* ==============================
   Prospection Section
============================== */

.prospection-section {
    padding: 120px 0 140px;
    background: radial-gradient(circle at center,
        #3a221a 0%,
        #1c1c1c 60%,
        #0f0f0f 100%);
    color: white;
    text-align: center;
}

.prospection-inner h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.prospection-inner h2 span {
    color: #FF6A1A;
}

.prospection-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 45px;
}

/* CTA Group */
.prospection-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}

/* CTA Orange */
.cta-primary {
    display: inline-block;
    background: #FF6A1A;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.25s;
    box-shadow: 0 0 20px rgba(255, 110, 26, 0.35);
}

.cta-primary:hover {
    background: #FF7A2A;
}

/* CTA Noir */
.cta-secondary {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 16px 32px;
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.25s;
}

.cta-secondary:hover {
    background: rgba(255,255,255,0.14);
}

/* Avatars */
.prospection-avatars {
    margin-bottom: 20px;
}

.prospection-avatars span {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-left: -10px;
    font-size: 15px;
}

/* Sous-texte */
.prospection-smalltext {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.prospection-smalltext strong {
    color: #FF6A1A;
}

/* Responsive */
@media (max-width: 600px) {
    .prospection-inner h2 {
        font-size: 38px;
    }
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
    .prospection-cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================
   FAQ Section
============================ */

.faq-section {
    padding: 120px 0;
    background: #0e0e0e;
    color: white;
    text-align: center;
}

.faq-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #FF6A1A, #ec3208);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-header p {
    color: rgba(255,255,255,0.75);
    font-size: 18px;
    margin-bottom: 50px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px;
}

/* Item */
.faq-item {
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Question */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

/* Chevron */
.chevron {
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    background: rgba(255,255,255,0.03);
    transition: max-height 0.35s ease;
}

.faq-answer p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    padding: 15px 0;
}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-answer ul {
    padding: 10px 0 15px 0;
    margin: 0;
    list-style: none;
}

.faq-answer ul li {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin: 6px 0;
    position: relative;
    padding-left: 15px;
}

.faq-answer ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

.faq-answer {
    text-align: left !important;
}

/* ---------- FOOTER ---------- */
.cr-footer {
    background: #0f0f0f;
    padding: 80px 0 40px;
    color: #cfcfcf;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-family: "Inter", sans-serif;
}

.cr-footer-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.cr-footer-col h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cr-footer-col h2 span {
    color: #ff6a1a;
}

.cr-footer-col p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
}

.cr-footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cr-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cr-footer-col ul li {
    margin-bottom: 12px;
}

.cr-footer-col ul li a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.cr-footer-col ul li a:hover {
    color: #ff6a1a;
}

/* LinkedIn icon */
.cr-contact i {
    margin-right: 8px;
    color: #ff6a1a;
}

/* Footer bottom */
.cr-footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    font-size: 15px;
    color: #999;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media(max-width: 900px) {
    .cr-footer-inner {
        flex-direction: column;
        gap: 40px;
    }
}


/* ==== FULL MOBILE SAFETY FIX ==== */
@media (max-width: 480px) {

    html, body {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .landing-hero,
    .landing-hero-inner,
    .landing-hero-left,
    .landing-cta-group {
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }

    .landing-hero-right img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
        display: block;
    }

    /* CTA FIX */
    .cta-primary,
    .cta-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center !important;
        white-space: normal !important;
        display: block !important;
        box-sizing: border-box !important;
    }
}


/* ============================
   FIX RESPONSIVE DES STATS
============================ */
@media (max-width: 480px) {

    .landing-stats {
        display: flex;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 25px !important;
        margin-top: 40px;
        width: 100%;
    }

    .landing-stats .stat {
        width: 100% !important;
        text-align: center !important;
    }

    .landing-stats .value {
        font-size: 32px !important;
    }

    .landing-stats .label {
        font-size: 15px !important;
        opacity: 0.8;
    }
}

.a2a_kit.a2a_floating_style {
    display: none !important;
}