/* =========================================================
   CMONRESO — Feuille de style principale
   Palette verrouillée : bleu nuit #152741 + orange #EE7621
   Piliers : bleu / vert / violet / or (saturés)
   ========================================================= */

/* Accessibilité : lien d'évitement (visible au focus clavier) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--bleu-nuit);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none
}

    .skip-link:focus {
        left: 0
    }

:root {
    --espace-anchor-nav: 50px;
    --c-font-family: 'Lora','Inter',sans-serif;
    --bleu-nuit: #152741;
    --orange: #EE7621;
    --orange-d: #c95a14;
    --orange-l: #FFF0E5;
    --creme: #FAF6F0;
    --peche: #FDEADC;
    --peche-bord: #f6cba8;
    /* piliers saturés */
    --p-bleu: #1E84D6;
    --p-bleu-bg: #E0EEF9;
    --p-bleu-tx: #14578D;
    --p-vert: #13B59C;
    --p-vert-bg: #DEF5F1;
    --p-vert-tx: #0D7767;
    --p-violet: #E8467F;
    --p-violet-bg: #FCE5ED;
    --p-violet-tx: #992E54;
    --p-or: #7A4DD1;
    --p-or-bg: #ECE6F9;
    --p-or-tx: #51338A;
    --p-or-d: #5F3CA3;
    --txt: #152741;
    --txt-sec: #54606e;
    --txt-mut: #8a93a0;
    --bord: #ebe6dc;
    /* icônes officielles du C en data-URI (zéro requête réseau) */
    --c-color: url('/img/cmonreso-icone.svg');
    --c-blanc: url('/img/cmonreso-icone-blanc.svg');
    --c-orange: url('/img/cmonreso-icone-orange.svg');
    --c-nuit: url('/img/cmonreso-icone-nuit.svg');
}

* {
    box-sizing: border-box
}

body {
    font-family: 'Inter',system-ui,sans-serif;
    color: var(--txt);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 97px;
}

h1, h2, h3, h4, .font-display {
    font-family: var(--c-font-family);
    font-weight: 700;
    letter-spacing: -.01em
}

a {
    text-decoration: none;
}

.section {
    padding: 88px 0
}

.section-sm {
    padding: 60px 0
}

.eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px
}

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 2px;
        background: var(--orange);
        display: inline-block;
        border-radius: 2px
    }

.lead-sec {
    font-size: clamp(27px,3.5vw,38px);
    font-weight: 700;
    line-height: 1.13;
    color: var(--bleu-nuit)
}

    .lead-sec .hl {
        color: var(--orange)
    }

.txt-sec {
    color: var(--txt-sec)
}

.txt-mut {
    color: var(--txt-mut)
}

.logo-c {
    display: inline-block;
    vertical-align: middle
}

.brand-name {
    font-family: var(--c-font-family);
    font-weight: 700;
    font-size: 22px;
    color: var(--bleu-nuit)
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ---------- NAVBAR ---------- */
.navbar {
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: .3s
}

    .navbar.scrolled {
        box-shadow: 0 4px 24px rgba(238,118,33,.10)
    }

.nav-link {
    color: var(--txt-sec) !important;
    font-size: 14px;
    font-weight: 600;
    margin: 0 4px
}

    .nav-link:hover {
        color: var(--orange) !important
    }

/* logo bannière (navbar) */
.navbar-logo {
    height: 55px;
    width: auto;
    display: block
}
/* ---------- BOUTONS ---------- */

.btn-cmr {
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    padding: 11px 24px;
    transition: .2s;
    border: none
}

.btn-orange {
    background: var(--orange);
    color: #fff
}

    .btn-orange:hover {
        background: var(--orange-d);
        color: #fff;
        transform: translateY(-1px)
    }

    /* CTA orange : garder le fond orange à l'état enfoncé (clic) */
    .btn-orange:active,
    .btn-orange:focus,
    .btn-orange:active:focus,
    .btn-orange.active {
        background: var(--orange-d) !important;
        color: #fff !important;
        border-color: var(--orange-d) !important;
    }

.btn-ghost {
    background: #fff;
    color: var(--bleu-nuit);
    border: 2px solid var(--bleu-nuit)
}

    .btn-ghost:hover {
        background: var(--bleu-nuit);
        color: #fff
    }

/* ---------- PILLS PILIERS ---------- */
.pill {
    font-size: 14px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
    display: inline-block;
    color: #fff;
    transition: .2s
}

a.pill:hover {
    color: #fff;
    opacity: .88;
    transform: translateY(-1px)
}

.pill-bleu {
    background: var(--p-bleu)
}

.pill-vert {
    background: var(--p-vert)
}

.pill-violet {
    background: var(--p-violet)
}

.pill-or {
    background: var(--p-or)
}


/* Compensation navbar sticky pour les ancres (#concept, #tarifs, #faq, #rdv...) */
section[id],
header[id] {
    scroll-margin-top: var(--espace-anchor-nav);
}

/* ---------- HERO ---------- */
.hero {
    background: linear-gradient(160deg,#FDEADC 0%,#FBF3EA 60%,#FAF6F0 100%);
    position: relative;
    overflow: hidden
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1.5px solid var(--peche-bord);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--orange-d);
    padding: 7px 15px;
    border-radius: 20px;
    margin-bottom: 20px
}

.hero h1 {
    font-size: clamp(31px,4.7vw,52px);
    line-height: 1.08;
    color: var(--bleu-nuit);
    font-weight: 700
}

    .hero h1 .u {
        position: relative;
        white-space: nowrap
    }

        .hero h1 .u::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 4px;
            height: 10px;
            background: rgba(238,118,33,.28);
            z-index: -1;
            border-radius: 4px
        }

.hero-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center
}

@keyframes floatA {
    0%,100% {
        transform: rotate(-5deg) translate(0,0)
    }

    33% {
        transform: rotate(4deg) translate(8px,-14px)
    }

    66% {
        transform: rotate(-2deg) translate(-6px,-6px)
    }
}

@keyframes floatB {
    0%,100% {
        transform: rotate(4deg) translate(0,0)
    }

    50% {
        transform: rotate(-5deg) translate(-12px,12px)
    }
}

@keyframes floatC {
    0%,100% {
        transform: rotate(-3deg) translate(0,0)
    }

    40% {
        transform: rotate(6deg) translate(14px,8px)
    }

    70% {
        transform: rotate(-1deg) translate(5px,-10px)
    }
}

@keyframes floatD {
    0%,100% {
        transform: rotate(6deg) translate(0,0)
    }

    50% {
        transform: rotate(-6deg) translate(-10px,-13px)
    }
}

@keyframes floatE {
    0%,100% {
        transform: rotate(-2deg) translate(0,0)
    }

    35% {
        transform: rotate(5deg) translate(11px,10px)
    }

    75% {
        transform: rotate(-4deg) translate(-9px,6px)
    }
}

@keyframes floatF {
    0%,100% {
        transform: rotate(3deg) translate(0,0)
    }

    50% {
        transform: rotate(-5deg) translate(13px,-12px)
    }
}

.chip {
    position: absolute;
    background: #fff;
    border: 1.5px solid var(--peche-bord);
    color: var(--orange-d);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 14px;
    border-radius: 11px;
    box-shadow: 0 8px 22px rgba(21,39,65,.10);
    z-index: 4;
    transform-origin: center;
    will-change: transform
}

    .chip:nth-of-type(1) {
        animation: floatA 5.6s ease-in-out infinite;
        animation-delay: -.3s
    }

    .chip:nth-of-type(2) {
        animation: floatB 6.4s ease-in-out infinite;
        animation-delay: -1.2s
    }

    .chip:nth-of-type(3) {
        animation: floatC 5.1s ease-in-out infinite;
        animation-delay: -.7s
    }

    .chip:nth-of-type(4) {
        animation: floatD 6.8s ease-in-out infinite;
        animation-delay: -1.7s
    }

    .chip:nth-of-type(5) {
        animation: floatE 6.0s ease-in-out infinite;
        animation-delay: -2.4s
    }

    .chip:nth-of-type(6) {
        animation: floatF 5.7s ease-in-out infinite;
        animation-delay: -1.0s
    }

@media (max-width: 991px) {
    .hero-visual .chip {
        display: none;
    }
}

.hero-phone {
    position: relative;
    z-index: 3;
    height: 496px;
    max-height: 74vh;
    width: auto;
    filter: drop-shadow(0 30px 60px rgba(21,39,65,.26));
    pointer-events: none
}

@media(prefers-reduced-motion:reduce) {
    .chip {
        animation: none
    }
}

.reassure i {
    color: var(--p-vert)
}

.reassure span {
    font-size: 13px;
    color: var(--txt-sec);
    font-weight: 500;
    margin-right: 18px;
    white-space: nowrap
}

    .reassure span i {
        margin-right: 3px
    }

/* ---- LOGO C (CSS pur, data-URI) ---- */
.logo-c {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

    .logo-c.v-color {
        background-image: var(--c-color)
    }

    .logo-c.v-blanc {
        background-image: var(--c-blanc)
    }

    .logo-c.v-orange {
        background-image: var(--c-orange)
    }

    .logo-c.v-nuit {
        background-image: var(--c-nuit)
    }
/* filigrane : C officiel en fond, opacité douce */
.watermark-c {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

    .watermark-c.v-orange {
        background-image: var(--c-orange)
    }

    .watermark-c.v-blanc {
        background-image: var(--c-blanc)
    }

    .watermark-c.v-nuit {
        background-image: var(--c-nuit)
    }

    .watermark-c.v-color {
        background-image: var(--c-color)
    }

/* ---------- CARTES GÉNÉRIQUES ---------- */
.card-cmr {
    background: #fff;
    border: 1.5px solid var(--bord);
    border-radius: 20px;
    transition: .2s
}

    .card-cmr:hover {
        border-color: var(--peche-bord);
        box-shadow: 0 14px 34px rgba(238,118,33,.08)
    }

.card-soft {
    border-radius: 20px
}

/* ---------- CONSTAT : nuage de mots (dispersé) ---------- */
.word-cloud {
    position: relative;
    min-height: 240px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    padding: 8px
}

    .word-cloud .wc {
        display: inline-block;
        font-weight: 700;
        line-height: 1;
        color: #7d776c;
        white-space: nowrap;
        transition: color .2s;
        transform-origin: center center;
        will-change: transform
    }

        .word-cloud .wc i {
            font-size: .78em;
            margin-right: 4px
        }

        .word-cloud .wc:hover {
            color: var(--orange);
            animation-play-state: paused
        }

.wc.s1 {
    font-size: 32px
}

.wc.s2 {
    font-size: 24px
}

.wc.s3 {
    font-size: 19px
}

.wc.s4 {
    font-size: 15px
}

.wc.faded {
    opacity: .62
}


/* Constat : flèche horizontale en desktop, verticale (vers le bas) en mobile */
@media (max-width: 991px) {
    .constat-arrow {
        transform: rotate(90deg);
    }
}

/* flottement léger autour du centre — 8 variantes désynchronisées */
@keyframes floatA {
    0%,100% {
        transform: rotate(-4deg) translateY(0)
    }

    50% {
        transform: rotate(3deg) translateY(-4px)
    }
}

@keyframes floatB {
    0%,100% {
        transform: rotate(3deg) translateY(0)
    }

    50% {
        transform: rotate(-3deg) translateY(3px)
    }
}

@keyframes floatC {
    0%,100% {
        transform: rotate(-2deg) translate(0,0)
    }

    50% {
        transform: rotate(5deg) translate(3px,-3px)
    }
}

@keyframes floatD {
    0%,100% {
        transform: rotate(6deg) translate(0,0)
    }

    50% {
        transform: rotate(-2deg) translate(-3px,2px)
    }
}

.wc.f1 {
    animation: floatA 5.5s ease-in-out infinite;
    animation-delay: -.2s
}

.wc.f2 {
    animation: floatB 6.2s ease-in-out infinite;
    animation-delay: -1.1s
}

.wc.f3 {
    animation: floatC 4.8s ease-in-out infinite;
    animation-delay: -.6s
}

.wc.f4 {
    animation: floatD 6.8s ease-in-out infinite;
    animation-delay: -1.6s
}

.wc.f5 {
    animation: floatA 6.5s ease-in-out infinite;
    animation-delay: -2.1s
}

.wc.f6 {
    animation: floatC 5.2s ease-in-out infinite;
    animation-delay: -.9s
}

.wc.f7 {
    animation: floatB 5.8s ease-in-out infinite;
    animation-delay: -1.4s
}

.wc.f8 {
    animation: floatD 4.6s ease-in-out infinite;
    animation-delay: -.4s
}

@media(prefers-reduced-motion:reduce) {
    .wc {
        animation: none !important
    }
}

/* ---------- CONSTAT : panneau dispersé redessiné ---------- */
.dispersed-list {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.dispersed-row {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    border: 1px solid #e2ded4;
    border-radius: 11px;
    padding: 11px 13px
}

    .dispersed-row .di {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        background: #F1EFE8;
        color: #8a8275;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        flex-shrink: 0
    }

    .dispersed-row .dname {
        font-size: 13.5px;
        font-weight: 600;
        color: #5f5e5a
    }

    .dispersed-row .dnote {
        font-size: 11.5px;
        color: #a39c8f
    }

    .dispersed-row .dx {
        margin-left: auto;
        color: #c9c3b6;
        font-size: 16px
    }

/* ---------- PILIERS ---------- */
.pilier-card {
    background: #fff;
    border: 1.5px solid var(--bord);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden
}

    .pilier-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6px
    }

    .pilier-card.p1::before {
        background: var(--p-bleu)
    }

    .pilier-card.p2::before {
        background: var(--p-vert)
    }

    .pilier-card.p3::before {
        background: var(--p-violet)
    }

    .pilier-card.p4::before {
        background: var(--p-or)
    }

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    flex-shrink: 0;
    color: #fff
}

.pnum {
    font-family: var(--c-font-family);
    font-weight: 700;
    font-size: 30px
}

.visual-ph {
    border-radius: 18px;
    height: 240px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center
}

    .visual-ph .veil {
        position: absolute;
        inset: 0;
        opacity: .34
    }

.ui-tag {
    position: absolute;
    bottom: 13px;
    left: 13px;
    background: #fff;
    border-radius: 12px;
    padding: 9px 13px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 8px 20px rgba(21,39,65,.16)
}

.c-badge {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 30px;
    height: 30px;
    z-index: 2
}

.tag-mini {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 14px;
    display: inline-block;
    margin: 2px;
    color: #fff
}

/* ---------- BENTO ---------- */
.bento {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-auto-rows: 152px;
    gap: 16px
}

.bento-cell {
    border-radius: 22px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    transition: .2s;
    position: relative;
    overflow: hidden
}

    .bento-cell:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 38px rgba(21,39,65,.12)
    }
/* case vedette */
.bento-feat {
    background: #fff;
    border: 1.5px solid var(--peche-bord)
}

    .bento-feat > *:not(.feat-wm) {
        position: relative;
        z-index: 1
    }
/* filigrane photo membres : pleine largeur, docké en haut, le bas est rogné
   par overflow:hidden de .bento-cell si l'image dépasse la tuile */
.feat-wm {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: .08;
    background-image: url('../img/membres-wm.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    aspect-ratio: 749/317
}
/* cases secondaires : fond teinté de leur couleur + filet, plus de matière */
.bento-tinted {
    border: 1.5px solid transparent
}

.bento-ic {
    width: 29px;
    height: 29px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    margin-bottom: 9px;
    flex-shrink: 0
}

.bento-title {
    font-weight: 700;
    display: block
}

.bento-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
    /* l'icône ne pousse plus le titre en dessous : on retire sa marge basse */
    .bento-head .bento-ic {
        margin-bottom: 0;
    }

.bento-title-feat {
    font-size: 17px;
    color: var(--bleu-nuit)
}

.bento-tinted .bento-corner {
    position: absolute;
    right: 14px;
    bottom: 12px;
    font-size: 43px;
    opacity: .14;
    line-height: 1
}

.bt-bleu {
    background: var(--p-bleu-bg);
    border-color: #AAD0EF
}

.bt-vert {
    background: var(--p-vert-bg);
    border-color: #A5E3D9
}

.bt-or {
    background: var(--p-or-bg);
    border-color: #CCBBEE
}

.bt-violet {
    background: var(--p-violet-bg);
    border-color: #F6B9CE
}

.bento-title {
    font-weight: 700
}

/* bandeau paiement (dé-bleui : crème + accent orange) */
.pay-band {
    background: var(--creme);
    border: 1.5px solid var(--bord);
    border-left: 5px solid var(--orange);
    border-radius: 16px
}

/* ---------- SHOWCASE (scroll-pinning, desktop) ---------- */
/* hauteur de piste : valeur par défaut (fallback). Le JS l'ajuste selon l'image. */
.showcase-track {
    background: var(--bleu-nuit);
    position: relative;
    height: 200vh
}

.showcase-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 24px 0
}

.eyebrow-light {
    color: #f6a96a
}

    .eyebrow-light::before {
        background: #f6a96a
    }

.showcase-pin .watermark-c {
    position: absolute;
    left: -90px;
    top: -70px;
    width: 320px;
    height: 330px;
    opacity: .05;
    z-index: 0
}

.showcase-frame {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.12);
    position: relative
}

.showcase-viewport {
    height: 60vh;
    max-height: 680px;
    overflow: hidden;
    background: #fff;
    position: relative
}

.showcase-img {
    width: 100%;
    display: block;
    will-change: transform
}

.showcase-progress {
    height: 4px;
    background: rgba(255,255,255,.12)
}

.showcase-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: var(--orange);
    transition: width .08s linear
}

@media(max-width:991px) {
    /* mobile : pas de pinning, section normale, image entière statique */
    .showcase-track {
        height: auto;
        padding: 56px 0
    }

    .showcase-pin {
        position: static;
        height: auto;
        padding: 0
    }

    .showcase-viewport {
        height: auto;
        max-height: none;
        overflow: visible
    }

    .showcase-img {
        transform: none !important
    }

    .showcase-progress {
        display: none
    }
}

/* ---------- POUR QUI (icônes marque uniquement) ---------- */
.target-ic {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    flex-shrink: 0
}

    .target-ic.orange {
        background: var(--orange-l);
        color: var(--orange)
    }

    .target-ic.nuit {
        background: #eef1f5;
        color: var(--bleu-nuit)
    }

/* ---------- ADMIN / MEMBRES ---------- */

/* ---------- CLIENTS ---------- */
.client-logo {
    width: 160px;
    height: 160px;
    background: #fff;
    border: 1.5px solid var(--bord);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #b4b2a9;
    transition: .2s
}

    .client-logo:hover {
        border-color: var(--orange);
        color: var(--orange)
    }

/* ---------- TARIFS ---------- */
.toggle-wrap {
    display: inline-flex;
    background: #fff;
    border: 2px solid var(--bord);
    border-radius: 28px;
    padding: 5px;
    gap: 3px
}

.toggle-btn {
    border: none;
    background: transparent;
    color: var(--txt-sec);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 22px;
    cursor: pointer;
    transition: .2s
}

    .toggle-btn.active {
        background: var(--orange);
        color: #fff
    }

        .toggle-btn.active span {
            color: #fff !important
        }

.price-card {
    background: #fff;
    border: 1.5px solid var(--bord);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column
}

    .price-card.featured {
        border: 2.5px solid var(--orange);
        position: relative;
        box-shadow: 0 8px 22px rgba(238,118,33,.10)
    }

    .price-card.dark {
        background: var(--bleu-nuit);
        border: none
    }

.badge-pop {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 14px;
    white-space: nowrap
}

/* ---------- CALENDLY ---------- */
.calendly-wrap {
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 40px rgba(21,39,65,.10);
    border: 1px solid var(--peche-bord)
}

    .calendly-wrap #calendly-embed, .calendly-wrap .calendly-inline-widget {
        background: #FFF;
    }

    .calendly-wrap iframe {
        border-radius: 0 !important
    }

/* Calendly : hauteur adaptée par taille d'écran */
#calendly-embed {
    min-width: 320px;
    height: 700px;
}

@media (max-width: 991px) {
    #calendly-embed {
        height: 680px; /* tablette */
    }
}

/*@media (max-width: 575px) {
    #calendly-embed {
        height: 1050px;*/ /* mobile : souvent PLUS haut, pas moins */
    /*}
}*/

/* ---------- FAQ ---------- */
.faq-item {
    background: #fff;
    border: 1.5px solid var(--bord);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: .2s
}

    .faq-item:hover {
        border-color: var(--peche-bord)
    }

.faq-q {
    width: 100%;
    border: none;
    background: transparent;
    padding: 19px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--bleu-nuit)
}

    .faq-q i {
        color: var(--orange);
        font-size: 22px;
        transition: .25s
    }

.faq-a {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    font-size: 14.5px;
    color: var(--txt-sec);
    line-height: 1.65
}

.faq-a-inner {
    padding-bottom: 19px
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--bleu-nuit);
    color: #9fb2c9;
    position: relative;
    overflow: hidden
}

    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--orange)
    }

/* ---- Filigrane footer : 80% de la hauteur, dans le cadre, ~50px du bord droit ---- */
.footer {
    min-height: 240px
}

/* logo bannière (footer) */
.footer-logo {
    height: 31px;
    width: auto;
    display: block
}

#wmFoot {
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: auto;
    aspect-ratio: 239 / 247;
    opacity: .07;
}

@media(max-width:767px) {
    #wmFoot {
        height: 60%;
        right: 20px;
        opacity: .05
    }
}

.footer a {
    color: #9fb2c9;
    font-size: 14px;
    transition: .2s
}

    .footer a:hover {
        color: #fff
    }

.footer .foot-h {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px
}
/* boutons sociaux : hover discret (plus de bascule orange plein) */
.soc-btn {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cfdae8;
    font-size: 18px;
    transition: .2s
}

    .soc-btn:hover {
        background: rgba(255,255,255,.16);
        color: #fff
    }

.mini-badge {
    font-size: 11px;
    color: #cfdae8;
    background: rgba(255,255,255,.07);
    padding: 6px 11px;
    border-radius: 14px
}

    .mini-badge i {
        margin-right: 5px;
    }
/* bouton RDV footer : simple, sans ombre brillante */
.footer .btn-rdv-foot {
    background: var(--orange);
    color: #fff;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: .2s
}

    .footer .btn-rdv-foot:hover {
        background: var(--orange-d);
        color: #fff
    }

/* ---------- REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease,transform .7s ease
}

    .reveal.in {
        opacity: 1;
        transform: none
    }

/* ---------- RESPONSIVE ---------- */
@media(max-width:991px) {
    .section {
        padding: 62px 0
    }

    .bento {
        grid-template-columns: repeat(2,1fr);
        grid-auto-rows: auto
    }

    .bento-cell {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 172px
    }

    .hero-visual {
        min-height: 400px;
        margin-top: 30px
    }
}

@media(max-width:575px) {
    .bento {
        grid-template-columns: 1fr
    }
}

/* Bouton retour en haut */


.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(238,118,33,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s, transform .25s, visibility .25s, background .15s;
    z-index: 1000;
}

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

    .back-to-top:hover {
        background: var(--orange-d);
    }

    .back-to-top:focus-visible {
        outline: 2px solid var(--bleu-nuit);
        outline-offset: 2px;
    }

@media (max-width:576px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 16px
    }
}
