:root {
    --blanc: #fff;
    --noir: #0f1f42;
	--orange: #FF8C42;
	--vert: #1FC187;
	--rouge: #FF5C5C;
	--violet: #673de6;
    --primary: #3A7BD5;
    --primary-hover: #0687e7;
    --indigo: #4a40dc;
    --gris-clair: #edf3fb;
    --texte: #21314f;
    --texte-light: #5f6f8f;
    --border-soft: rgba(33, 64, 132, 0.1);
    /* Note: l'ombre est utilisée via shadow-soft dans .feature-item et .mockup-chat */
    --shadow-soft: 0 18px 45px rgba(54, 97, 212, 0.12);
}

h1, h2, h3, h4, h5{
  font-family: "Inter", sans-serif;
  color: var(--noir);
}
body {
    margin: 0px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: var(--texte-light);
    background: #f7faff;
}
main.site-main {
    overflow: hidden;
}
/* HEADER */
.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(20, 152, 247, 0.08);
    padding: 15px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(16px);
}
.header-home {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 20px;
}

.logo img {
    height: 70px;
}

.menu {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.menu a {
    text-decoration: none;
    color: var(--texte);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.menu a:hover {
    color: var(--primary);
}

.menu .btn-primary,
.menu .btn-secondary {
    min-height: 48px;
    padding: 0 22px;
}
.header-home .menu a {
    color: var(--texte)
}
.header-home .menu a:hover,
.header-home .menu a.is-active, .menu a.is-active {
    color:var(--primary)
}

/* Actions */


/* Bouton CTA */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
    padding: 0 28px;
    color: #fff !important;
    text-decoration: none;
    border-radius: 99px;
    font-weight: 600;
    min-height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 16px 32px rgba(43, 92, 222, 0.18);
    gap: 10px;
}
.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff !important;
    box-shadow: 0 20px 36px rgba(43, 92, 222, 0.22);
}

.btn-secondary {
    background: var(--blanc);
    border: 2px solid rgba(20, 152, 247, 0.22);
    color: var(--primary);
    text-decoration: none;
    border-radius: 99px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    min-height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    padding: 0 28px;
    box-shadow: 0 12px 28px rgba(43, 92, 222, 0.08);
}
.btn-secondary:hover {
    border-color: var(--primary);
    background: #f5fbff;
    transform: translateY(-1px);
}
.btn-light {
    background: #fff;
    color: var(--primary) !important;
    border-color: rgba(255, 255, 255, 0.18);
}
.btn-light:hover {
    background: #f7fbff;
}



/* ============================
   LAYOUT SYSTEM (mini framework) Même Si t'aimes pas LOL
   ============================ */

/* Container centré */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Row = ligne horizontale */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    row-gap: 20px;
}
.row > [class*="col-"] {
    margin: 0 10px; /* <-- marge entre colonnes */
}


/* Colonne (flex) */
.col {
    flex: 1;
    padding: 0 10px;
    min-width: 0;
}

.col-inner {
    padding: 25px;
}

/* Colonnes recalculées */
.col-1  { flex: 0 0 calc( 8.333% - 25px); }
.col-2  { flex: 0 0 calc(16.666% - 25px); }
.col-3  { flex: 0 0 calc(25%      - 25px); }
.col-4  { flex: 0 0 calc(33.333% - 25px); }
.col-5  { flex: 0 0 calc(41.666% - 25px); }
.col-6  { flex: 0 0 calc(50%      - 25px); }
.col-7  { flex: 0 0 calc(58.333% - 25px); }
.col-8  { flex: 0 0 calc(66.666% - 25px); }
.col-9  { flex: 0 0 calc(75%      - 25px); }
.col-10 { flex: 0 0 calc(83.333% - 25px); }
.col-11 { flex: 0 0 calc(91.666% - 25px); }
.col-12 { flex: 0 0 calc(100%     - 25px); }

.flex {
    display: flex;
}
.align-items-center{
    align-items: center;
}
.align-items-start{
    align-items: flex-start;
}
.icon svg {
    max-height: 20px;
}
/* Responsive (tablette) */
@media (max-width: 900px) {
    .col-md-12 { flex: 0 0 100%; }
}

/* Responsive (mobile) */
@media (max-width: 600px) {
    .row { margin: 0 -5px; }
    .col { padding: 0 5px; }
    .col-sm-12 { flex: 0 0 100%; }
}


/* Responsive */
@media (max-width: 900px) {
    .col-3 {
        flex: 0 0 50%;
    }
    .col-sm-12{
        flex: 0 0 calc(100% - 25px);
    }
}
@media (max-width: 600px) {
    .col-sm-12{
        flex: 0 0 calc(100% - 25px);
    }
}
/* ============================
      UTILITY CLASSES
   ============================ */

/* Spacing */
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 40px; }

.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 40px; }

/* Text */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* Background helpers */
.bg-primary { background: var(--primary); }
.bg-light { background: var(--gris-clair); }


.degrade_beige{
    background:
        radial-gradient(circle at 14% 20%, rgba(144, 225, 255, 0.4) 0%, transparent 22%),
        linear-gradient(135deg, #f7fbff 0%, #eff7ff 52%, #eef0ff 100%);
}
.degrade_vert{
    background:
        radial-gradient(circle at 85% 18%, rgba(159, 213, 255, 0.32) 0%, transparent 24%),
        linear-gradient(135deg, #eefaff 0%, #e9f6ff 45%, #edf0ff 100%);
}
.degrade_violet{
    background:
        radial-gradient(circle at 82% 18%, rgba(132, 178, 255, 0.28) 0%, transparent 24%),
        linear-gradient(135deg, #eff5ff 0%, #e9efff 50%, #edf0ff 100%);
}
.mention {
    font-size: 15px;
    margin-top: 20px;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
}
.mention i {
    color: #8ed8ff;
}

/* TYPO */
h1{
    font-size: clamp(44px, 6vw, 50px);
    margin: 0px;
    font-weight: 600;
    line-height: 1.05;
}
.hero-home {
    margin-top: -81px;
    position: relative;
    background:
        radial-gradient(circle at 14% 18%, rgba(140, 228, 255, 0.38) 0%, transparent 20%),
        radial-gradient(circle at 72% 18%, rgba(156, 170, 255, 0.22) 0%, transparent 26%),
        linear-gradient(115deg, #1498f7 0%, #3569eb 56%, #4b40db 100%);
}
.hero-visual {
    position: relative;
}

.hero-visual .encart_bouton {
    width: 540px;
    background: #fff;
    height: 100px;
    position: absolute;
    bottom: 0;
    border-radius: 15px;
    left: 3%;
	cursor: pointer;
}

.hero-visual .encart_bouton:hover p {
background: var(--vert);	
}
	
.hero-visual .encart_bouton p {
background: var(--primary);
    position: absolute;
    color: #fff;
    width: auto;
    padding: 11px;
    font-size: 26px;
    display: block;
    top: -6px;
    left: 20px;
    border-radius: 7px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}
.accent-line {
    display: block;
    color: #bfe7ff;
}
.hero-home .eyebrow,
.hero-home h1,
.hero-home p {
    color: #fff;
}
.hero-home p {
    max-width: 680px;
    font-size: 22px;
}
.hero-home .btn-primary,
.page-hero .btn-primary,
.header-home .btn-primary {
    background: #fff;
    color: var(--primary) !important;
    border-color: var(--primary)
    box-shadow: 0 14px 30px rgba(12, 65, 184, 0.18);
}
.hero-home .btn-primary:hover,
.page-hero .btn-primary:hover,
.header-home .btn-primary:hover {
    background: #f4fbff;
    color: var(--primary) !important;
}
.hero-home .btn-secondary,
.page-hero .btn-secondary {
    background: linear-gradient(135deg, #8ad5ff 0%, #6cbff3 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 16px 30px rgba(36, 149, 235, 0.22);
}
.hero-home .btn-secondary:hover,
.page-hero .btn-secondary:hover {
    background: linear-gradient(135deg, #7fcdf9 0%, #5fb2ec 100%);
    color: #fff;
    border-color: transparent;
}

.section-1 > .row {
    height: calc(100vh - 80px);
    padding-top: 80px;
}


.btn_video {
    position: absolute;
    right: 11%;
    bottom: 20%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: 0;
    cursor: pointer;
}
.btn_video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid  var(--primary);
    animation: pulse 1.6s infinite 
ease-out;
    z-index: 1;
}

.btn_video:hover {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
}

.btn_video:hover::before {
border: 3px solid  var(--primary);
}



.video-modal-open {
    overflow: hidden;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 21, 48, 0.78);
    backdrop-filter: blur(8px);
}

.video-modal__dialog {
    position: relative;
    width: min(960px, 100%);
    z-index: 1;
}

.video-modal__close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--noir);
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(10, 21, 48, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
	z-index: 99;
}

.video-modal__frame {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(10, 21, 48, 0.3);
}

.video-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}




/* Section Pilom s’adapte à vous */
.section-adapte {
    padding: 40px 0;
}

.section-adapte h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-adapte .subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 18px;
}

/* Feature items */
.section-adapte .features-row {
    margin-top: 40px;
}

.section-adapte .feature-item {
    text-align: center;
    margin-bottom: 40px;
}

.section-adapte .feature-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.section-adapte .feature-image-wrapper img {
    width: 100%;
    display: block;
    height: 170px;
    object-fit: cover;
    border-radius: 22px 22px 0px 0px;
}
.section-adapte .feature-item .box{
    font-size: 14px;
    padding: 0px 15px;
    margin: 15px;
}
/* Titles */
.feature-item h3 {
    font-size: 20px;
    margin-bottom: 0px;
    font-weight: 600;
}
.feature-item{
    box-shadow: var(--shadow-soft);
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.92);
}

.col_titres{
    max-width: 60%;
    margin-bottom: 30px;
}




.section_solution_complete {
    padding: 40px 0;
}



/* IMAGE À DROITE */
.section_solution_complete .img-right {
    display: flex;
    justify-content: start;
}

.section_solution_complete .big-img {
    width: 100%;
    max-width: 80%;
    border-radius: 20px;
}

/* STAT BOXES */
.section_solution_complete .stats-row {
    margin-top: 40px;
}



.section_solution_complete .stat-box h3 {
    font-size: 32px;
    margin-top: 10px;
}

.section_solution_complete .stat-label {
    display: inline-block;
    background: white;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 99px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(20, 152, 247, 0.12);
}

/* CTA BOX (en bas à droite) */
.section_solution_complete .cta-box {
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.section_solution_complete .cta-box img {
    width: 100%;
    border-radius: 20px;
}

.section_solution_complete .cta-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section_solution_complete .cta-content h4 {
    color: white;
    font-size: 20px;
    margin: 0;
}

.section_solution_complete .cta-btn {
    background: white;
    color: #333;
    font-size: 22px;
    padding: 5px 12px;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.2s;
}

.section_solution_complete .cta-btn:hover {
    transform: scale(1.1);
}

.section_solution_complete .col-inner{
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 12px 30px rgba(43, 92, 222, 0.08);
}
.section_solution_complete .image-card {
    background-size: cover;
    background-position: center;
    min-height: 160px;
}

.stats-row h3{
    margin: 10px 0px 0px 0px;
}

.stats-row p {
    margin-top: 5px;
    margin-bottom: 0px;
}
/* RESPONSIVE */
@media (max-width: 900px) {
    .section_solution_complete .img-right {
        justify-content: center;
    }
    .section_solution_complete .big-img {
        max-width: 100%;
        margin-top: 30px;
    }
    .section_solution_complete .cta-btn:hover {
        transform: scale(1);
    }
    .section_solution_complete .col-6:nth-child(3) .col-inner{
        transform: scale(1);
        margin-right: 0px;
    }
	
	


    .video-modal {
        padding: 0;
    }

    .video-modal__dialog {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    .video-modal__frame {
        width: 100%;
        height: 100%;
        padding-top: 0;
        border-radius: 0;
    }

    .video-modal__frame iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .video-modal__close {
        top: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }


	
	
	
	
	
	
}

@media (max-width: 600px) {
    .section_solution_complete .stat-box, .cta-box {
        min-height: auto;
    }
}







.section_explications {
    padding: 40px 0;
}
.section_explications img {
    min-height: 300px;
}

/* Titre */
.section_explications .col_titres {
    max-width: 70%;
    margin-bottom: 40px;
}

.section_explications h2 {
    font-size: 34px;
    font-weight: 700;
}

/* STRUCTURE DES CARTES */
.features-cards {
    margin-top: 40px;
}

.feature-block {
    margin-bottom: 40px;
}

.feature-block h3 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-block .small {
    font-size: 14px;
    color: #777;
}

/* IMAGE + BADGE */
.section_explications .feature-image-wrapper {
    position: relative;
    border-radius: 18px;
    max-width: calc(100% - 25px);
}
.feature-image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
}


/* BADGE FLOTTANT */
.feature-badge {
    position: absolute;
    top: 20px;
    background: rgba(255, 255, 255, 0.94);
    padding: 14px 18px;
    border-radius: 22px;
    font-size: 14px;
    line-height: 1.4;
    max-width: 230px;
    box-shadow: 0 12px 28px rgba(43, 92, 222, 0.14);
    border: 1px solid rgba(20, 152, 247, 0.12);
}

/* Alignements badges */
.feature-badge.left { 
    left: -30px; 
}
.feature-badge.center { 
    left: -20px;
    bottom: -20px; 
    top: auto;
}
.feature-badge.right { 
    right: -20px;
}

/* Responsive */
@media (max-width: 900px) {
    .section_explications .col_titres {
        max-width: 100%;
    }
}




/* SECTION - fond arrondi comme Alan */
.section-benefits {
    padding: 0px 0;
    border-radius: 40px;
    margin-top: 60px;
}
.section-benefits .degrade_violet{
    border-radius: 28px;
    padding: 40px 40px 0px 40px;
    border: 1px solid var(--border-soft);
}

/* TITRE */
.section-benefits h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Texte */
.section-benefits p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section-benefits .highlight {
    font-weight: 700;
    font-size: 18px;
}

.section-benefits .source {
    font-size: 15px;
    color: #666;
}

/* IMAGE + MOCKUP SUPERPOSÉ */
.img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.img-inner img {
    overflow: hidden;
}
.img-inner img {
    width: 100%;
    margin-bottom: -10px;
}
.mockup-chat {
    position: absolute;
    right: 20px;
    bottom: 35px;
    max-width: 260px;
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}
.mockup-chat strong {
    display: block;
    font-size: 22px;
    line-height: 1.2;
    color: var(--noir);
    margin: 12px 0 8px;
}
.mockup-chat p {
    font-size: 15px;
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .img-wrapper {
        margin-top: 40px;
    }
}



.page-hero {
    padding: 110px 0 70px;
}
.page-hero p {
    max-width: 620px;
    font-size: 18px;
}
.page-hero.degrade_violet {
    background:
        radial-gradient(circle at 14% 18%, rgba(140, 228, 255, 0.34) 0%, transparent 20%),
        radial-gradient(circle at 72% 18%, rgba(156, 170, 255, 0.18) 0%, transparent 26%),
        linear-gradient(115deg, #1498f7 0%, #3569eb 56%, #4b40db 100%);
}
.page-hero.degrade_violet .eyebrow,
.page-hero.degrade_violet h1,
.page-hero.degrade_violet p {
    color: #fff;
}
.page-hero.degrade_violet .accent-line {
    color: #bfe7ff;
}
.hero-media {
    position: relative;
}
.hero-media img {
    display: block;
    border-radius: 28px;
    box-shadow: 0 24px 65px rgba(54, 97, 212, 0.18);
}
.floating-note {
    position: absolute;
    right: 20px;
    bottom: 20px;
    max-width: 260px;
    background: #fff;
    padding: 20px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}
.floating-note strong {
    display: block;
    color: var(--noir);
    font-size: 20px;
    margin-bottom: 8px;
}
.floating-note p {
    font-size: 15px;
    margin: 0;
	color: var(--noir)!important;
}
.page-section {
    padding: 40px 0;
}
.section-heading {
    max-width: 720px;
    margin-bottom: 35px;
}
.section-heading h2 {
    font-size: 30px;
    margin: 0 0 12px;
}
.section-heading p {
    margin: 0;
}
.section-heading-light {
    max-width: 760px;
}
.centered-copy {
    margin: 0 auto;
}
.section-panel {
    border-radius: 32px;
    padding: 40px;
    border: 1px solid var(--border-soft);
}
.info-card,
.module-card,
.price-card,
.faq-card,
.mini-card,
.contact-card,
.contact-side-card,
.contact-form,
.process-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    height: calc(100% - 56px);
}
.info-card h3,
.module-card h3,
.price-card h3,
.faq-card h3,
.mini-card h3,
.contact-card h3,
.contact-side-card h2,
.process-card h3 {
    margin: 18px 0 12px;
    font-size: 20px;
}
.icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff8ff 0%, #e5f2ff 100%);
    color: var(--primary);
    font-size: 20px;
    border: 1px solid rgba(20, 152, 247, 0.1);
}
.process-card {
    background: rgba(255, 255, 255, 0.88);
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(20, 152, 247, 0.22);
}
.module-meta,
.contact-meta,
.form-note {
    font-size: 14px;
    color: #72727d;
}
.plan-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #eef8ff 0%, #e3f1ff 100%);
    color: var(--primary);
    border-radius: 99px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 1px solid rgba(20, 152, 247, 0.08);
}
.price-card {
    position: relative;
}
.price-card p {
    margin-bottom: 20px;
}
.price-card .btn-secondary,
.price-card .btn-primary {
    margin-top: 24px;
}
.featured {
    background: linear-gradient(180deg, #1b92f1 0%, #4b40db 100%);
    color: #fff;
    transform: translateY(-10px);
	border:none;
}
.featured h3,
.featured .plan-badge,
.featured .price-line strong,
.featured .price-line span,
.featured p,
.featured li {
    color: #fff;
}
.featured .plan-badge {
    background: rgba(255, 255, 255, 0.18);
}
.price-line {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 10px 0 20px;
}
.price-line strong {
    font-size: 52px;
    line-height: 1;
    color: #000;
}
.price-line span {
    font-weight: 500;
    color: #666;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}
.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 2px;
}
.featured .check-list li::before {
    color: #fff;
}
.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 32px;
    padding: 38px;
    border: 1px solid var(--border-soft);
}
.cta-copy {
    max-width: 650px;
}
.cta-copy h2 {
    margin: 0 0 12px;
    font-size: 30px;
}
.cta-copy p {
    margin: 0;
}
.cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.contact-card a,
.contact-side-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.contact-form {
    height: auto;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.form-field {
    flex: 1 1 240px;
}
.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000;
}
.form-field input,
.form-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(20, 152, 247, 0.16);
    border-radius: 18px;
    padding: 14px 16px;
    font: inherit;
    background: #fff;
    color: var(--texte);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(20, 152, 247, 0.12);
}
.form-field textarea {
    min-height: 160px;
    resize: vertical;
}
.page-not-found {
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.hero-actions-center {
    justify-content: center;
}
.footer {
    background: linear-gradient(135deg, #172754 0%, #263c86 45%, #483fd9 100%);
    color: rgba(255, 255, 255, 0.82);
    padding: 55px 0 28px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.footer-brand {
    max-width: 360px;
}
.footer-brand .logo {
    display: inline-flex;
    margin-bottom: 16px;
}
.footer-brand p {
    margin: 0;
}
.footer-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.footer-nav a {
    color: #fff;
    text-decoration: none;
    opacity: 0.92;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 28px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
	font-size: 14px;
}
.footer-bottom p {
    margin: 0;
}

.only-mobile {
visibility: hidden;
}

@media (max-width: 1100px) {
    .header-container {
        flex-direction: column;
    }

    .menu {
        justify-content: center;
    }
}

@media (max-width: 900px) {
	
.section-benefits {
margin-top: 0px;
padding: 10px;
margin-bottom: 20px;	
}
	
	.section-benefits .degrade_violet {
	padding: 10px;	
	}	
	
.header {
        position: fixed; /* Reste fixé en haut */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000; /* Doit être au-dessus de tout le reste */
        box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Optionnel : petite ombre pour détacher du contenu */
		background:#fff; 
    }

    /* Important : Comme le header est en "fixed", il ne prend plus de place dans le flux. 
       Il faut ajouter une marge au body pour que le contenu ne passe pas dessous. */
    body {
        padding-top: 70px; /* Ajuste selon la hauteur de ton logo/header */
    }	
.no-mobile {
display: none;	
}
.only-mobile {
visibility:visible;
}	
	.footer-bottom {
	gap:5px;	
	}	
	
    .col_titres,
    .section_explications .col_titres,
    .section-heading,
    .cta-copy {
        max-width: 100%;
    }
.page-section {
    padding: 20px 0;
}
    .section-1 > .row {
        height: auto;
        min-height: auto;
        padding: 130px 0 40px;
    }

    .page-hero {
        padding: 90px 0 60px;
    }

    .section-panel,
    .cta-panel {
        padding: 30px;
    }

    .cta-panel,
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .mockup-chat,
    .floating-note {
        position: static;
        margin-top: 20px;
        max-width: none;
    }

    .feature-badge,
    .feature-badge.left,
    .feature-badge.center,
    .feature-badge.right {
        position: static;
        max-width: 100%;
        margin-top: 18px;
    }

    .featured {
        transform: none;
    }

    .video-modal__close {
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    .header {
        padding: 12px 0;
    }

    .header-container {
        padding: 0 16px;
    }

    .menu {
        gap: 12px 16px;
    }

    .section-heading h2,
    .cta-copy h2,
    .section-adapte h2,
    .section-benefits h2,
    .section_explications h2 {
        font-size: 30px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary,
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary,
    .price-card .btn-primary,
    .price-card .btn-secondary,
    .contact-form .btn-primary {
        width: 100%;
    }

    .menu .btn-primary,
    .menu .btn-secondary {
        width: auto;
    }

    .btn_video {
        display: none;
    }

    .footer {
        margin-top: 0px;
    }

    .video-modal {
        padding: 16px;
    }

    .video-modal__frame {
        border-radius: 22px;
    }
}

/* --- MOBILE HEADER (À partir de 900px) --- */

/* Cacher le burger et le bouton fermer par défaut sur desktop */
.burger-menu, .menu-close {
    display: none;
}

   /* Cacher le bouton démo spécifique du menu */
    .menu a.nav-demo-btn {
		background: linear-gradient(135deg, var(--vert) 0%, var(--vert) 100%)!important;
		color:#fff!important;
		border-color:var(--vert)!important;
    }
     .menu a.nav-demo-btn:hover {
		background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%)!important;
		border-color:var(--primary)!important;
		 color:#fff!important;
    }

@media (max-width: 900px) {
    /* Réorganisation du container */
    .header-container {
        flex-direction: row !important; /* Force l'alignement horizontal */
        justify-content: space-between;
        padding: 0 20px;
    }
.hero-media img {
    width: 100%;
}
    /* Logo à droite */
    .logo {
        order: 2;
    }
    .logo img {
        height: 50px; /* Un peu plus petit sur mobile */
    }

    /* Burger à gauche */
    .burger-menu {
        display: flex;
        order: 1;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px 0;
    }

    .burger-menu span {
        display: block;
        width: 28px;
        height: 3px;
        background-color: var(--noir);
        border-radius: 3px;
        transition: 0.3s;
    }

    /* Cacher le bouton démo spécifique du menu */
    .nav-demo-btn {
        display: none !important;
    }

    /* Navigation Mobile (Overlay) */
    .menu {
        position: fixed;
        top: 0;
        left: -100%; /* Caché à gauche */
        width: 100%;
        height: 100vh;
        background: #ffffff; /* Fond blanc demandé */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 999;
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .menu.is-open {
        left: 0;
    }

    .menu a {
        font-size: 24px; /* Plus grand pour le tactile */
        font-weight: 600;
    }

    /* Bouton fermer */
    .menu-close {
        display: block;
        position: absolute;
        top: 25px;
        left: 20px;
        background: none;
        border: none;
        font-size: 30px;
        color: var(--noir);
        cursor: pointer;
    }

    /* Empêcher le scroll quand le menu est ouvert */
    body.menu-open {
        overflow: hidden;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    
    /* Animation d'apparition */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

/* Ajustement pour mobile */
@media (max-width: 600px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
.section-client {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.section-client h2 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--texte-light);
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.logos-slider {
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
    display: flex;
    width: max-content;
    animation: scrollInfinite 35s linear infinite;
}

.logo-item {
    padding: 0 60px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-item img {
    height: 65px; 
    width: auto;
	max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logos-slider:hover .logos-track {
    animation-play-state: paused;
}

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

@media (max-width: 900px) {
    .logo-item img { height: 65px; }
    .logo-item { padding: 0 35px; }
}