.picto-rond {
    display: inline-block;
    clip-path: circle(49% at 50% 50%);
    transition: transform 0.3s ease;
}

.picto-rond:hover {
    transform: scale(1.08);
}
.bannieres-facebook {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.bannieres-facebook a {
    display: block;
    line-height: 0;
}

.banniere-facebook {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: contain;
}

.liens-partenaires {
    margin-top: 35px;
    text-align: center;
}

.logo-centre {
    display: block;
    width: 194px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 35px;
}

.logo-bio-bienetre {
    display: block;
    width: 305px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.lien-bienetre {
    display: block;
    margin-top: 5px;
    font-size: 0.8em;
    text-decoration: none;
    color: #999;
}
/* ==================================================
   PAGE CONTACT LUXO66
   ================================================== */

.contact-luxo66 {
    --luxo-red: #a91f2b;
    --luxo-red-dark: #79141d;
    --luxo-blue: #075bbb;
    --luxo-green: #477a42;
    --luxo-gold: #b88b50;
    --luxo-dark: #25282b;
    --luxo-grey: #646a70;
    --luxo-light: #f7f5f2;
    --luxo-border: #e6e1da;

    max-width: 1180px;
    margin: 0 auto;
    color: var(--luxo-dark);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

.contact-luxo66 *,
.contact-luxo66 *::before,
.contact-luxo66 *::after {
    box-sizing: border-box;
}


/* Introduction */

.contact-intro {
    position: relative;
    overflow: hidden;
    padding: 60px 50px;
    border-radius: 22px;
    text-align: center;
    background:
        radial-gradient(circle at 90% 15%,
        rgba(169, 31, 43, 0.14), transparent 35%),
        linear-gradient(135deg, #ffffff 0%, #f8f3ef 100%);
    border: 1px solid var(--luxo-border);
    box-shadow: 0 14px 40px rgba(30, 30, 30, 0.08);
}

.contact-intro::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -140px;
    width: 320px;
    height: 320px;
    border: 42px solid rgba(169, 31, 43, 0.05);
    border-radius: 50%;
}

.contact-surtitle,
.contact-section-heading > span,
.practical-label {
    display: block;
    margin-bottom: 8px;
    color: var(--luxo-red);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-intro h1 {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--luxo-dark);
}

.contact-intro p {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 7px auto;
    color: var(--luxo-grey);
    font-size: 1.08rem;
}

.contact-actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}


/* Boutons */

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
}

.contact-button-primary {
    color: #fff !important;
    background: linear-gradient(
        135deg,
        var(--luxo-red),
        var(--luxo-red-dark)
    );
    box-shadow: 0 8px 22px rgba(169, 31, 43, 0.24);
}

.contact-button-secondary {
    color: var(--luxo-red) !important;
    background: #fff;
    border: 1px solid rgba(169, 31, 43, 0.35);
}

.contact-button-map {
    margin-top: 22px;
    color: #fff !important;
    background: var(--luxo-dark);
}


/* Sections */

.contact-section {
    margin-top: 75px;
}

.contact-section-heading {
    max-width: 720px;
    margin: 0 auto 35px;
    text-align: center;
}

.contact-section-heading h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    line-height: 1.2;
}

.contact-section-heading p {
    margin: 0;
    color: var(--luxo-grey);
}


/* Cartes tarifs */

.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.tarif-card {
    overflow: hidden;
    padding: 0 28px 24px;
    border: 1px solid var(--luxo-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(20, 20, 20, 0.06);
}

.tarif-card-luxo {
    grid-row: span 2;
}

.tarif-card-header {
    margin: 0 -28px 18px;
    padding: 24px 28px;
    color: #fff;
}

.tarif-card-luxo .tarif-card-header {
    background: linear-gradient(135deg, #bd2734, #7c151e);
}

.tarif-card-bioresonance .tarif-card-header {
    background: linear-gradient(135deg, #0875db, #073a79);
}

.tarif-card-biodecodage .tarif-card-header {
    background: linear-gradient(135deg, #649157, #31522d);
}

.tarif-card-header h3 {
    margin: 0;
    color: #fff;
    font-size: 1.55rem;
}

.tarif-card-header p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
}

.tarif-card h4 {
    margin: 25px 0 8px;
    color: var(--luxo-dark);
    font-size: 1rem;
}

.tarif-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #eeeae5;
}

.tarif-line:last-child {
    border-bottom: 0;
}

.tarif-line span {
    flex: 1;
}

.tarif-line small {
    display: block;
    margin-top: 2px;
    color: #858585;
    font-size: 0.78rem;
}

.tarif-line strong {
    flex: 0 0 auto;
    color: var(--luxo-dark);
    font-size: 1.05rem;
    white-space: nowrap;
}


/* Cartes contact */

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

.contact-info-card {
    padding: 30px 22px;
    border: 1px solid var(--luxo-border);
    border-radius: 18px;
    text-align: center;
    background: #fff;
    box-shadow: 0 10px 26px rgba(20, 20, 20, 0.05);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 15px;
    border-radius: 50%;
    color: #fff;
    background: var(--luxo-red);
    font-size: 1.35rem;
    font-weight: 700;
}

.contact-info-card h3 {
    margin: 0 0 8px;
    font-size: 1.2rem;
}

.contact-info-card a {
    color: var(--luxo-red);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.contact-info-card p {
    margin: 10px 0 0;
    color: var(--luxo-grey);
    font-size: 0.9rem;
}


/* Horaires et adresse */

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

.practical-card {
    padding: 34px;
    border-radius: 19px;
    background: var(--luxo-light);
    border: 1px solid var(--luxo-border);
}

.practical-card h2 {
    margin: 0 0 22px;
    font-size: 1.6rem;
    line-height: 1.25;
}

.schedule-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #ddd7cf;
}

.schedule-line:last-child {
    border-bottom: 0;
}

.schedule-line strong {
    white-space: nowrap;
}

.practical-card address {
    margin: 0;
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* Informations */

.contact-notes {
    margin-top: 28px;
    padding: 28px 34px;
    border-left: 5px solid var(--luxo-gold);
    border-radius: 5px 16px 16px 5px;
    background: #faf8f4;
}

.contact-notes h2 {
    margin: 0 0 12px;
    font-size: 1.3rem;
}

.contact-notes ul {
    margin: 0;
    padding-left: 20px;
}

.contact-notes li + li {
    margin-top: 6px;
}


/* Appel final */

.contact-final {
    margin-top: 55px;
    padding: 38px 25px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            rgba(37, 40, 43, 0.97),
            rgba(69, 72, 75, 0.95)
        );
}

.contact-final p {
    margin: 0 0 20px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}


/* Responsive */

@media (max-width: 850px) {

    .contact-intro {
        padding: 45px 24px;
    }

    .tarifs-grid,
    .contact-practical {
        grid-template-columns: 1fr;
    }

    .tarif-card-luxo {
        grid-row: auto;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {

    .contact-luxo66 {
        line-height: 1.55;
    }

    .contact-intro {
        border-radius: 15px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
    }

    .contact-section {
        margin-top: 55px;
    }

    .tarif-card {
        padding-right: 20px;
        padding-left: 20px;
    }

    .tarif-card-header {
        margin-right: -20px;
        margin-left: -20px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .tarif-line {
        gap: 10px;
    }

    .contact-practical {
        gap: 16px;
    }

    .practical-card {
        padding: 26px 21px;
    }

    .schedule-line {
        flex-direction: column;
        gap: 1px;
    }

    .contact-notes {
        padding: 24px 21px;
    }
}

/* ==========================================================
   PAGE À PROPOS LUXO66
   VERSION COMPACTE POUR COLONNE CENTRALE JOOMLA
   ========================================================== */

.apropos-compact {
    --ap-red: #aa1f2c;
    --ap-red-dark: #76131d;
    --ap-blue: #096ac8;
    --ap-green: #4f7c49;
    --ap-dark: #292b2e;
    --ap-grey: #666b70;
    --ap-light: #f8f5f1;
    --ap-border: #e4ded7;
    --ap-gold: #b38b58;

    display: block;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
    color: var(--ap-dark);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow: hidden;
}

.apropos-compact *,
.apropos-compact *::before,
.apropos-compact *::after {
    box-sizing: border-box;
}

.apropos-compact img {
    display: block;
    max-width: 100%;
    height: auto;
}

.apropos-compact h1,
.apropos-compact h2,
.apropos-compact h3,
.apropos-compact p {
    overflow-wrap: normal;
    word-break: normal;
}

.apropos-compact a {
    overflow-wrap: anywhere;
}


/* ==========================================================
   TITRES ET ÉLÉMENTS COMMUNS
   ========================================================== */

.ap-eyebrow,
.ap-section-title > span,
.ap-final > span {
    display: block;
    margin: 0 0 8px;
    color: var(--ap-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.ap-section {
    width: 100%;
    margin-top: 55px;
}

.ap-section-title {
    max-width: 610px;
    margin: 0 auto 25px;
    text-align: center;
}

.ap-section-title h2,
.ap-values-intro h2,
.ap-deontology h2,
.ap-warning h2,
.ap-address h2 {
    margin: 0 0 10px;
    color: var(--ap-dark);
    font-size: 1.75rem;
    line-height: 1.2;
}

.ap-section-title p,
.ap-values-intro p {
    margin: 0;
    color: var(--ap-grey);
}


/* ==========================================================
   BOUTONS
   ========================================================== */

.ap-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ap-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 17px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.ap-button:hover {
    transform: translateY(-2px);
}

.ap-button-red {
    color: #ffffff !important;
    background: linear-gradient(
        135deg,
        var(--ap-red),
        var(--ap-red-dark)
    );
    box-shadow: 0 7px 18px rgba(170, 31, 44, 0.22);
}

.ap-button-light {
    color: var(--ap-red) !important;
    background: #ffffff;
    border-color: rgba(170, 31, 44, 0.35);
}

.ap-button-white {
    color: var(--ap-dark) !important;
    background: #ffffff;
}

.ap-button-transparent {
    color: #ffffff !important;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
}


/* ==========================================================
   HERO
   ========================================================== */

.ap-hero {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 25px;
    align-items: center;
    width: 100%;
    padding: 25px;
    border: 1px solid var(--ap-border);
    border-radius: 17px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(170, 31, 44, 0.09),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #ffffff,
            #faf6f2
        );
    box-shadow: 0 9px 28px rgba(25, 25, 25, 0.07);
}

.ap-photo-column {
    width: 100%;
    text-align: center;
}

.ap-photo-frame {
    position: relative;
    width: 175px;
    margin: 0 auto;
    padding: 7px;
    border-radius: 48% 48% 42% 42%;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(30, 30, 30, 0.13);
}

.ap-photo-frame::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(170, 31, 44, 0.25);
    border-radius: inherit;
    pointer-events: none;
}

.ap-photo-frame img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: inherit;
    object-fit: cover;
    object-position: center top;
}

.ap-photo-caption {
    position: relative;
    z-index: 2;
    width: 170px;
    margin: -15px auto 0;
    padding: 9px 8px;
    border-radius: 9px;
    color: #ffffff;
    background: var(--ap-dark);
    box-shadow: 0 7px 18px rgba(20, 20, 20, 0.18);
}

.ap-photo-caption strong,
.ap-photo-caption span {
    display: block;
}

.ap-photo-caption strong {
    font-size: 0.77rem;
    line-height: 1.35;
}

.ap-photo-caption span {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.66rem;
}

.ap-hero-text {
    min-width: 0;
}

.ap-hero-text h1 {
    margin: 0 0 13px;
    color: var(--ap-dark);
    font-size: 2rem;
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.ap-hero-text p {
    margin: 0;
    color: var(--ap-grey);
    font-size: 0.91rem;
}

.ap-hero-text p + p {
    margin-top: 10px;
}

.ap-hero-text .ap-lead {
    color: var(--ap-dark);
    font-size: 0.96rem;
    font-weight: 600;
}


/* ==========================================================
   PARCOURS
   ========================================================== */

.ap-parcours {
    display: grid;
    grid-template-columns: 155px minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

.ap-year {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 220px;
    padding: 22px 15px;
    border-radius: 15px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(
        145deg,
        var(--ap-red),
        var(--ap-red-dark)
    );
}

.ap-year small {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ap-year strong {
    display: block;
    margin: 3px 0 8px;
    font-size: 2.55rem;
    line-height: 1;
}

.ap-year span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.75rem;
    line-height: 1.4;
}

.ap-text-card {
    padding: 24px;
    border: 1px solid var(--ap-border);
    border-radius: 15px;
    background: #ffffff;
}

.ap-text-card p {
    margin: 0;
    color: var(--ap-grey);
    font-size: 0.91rem;
}

.ap-text-card p + p {
    margin-top: 12px;
}


/* ==========================================================
   PRATIQUES
   ========================================================== */

.ap-practices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.ap-practice {
    position: relative;
    overflow: hidden;
    padding: 22px 23px;
    border: 1px solid var(--ap-border);
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 7px 22px rgba(20, 20, 20, 0.05);
}

.ap-practice::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
}

.ap-practice-red::before {
    background: var(--ap-red);
}

.ap-practice-blue::before {
    background: var(--ap-blue);
}

.ap-practice-green::before {
    background: var(--ap-green);
}

.ap-practice-header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 9px;
}

.ap-practice-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--ap-dark);
    font-size: 0.75rem;
    font-weight: 700;
}

.ap-practice-red .ap-practice-number {
    background: var(--ap-red);
}

.ap-practice-blue .ap-practice-number {
    background: var(--ap-blue);
}

.ap-practice-green .ap-practice-number {
    background: var(--ap-green);
}

.ap-practice h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
}

.ap-practice p {
    margin: 0;
    color: var(--ap-grey);
    font-size: 0.89rem;
}

.ap-practice p + p {
    margin-top: 8px;
}

.ap-practice .ap-muted {
    font-size: 0.82rem;
}

.ap-practice a {
    display: inline-block;
    margin-top: 12px;
    color: var(--ap-dark);
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
}

.ap-practice a:hover {
    color: var(--ap-red);
}


/* ==========================================================
   VALEURS
   ========================================================== */

.ap-values {
    padding: 28px;
    border-radius: 17px;
    background: var(--ap-light);
}

.ap-values-intro {
    margin-bottom: 22px;
}

.ap-values-list {
    border-top: 1px solid #dcd5cd;
}

.ap-values-list article {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #dcd5cd;
}

.ap-values-list article > span {
    color: var(--ap-red);
    font-size: 0.73rem;
    font-weight: 700;
}

.ap-values-list h3 {
    margin: 0 0 3px;
    font-size: 1rem;
}

.ap-values-list p {
    margin: 0;
    color: var(--ap-grey);
    font-size: 0.85rem;
}


/* ==========================================================
   DÉONTOLOGIE
   ========================================================== */

.ap-deontology {
    display: grid;
    grid-template-columns: 85px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 27px;
    border: 1px solid rgba(79, 124, 73, 0.25);
    border-radius: 17px;
    background: linear-gradient(
        135deg,
        rgba(79, 124, 73, 0.09),
        #ffffff
    );
}

.ap-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: auto;
    border-radius: 50%;
    color: #ffffff;
    background: var(--ap-green);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(79, 124, 73, 0.22);
}

.ap-deontology p {
    margin: 0;
    color: var(--ap-grey);
    font-size: 0.89rem;
}

.ap-deontology p + p {
    margin-top: 9px;
}

.ap-inline-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--ap-green);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}


/* ==========================================================
   ENCADRÉ DE PRUDENCE
   ========================================================== */

.ap-warning {
    padding: 26px 27px;
    border-left: 5px solid var(--ap-gold);
    border-radius: 5px 15px 15px 5px;
    background: #faf8f4;
}

.ap-warning p {
    margin: 0;
    color: var(--ap-grey);
    font-size: 0.89rem;
}

.ap-warning p + p {
    margin-top: 9px;
}


/* ==========================================================
   ENTREPRISE
   ========================================================== */

.ap-company {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 15px;
}

.ap-company-intro,
.ap-company-data {
    padding: 24px;
    border-radius: 15px;
}

.ap-company-intro {
    color: #ffffff;
    background: var(--ap-dark);
}

.ap-company-intro h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.22rem;
}

.ap-company-intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.87rem;
}

.ap-company-intro p + p {
    margin-top: 10px;
}

.ap-company-data {
    border: 1px solid var(--ap-border);
    background: #ffffff;
}

.ap-company-data > div {
    padding: 10px 0;
    border-bottom: 1px solid #ece7e1;
}

.ap-company-data > div:first-child {
    padding-top: 0;
}

.ap-company-data > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.ap-company-data span,
.ap-company-data strong {
    display: block;
}

.ap-company-data span {
    color: var(--ap-grey);
    font-size: 0.72rem;
}

.ap-company-data strong {
    margin-top: 2px;
    font-size: 0.85rem;
    line-height: 1.35;
}


/* ==========================================================
   ADRESSE
   ========================================================== */

.ap-address {
    overflow: hidden;
    padding: 31px;
    border-radius: 17px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(170, 31, 44, 0.55),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #292b2e,
            #43464a
        );
}

.ap-address .ap-eyebrow {
    color: #e9c495;
}

.ap-address h2 {
    color: #ffffff;
}

.ap-address address {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    font-style: normal;
    line-height: 1.7;
}

.ap-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 15px;
}

.ap-contact-links a {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}


/* ==========================================================
   FINAL
   ========================================================== */

.ap-final {
    margin-top: 50px;
    padding: 34px 25px;
    border: 1px solid var(--ap-border);
    border-radius: 17px;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 120%,
            rgba(170, 31, 44, 0.12),
            transparent 45%
        ),
        #ffffff;
}

.ap-final h2 {
    margin: 0 0 10px;
    color: var(--ap-dark);
    font-size: 1.75rem;
    line-height: 1.2;
}

.ap-final p {
    max-width: 520px;
    margin: 0 auto 19px;
    color: var(--ap-grey);
    font-size: 0.9rem;
}


/* ==========================================================
   ÉCRANS INTERMÉDIAIRES
   ========================================================== */

@media (max-width: 1050px) {

    .apropos-compact {
        max-width: 100%;
    }

    .ap-hero {
        grid-template-columns: 165px minmax(0, 1fr);
        gap: 20px;
        padding: 22px;
    }

    .ap-photo-frame {
        width: 155px;
    }

    .ap-photo-caption {
        width: 150px;
    }

    .ap-hero-text h1 {
        font-size: 1.7rem;
    }
}


/* ==========================================================
   TABLETTES ET PETITES COLONNES
   ========================================================== */

@media (max-width: 720px) {

    .ap-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ap-photo-frame {
        width: 175px;
    }

    .ap-photo-caption {
        width: 170px;
    }

    .ap-hero-text h1 {
        font-size: 1.85rem;
    }

    .ap-buttons {
        justify-content: center;
    }

    .ap-parcours,
    .ap-company {
        grid-template-columns: 1fr;
    }

    .ap-year {
        min-height: auto;
    }

    .ap-deontology {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ap-inline-link {
        text-align: center;
    }

    .ap-address {
        text-align: center;
    }

    .ap-contact-links {
        justify-content: center;
    }
}


/* ==========================================================
   TÉLÉPHONES
   ========================================================== */

@media (max-width: 480px) {

    .apropos-compact {
        font-size: 15px;
    }

    .ap-section {
        margin-top: 42px;
    }

    .ap-hero {
        padding: 20px 16px;
        border-radius: 13px;
    }

    .ap-photo-frame {
        width: 155px;
    }

    .ap-photo-caption {
        width: 150px;
    }

    .ap-hero-text h1 {
        font-size: 1.55rem;
    }

    .ap-section-title h2,
    .ap-values-intro h2,
    .ap-deontology h2,
    .ap-warning h2,
    .ap-address h2,
    .ap-final h2 {
        font-size: 1.45rem;
    }

    .ap-buttons {
        flex-direction: column;
    }

    .ap-button {
        width: 100%;
    }

    .ap-text-card,
    .ap-practice,
    .ap-company-intro,
    .ap-company-data {
        padding: 20px 18px;
    }

    .ap-values,
    .ap-deontology,
    .ap-warning,
    .ap-address {
        padding: 23px 18px;
    }

    .ap-final {
        padding: 29px 18px;
    }
}

/* =========================================================
   PAGE LUXOPUNCTURE – LUXO66
   Même mise en page que la page existante
   Seule l’image est placée au-dessus du bloc principal
   ========================================================= */

.luxo-page,
.luxo-page * {
  box-sizing: border-box;
}

.luxo-page {
  --luxo-red-dark: #791827;
  --luxo-red: #a92137;
  --luxo-red-light: #c94a5e;
  --luxo-pink: #f8e8eb;
  --luxo-pink-soft: #fff7f7;
  --luxo-white: #ffffff;
  --luxo-text: #1f2937;
  --luxo-muted: #62666d;
  --luxo-border: #ead4d8;
  --luxo-shadow: 0 18px 45px rgba(121, 24, 39, 0.11);

  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  color: var(--luxo-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  background: var(--luxo-white);
  border: 1px solid var(--luxo-border);
  border-radius: 24px;
}

.luxo-page h1,
.luxo-page h2,
.luxo-page h3,
.luxo-page p {
  column-count: 1 !important;
  column-width: auto !important;
  columns: auto !important;
}

.luxo-page h1,
.luxo-page h2,
.luxo-page h3 {
  margin-top: 0;
  color: var(--luxo-text);
  line-height: 1.2;
}

.luxo-page h1 {
  margin-bottom: 17px;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -1.2px;
}

.luxo-page h2 {
  margin-bottom: 16px;
  font-size: clamp(29px, 4vw, 42px);
  font-weight: 800;
}

.luxo-page h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
}

.luxo-page p {
  margin: 0 0 18px;
}

.luxo-page a {
  color: var(--luxo-red);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

/* IMAGE PLEINE LARGEUR */

.luxo-cover {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--luxo-pink-soft);
}

.luxo-cover img {
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* HERO */

.luxo-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: 45px;
  width: 100%;
  padding: 58px 6.5% 65px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 74, 94, 0.14), transparent 28%),
    linear-gradient(135deg, #fffdfc 0%, #fff7f7 55%, #f8e8eb 100%);
}

.luxo-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(169, 33, 55, 0.10);
  border-radius: 50%;
}

.luxo-hero-content,
.luxo-hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.luxo-eyebrow,
.luxo-section-heading > span,
.luxo-practical-label,
.luxo-contact > span {
  display: block;
  margin-bottom: 11px;
  color: var(--luxo-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.luxo-lead {
  max-width: 820px;
  margin-bottom: 13px !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

.luxo-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.luxo-button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 23px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
}

.luxo-button:hover,
.luxo-button:focus {
  transform: translateY(-2px);
}

.luxo-button-primary {
  color: var(--luxo-white) !important;
  background: linear-gradient(135deg, var(--luxo-red-light), var(--luxo-red-dark));
  box-shadow: 0 10px 24px rgba(121, 24, 39, 0.24);
}

.luxo-button-secondary {
  color: var(--luxo-red-dark) !important;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(169, 33, 55, 0.34);
}

.luxo-button-white {
  color: var(--luxo-red-dark) !important;
  background: var(--luxo-white);
}

/* VISUEL CIRCULAIRE */

.luxo-hero-visual {
  display: flex;
  justify-content: center;
}

.luxo-visual-circle {
  position: relative;
  width: 230px;
  height: 230px;
  border: 2px solid rgba(201, 74, 94, 0.32);
  border-radius: 50%;
}

.luxo-visual-circle::before,
.luxo-visual-circle::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 74, 94, 0.24);
  border-radius: 50%;
}

.luxo-visual-circle::before {
  inset: 24px;
}

.luxo-visual-circle::after {
  inset: 47px;
}

.luxo-visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  width: 148px;
  height: 82px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--luxo-white);
  text-align: center;
  background: linear-gradient(135deg, var(--luxo-red-light), var(--luxo-red-dark));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 26px rgba(121, 24, 39, 0.25);
}

.luxo-visual-center strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.luxo-visual-center span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.luxo-light-point {
  position: absolute;
  z-index: 4;
  width: 14px;
  height: 14px;
  background: var(--luxo-white);
  border: 3px solid #efb2bc;
  border-radius: 50%;
}

.luxo-light-point-one {
  top: 12px;
  left: 106px;
}

.luxo-light-point-two {
  top: 101px;
  right: 5px;
}

.luxo-light-point-three {
  bottom: 20px;
  left: 55px;
}

/* SECTIONS */

.luxo-section {
  width: 100%;
  padding: 72px 6.5%;
}

.luxo-section:nth-of-type(even) {
  background: var(--luxo-pink-soft);
}

.luxo-section-heading {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.luxo-section-heading h2,
.luxo-section-heading p {
  text-align: center;
}

.luxo-section-heading p {
  color: var(--luxo-muted);
  font-size: 18px;
}

/* MÉTHODE */

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

.luxo-method-card {
  position: relative;
  min-width: 0;
  padding: 31px 26px;
  background: var(--luxo-white);
  border: 1px solid var(--luxo-border);
  border-radius: 20px;
  box-shadow: var(--luxo-shadow);
}

.luxo-method-number {
  display: block;
  margin-bottom: 18px;
  color: var(--luxo-red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.luxo-method-card p {
  margin-bottom: 0;
  color: var(--luxo-muted);
}

/* ORIENTATIONS */

.luxo-orientations {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

.luxo-orientation {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 23px;
  padding: 27px 29px;
  align-items: flex-start;
  background: var(--luxo-white);
  border: 1px solid var(--luxo-border);
  border-radius: 19px;
  box-shadow: 0 10px 28px rgba(121, 24, 39, 0.08);
}

.luxo-orientation-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  color: var(--luxo-white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--luxo-red-light), var(--luxo-red-dark));
  border-radius: 50%;
}

.luxo-orientation-content p {
  color: var(--luxo-muted);
}

.luxo-orientation-content a {
  font-weight: 800;
  text-decoration: none;
}

/* SÉANCE */

.luxo-session {
  background:
    radial-gradient(circle at top right, rgba(201, 74, 94, 0.11), transparent 30%),
    linear-gradient(135deg, #fffdfc, var(--luxo-pink-soft)) !important;
}

.luxo-session-intro {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.luxo-session-intro h2,
.luxo-session-intro p {
  text-align: center;
}

.luxo-session-intro p {
  color: var(--luxo-muted);
  font-size: 18px;
}

.luxo-steps {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.luxo-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 21px;
  padding: 24px 27px;
  background: var(--luxo-white);
  border: 1px solid var(--luxo-border);
  border-radius: 18px;
}

.luxo-step > span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--luxo-white);
  font-size: 18px;
  font-weight: 800;
  background: var(--luxo-red);
  border-radius: 50%;
}

.luxo-step p {
  margin-bottom: 0;
  color: var(--luxo-muted);
}

/* INFORMATIONS PRATIQUES */

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

.luxo-practical-card {
  padding: 38px 34px;
  background: var(--luxo-white);
  border: 1px solid var(--luxo-border);
  border-radius: 22px;
  box-shadow: var(--luxo-shadow);
}

.luxo-practical-dark {
  color: var(--luxo-white);
  background: linear-gradient(135deg, var(--luxo-red), var(--luxo-red-dark));
  border-color: transparent;
}

.luxo-practical-dark h2,
.luxo-practical-dark p,
.luxo-practical-dark .luxo-practical-label {
  color: var(--luxo-white);
}

/* PRUDENCE */

.luxo-information {
  max-width: none;
  background: #fff8e8 !important;
  border-top: 1px solid #ead8ad;
  border-bottom: 1px solid #ead8ad;
}

.luxo-information h2 {
  color: #725316;
}

.luxo-information p {
  max-width: 1020px;
  color: #5d523b;
}

/* CONTACT */

.luxo-contact {
  color: var(--luxo-white);
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, var(--luxo-red-dark), var(--luxo-red-light)) !important;
}

.luxo-contact h2,
.luxo-contact p,
.luxo-contact > span {
  color: var(--luxo-white);
  text-align: center;
}

.luxo-contact > p {
  max-width: 760px;
  margin: 0 auto 22px;
}

.luxo-contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  justify-content: center;
  margin: 24px 0;
}

.luxo-contact-details a {
  color: var(--luxo-white);
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}

.luxo-buttons-center {
  justify-content: center;
}

/* TABLETTES */

@media screen and (max-width: 900px) {

  .luxo-page {
    border-radius: 0;
  }

  .luxo-hero {
    grid-template-columns: 1fr;
  }

  .luxo-hero-visual {
    display: none;
  }

  .luxo-method {
    grid-template-columns: 1fr;
  }

  .luxo-practical-grid {
    grid-template-columns: 1fr;
  }

}

/* TÉLÉPHONES */

@media screen and (max-width: 600px) {

  .luxo-page {
    font-size: 16px;
  }

  .luxo-hero,
  .luxo-section {
    padding: 46px 20px;
  }

  .luxo-page h1 {
    font-size: 37px;
  }

  .luxo-page h2 {
    font-size: 29px;
  }

  .luxo-lead {
    font-size: 17px;
  }

  .luxo-buttons {
    display: block;
  }

  .luxo-button {
    display: flex;
    width: 100%;
    margin-bottom: 11px;
  }

  .luxo-button:last-child {
    margin-bottom: 0;
  }

  .luxo-orientation {
    grid-template-columns: 1fr;
    padding: 24px 21px;
  }

  .luxo-orientation-icon {
    width: 54px;
    height: 54px;
  }

  .luxo-step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 15px;
    padding: 21px 18px;
  }

  .luxo-step > span {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .luxo-practical-card {
    padding: 29px 23px;
  }

  .luxo-contact-details {
    flex-direction: column;
    gap: 9px;
  }

}


/* =========================================================
   PAGE BIODÉCODAGE LUXO66 — CSS COMPLET
   ========================================================= */

.bio66-page {
    --bio66-green-dark: #315f4b;
    --bio66-green: #4f8169;
    --bio66-green-light: #8eaf9d;
    --bio66-green-pale: #edf5f0;
    --bio66-cream: #fbf9f4;
    --bio66-gold: #b38b4d;
    --bio66-text: #303a35;
    --bio66-muted: #68736d;
    --bio66-white: #ffffff;
    --bio66-border: rgba(49, 95, 75, 0.15);
    --bio66-shadow: 0 14px 40px rgba(38, 73, 57, 0.10);

    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 12px 40px;
    color: var(--bio66-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    box-sizing: border-box;
}

.bio66-page *,
.bio66-page *::before,
.bio66-page *::after {
    box-sizing: border-box;
}

.bio66-page h1,
.bio66-page h2,
.bio66-page h3,
.bio66-page p {
    margin-top: 0;
}

.bio66-page h1,
.bio66-page h2,
.bio66-page h3 {
    color: var(--bio66-green-dark);
    line-height: 1.2;
}

.bio66-page p {
    margin-bottom: 17px;
}

.bio66-page img {
    max-width: 100%;
}

.bio66-page a {
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

/* BOUTONS */

.bio66-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;
}

.bio66-button:hover {
    transform: translateY(-2px);
}

.bio66-button-primary {
    color: var(--bio66-white) !important;
    background: var(--bio66-green-dark);
    box-shadow: 0 10px 24px rgba(49, 95, 75, 0.23);
}

.bio66-button-primary:hover {
    color: var(--bio66-white) !important;
    background: #274d3d;
}

.bio66-button-secondary {
    color: var(--bio66-green-dark) !important;
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(49, 95, 75, 0.32);
}

.bio66-button-secondary:hover {
    color: var(--bio66-green-dark) !important;
    background: var(--bio66-white);
    border-color: var(--bio66-green);
}

/* EN-TÊTE */

.bio66-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(210px, 0.6fr);
    gap: 35px;
    align-items: center;
    min-height: 410px;
    padding: 55px;
    overflow: hidden;
    border: 1px solid var(--bio66-border);
    border-radius: 26px;
    background:
        radial-gradient(circle at 88% 15%, rgba(179, 139, 77, 0.16), transparent 27%),
        linear-gradient(135deg, #f9f6ee 0%, #edf5f0 52%, #dcebe2 100%);
    box-shadow: var(--bio66-shadow);
}

.bio66-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(79, 129, 105, 0.18);
    border-radius: 50%;
}

.bio66-hero::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -140px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(79, 129, 105, 0.16);
    border-radius: 50%;
}

.bio66-hero-content,
.bio66-hero-symbol {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.bio66-eyebrow,
.bio66-small-title {
    display: block;
    margin-bottom: 10px;
    color: var(--bio66-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 1.4;
    text-transform: uppercase;
}

.bio66-hero h1 {
    margin-bottom: 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 500;
    letter-spacing: -1.5px;
}

.bio66-subtitle {
    margin-bottom: 20px !important;
    color: var(--bio66-green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2.8vw, 29px);
    font-style: italic;
    line-height: 1.35;
}

.bio66-introduction {
    max-width: 650px;
    margin-bottom: 27px !important;
    font-size: 17px;
}

.bio66-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bio66-hero-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio66-symbol-circle {
    display: flex;
    width: 210px;
    height: 210px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(49, 95, 75, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    box-shadow:
        0 18px 45px rgba(49, 95, 75, 0.12),
        inset 0 0 0 11px rgba(255, 255, 255, 0.36);
    color: var(--bio66-green);
    text-align: center;
}

.bio66-symbol-circle strong {
    margin-bottom: 3px;
    color: var(--bio66-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 500;
}

.bio66-symbol-circle span:not(.bio66-symbol-leaf) {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.bio66-symbol-leaf {
    margin-bottom: 6px;
    color: var(--bio66-gold);
    font-family: Georgia, serif;
    font-size: 40px;
    line-height: 1;
}

/* CITATION */

.bio66-opening {
    max-width: 820px;
    margin: 30px auto 0;
    padding: 20px 25px;
    text-align: center;
}

.bio66-opening p {
    margin: 0;
    color: var(--bio66-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 3vw, 27px);
    font-style: italic;
}

/* TITRES */

.bio66-section {
    padding: 72px 15px 10px;
}

.bio66-section-heading {
    max-width: 760px;
    margin: 0 auto 35px;
    text-align: center;
}

.bio66-section-heading h2 {
    margin-bottom: 13px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(29px, 4vw, 42px);
    font-weight: 500;
}

.bio66-title-line {
    width: 62px;
    height: 3px;
    margin: 0 auto;
    border-radius: 5px;
    background: linear-gradient(90deg, var(--bio66-green), var(--bio66-gold));
}

/* TEXTE PERSONNEL */

.bio66-welcome {
    padding: 70px 15px 5px;
}

.bio66-welcome-card {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    padding: 45px 52px;
    overflow: hidden;
    border: 1px solid var(--bio66-border);
    border-radius: 25px;
    background: var(--bio66-white);
    box-shadow: var(--bio66-shadow);
    font-size: 17px;
}

.bio66-welcome-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--bio66-green-dark),
        var(--bio66-green-light),
        var(--bio66-gold)
    );
}

.bio66-welcome-intro {
    margin-bottom: 27px;
    padding-bottom: 23px;
    border-bottom: 1px solid var(--bio66-border);
}

.bio66-welcome-intro p {
    margin: 0;
    color: var(--bio66-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 3vw, 29px);
    font-style: italic;
    line-height: 1.5;
}

.bio66-highlight {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin: 30px 0;
    padding: 27px 28px;
    border-radius: 18px;
    background: var(--bio66-green-pale);
}

.bio66-highlight-light {
    border: 1px solid rgba(179, 139, 77, 0.16);
    background: var(--bio66-cream);
}

.bio66-highlight-icon {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bio66-green-dark);
    color: var(--bio66-white);
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1;
}

.bio66-highlight-light .bio66-highlight-icon {
    background: var(--bio66-gold);
}

.bio66-highlight h3 {
    margin-bottom: 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
}

.bio66-highlight p {
    margin: 0;
}

.bio66-conviction {
    margin-top: 35px;
    padding-top: 28px;
    border-top: 1px solid var(--bio66-border);
    text-align: center;
}

.bio66-conviction > p:first-child {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    color: var(--bio66-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.65;
}

.bio66-thanks {
    margin: 20px 0 24px !important;
    color: var(--bio66-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-style: italic;
}

.bio66-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bio66-signature strong {
    color: var(--bio66-green-dark);
    font-size: 17px;
    letter-spacing: 0.5px;
}

.bio66-signature span {
    color: var(--bio66-muted);
    font-size: 14px;
}

/* MÉTHODE */

.bio66-method-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 28px;
    align-items: stretch;
}

.bio66-method-text,
.bio66-method-quote {
    padding: 35px;
    border-radius: 21px;
}

.bio66-method-text {
    border: 1px solid var(--bio66-border);
    background: var(--bio66-white);
    box-shadow: 0 10px 35px rgba(49, 95, 75, 0.07);
}

.bio66-method-text p:last-child {
    margin-bottom: 0;
}

.bio66-method-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(145deg, var(--bio66-green-dark), var(--bio66-green));
    color: var(--bio66-white);
}

.bio66-method-quote span {
    height: 46px;
    color: rgba(255, 255, 255, 0.48);
    font-family: Georgia, serif;
    font-size: 70px;
    line-height: 1;
}

.bio66-method-quote p {
    margin: 0;
    color: var(--bio66-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-style: italic;
    line-height: 1.6;
}

/* CARTES */

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

.bio66-card {
    position: relative;
    min-height: 285px;
    padding: 31px 27px;
    overflow: hidden;
    border: 1px solid var(--bio66-border);
    border-radius: 20px;
    background: var(--bio66-white);
    box-shadow: 0 10px 30px rgba(49, 95, 75, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bio66-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 17px 40px rgba(49, 95, 75, 0.12);
}

.bio66-card-number {
    position: absolute;
    top: 15px;
    right: 18px;
    color: rgba(49, 95, 75, 0.09);
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.bio66-card-icon {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--bio66-green-pale);
    color: var(--bio66-green-dark);
    font-size: 25px;
}

.bio66-card h3 {
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 500;
}

.bio66-card p {
    margin: 0;
    color: var(--bio66-muted);
}

/* RAISONS */

.bio66-reasons {
    margin-top: 55px;
    padding: 62px 38px;
    border-radius: 25px;
    background: var(--bio66-green-pale);
}

.bio66-reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 22px;
}

.bio66-reason {
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 17px 19px;
    border: 1px solid rgba(49, 95, 75, 0.10);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.70);
}

.bio66-reason span {
    display: flex;
    width: 31px;
    height: 31px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bio66-green-dark);
    color: var(--bio66-white);
    font-size: 15px;
    font-weight: 800;
}

.bio66-reason p {
    margin: 0;
    font-size: 15px;
}

/* DÉROULEMENT */

.bio66-timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.bio66-timeline::before {
    content: "";
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 27px;
    width: 2px;
    background: var(--bio66-border);
}

.bio66-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 21px;
    margin-bottom: 20px;
    padding: 25px 28px 25px 0;
    border-radius: 18px;
    background: var(--bio66-white);
    box-shadow: 0 9px 28px rgba(49, 95, 75, 0.06);
}

.bio66-timeline-item:last-child {
    margin-bottom: 0;
}

.bio66-timeline-number {
    position: relative;
    z-index: 2;
    display: flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--bio66-white);
    border-radius: 50%;
    background: var(--bio66-green-dark);
    color: var(--bio66-white);
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 7px 18px rgba(49, 95, 75, 0.20);
}

.bio66-timeline-item h3 {
    margin: 3px 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
}

.bio66-timeline-item p {
    margin: 0;
    color: var(--bio66-muted);
}

/* ACCOMPAGNATEUR */

.bio66-practitioner {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
    margin-top: 65px;
    padding: 42px;
    border: 1px solid var(--bio66-border);
    border-radius: 24px;
    background: var(--bio66-cream);
    box-shadow: 0 14px 38px rgba(49, 95, 75, 0.08);
}

.bio66-practitioner-photo {
    width: 100%;
    max-width: 250px;
}

.bio66-practitioner-photo img {
    display: block;
    width: 100%;
    height: 375px;
    margin: 0;
    border-radius: 18px;
    object-fit: cover;
    object-position: center top;
    background: #f7f5ef;
    box-shadow: 0 12px 30px rgba(49, 95, 75, 0.16);
}

.bio66-practitioner-content {
    min-width: 0;
    max-width: 560px;
}

.bio66-practitioner-content .bio66-small-title {
    margin-bottom: 10px;
}

.bio66-practitioner-content h2 {
    margin: 0 0 8px;
    color: var(--bio66-green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.4px;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.bio66-practitioner-role {
    margin: 0 0 24px !important;
    color: var(--bio66-gold);
    font-size: 16px;
    font-weight: 700;
}

.bio66-practitioner-content p {
    max-width: 520px;
    margin-bottom: 16px;
    color: var(--bio66-text);
    font-size: 16px;
    line-height: 1.65;
}

.bio66-text-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--bio66-green-dark) !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
}

.bio66-text-link:hover {
    color: var(--bio66-gold) !important;
    transform: translateX(4px);
}

/* INFORMATIONS PRATIQUES */

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

.bio66-practical-card {
    min-width: 0;
    padding: 29px 22px;
    border: 1px solid var(--bio66-border);
    border-radius: 19px;
    background: var(--bio66-white);
    text-align: center;
    box-shadow: 0 9px 28px rgba(49, 95, 75, 0.06);
}

.bio66-practical-icon {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--bio66-green-pale);
    color: var(--bio66-green-dark);
    font-size: 24px;
}

.bio66-practical-card h3 {
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
}

.bio66-practical-card p {
    margin-bottom: 12px;
    color: var(--bio66-muted);
    font-size: 15px;
}

.bio66-practical-card a {
    color: var(--bio66-green-dark) !important;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
}

.bio66-practical-card a:hover {
    color: var(--bio66-gold) !important;
}

.bio66-email {
    display: inline-block;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
}

/* INFORMATION IMPORTANTE */

.bio66-information {
    display: grid;
    grid-template-columns: 51px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    margin: 65px 15px 0;
    padding: 27px 30px;
    border: 1px solid rgba(179, 139, 77, 0.22);
    border-radius: 18px;
    background: #fbf7ee;
}

.bio66-information-icon {
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bio66-gold);
    color: var(--bio66-white);
    font-family: Georgia, serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
}

.bio66-information h2 {
    margin-bottom: 8px;
    font-size: 20px;
}

.bio66-information p {
    margin: 0;
    color: #685e4b;
    font-size: 14px;
}

/* APPEL À L'ACTION */

.bio66-contact {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) auto;
    gap: 30px;
    align-items: center;
    margin-top: 65px;
    padding: 44px 45px;
    overflow: hidden;
    border-radius: 25px;
    background:
        radial-gradient(circle at 92% 5%, rgba(255, 255, 255, 0.14), transparent 25%),
        linear-gradient(135deg, var(--bio66-green-dark), #487960);
    box-shadow: 0 18px 45px rgba(49, 95, 75, 0.22);
}

.bio66-contact-small {
    display: block;
    margin-bottom: 7px;
    color: #d8c298;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.bio66-contact h2 {
    margin-bottom: 10px;
    color: var(--bio66-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 4vw, 39px);
    font-weight: 500;
}

.bio66-contact p {
    margin: 0;
    color: rgba(255, 255, 255, 0.83);
}

.bio66-contact-actions {
    display: flex;
    min-width: 210px;
    flex-direction: column;
    gap: 10px;
}

.bio66-button-white {
    color: var(--bio66-green-dark) !important;
    background: var(--bio66-white);
}

.bio66-button-white:hover {
    color: var(--bio66-green-dark) !important;
    background: #f4f7f5;
}

.bio66-button-outline-white {
    color: var(--bio66-white) !important;
    border-color: rgba(255, 255, 255, 0.56);
    background: transparent;
}

.bio66-button-outline-white:hover {
    color: var(--bio66-green-dark) !important;
    background: var(--bio66-white);
}

/* PIED DE PAGE */

.bio66-footer {
    padding: 33px 15px 5px;
    color: var(--bio66-muted);
    font-size: 13px;
    text-align: center;
}

.bio66-footer p {
    margin-bottom: 3px;
}

.bio66-footer strong {
    color: var(--bio66-green-dark);
}

.bio66-footer a {
    display: inline-block;
    margin-top: 5px;
    color: var(--bio66-green-dark) !important;
    font-weight: 700;
    text-decoration: none !important;
}

/* TABLETTES */

@media screen and (max-width: 900px) {

    .bio66-hero {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
        padding: 45px 38px;
    }

    .bio66-hero-symbol {
        display: none;
    }

    .bio66-method-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .bio66-practitioner {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 30px;
        padding: 32px;
    }

    .bio66-practitioner-photo {
        max-width: 220px;
    }

    .bio66-practitioner-photo img {
        height: 330px;
    }

    .bio66-practitioner-content h2 {
        font-size: 36px;
    }

    .bio66-contact {
        grid-template-columns: minmax(0, 1fr);
    }

    .bio66-contact-actions {
        width: 100%;
        max-width: 340px;
        min-width: 0;
        flex-direction: row;
    }

    .bio66-contact-actions .bio66-button {
        flex: 1;
    }
}

/* TÉLÉPHONES */

@media screen and (max-width: 640px) {

    .bio66-page {
        padding-right: 5px;
        padding-left: 5px;
    }

    .bio66-hero {
        padding: 37px 22px;
        border-radius: 19px;
    }

    .bio66-hero h1 {
        font-size: 39px;
    }

    .bio66-subtitle {
        font-size: 21px;
    }

    .bio66-introduction {
        font-size: 15px;
    }

    .bio66-hero-buttons {
        flex-direction: column;
    }

    .bio66-hero-buttons .bio66-button {
        width: 100%;
    }

    .bio66-opening {
        padding-right: 12px;
        padding-left: 12px;
    }

    .bio66-section,
    .bio66-welcome {
        padding-top: 55px;
        padding-right: 5px;
        padding-left: 5px;
    }

    .bio66-section-heading {
        margin-bottom: 27px;
    }

    .bio66-section-heading h2 {
        font-size: 29px;
    }

    .bio66-welcome-card {
        padding: 32px 21px 32px 27px;
        border-radius: 18px;
        font-size: 15px;
    }

    .bio66-welcome-intro p {
        font-size: 21px;
    }

    .bio66-highlight {
        grid-template-columns: minmax(0, 1fr);
        padding: 23px 20px;
    }

    .bio66-highlight-icon {
        width: 43px;
        height: 43px;
        font-size: 24px;
    }

    .bio66-highlight h3 {
        font-size: 19px;
    }

    .bio66-conviction > p:first-child {
        font-size: 18px;
    }

    .bio66-method-text,
    .bio66-method-quote {
        padding: 27px 22px;
    }

    .bio66-method-quote p {
        font-size: 18px;
    }

    .bio66-cards,
    .bio66-reasons-grid,
    .bio66-practical-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .bio66-card {
        min-height: 0;
    }

    .bio66-reasons {
        margin-top: 45px;
        padding: 45px 17px;
        border-radius: 20px;
    }

    .bio66-timeline::before {
        left: 23px;
    }

    .bio66-timeline-item {
        grid-template-columns: 47px minmax(0, 1fr);
        gap: 15px;
        padding: 20px 16px 20px 0;
    }

    .bio66-timeline-number {
        width: 47px;
        height: 47px;
        border-width: 4px;
    }

    .bio66-practitioner {
        display: block;
        margin-top: 50px;
        padding: 25px 20px;
        text-align: center;
    }

    .bio66-practitioner-photo {
        width: 100%;
        max-width: 240px;
        margin: 0 auto 28px;
    }

    .bio66-practitioner-photo img {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 3;
        object-fit: cover;
    }

    .bio66-practitioner-content {
        max-width: none;
    }

    .bio66-practitioner-content h2 {
        font-size: 31px;
        line-height: 1.15;
    }

    .bio66-practitioner-content p {
        max-width: none;
        font-size: 15px;
        text-align: left;
    }

    .bio66-practitioner-role {
        text-align: center !important;
    }

    .bio66-information {
        grid-template-columns: minmax(0, 1fr);
        margin-right: 5px;
        margin-left: 5px;
        padding: 24px 21px;
    }

    .bio66-contact {
        margin-top: 50px;
        padding: 34px 23px;
        border-radius: 20px;
    }

    .bio66-contact-actions {
        max-width: none;
        flex-direction: column;
    }
}

/* TRÈS PETITS ÉCRANS */

@media screen and (max-width: 380px) {

    .bio66-hero h1 {
        font-size: 34px;
    }

    .bio66-button {
        padding-right: 16px;
        padding-left: 16px;
        font-size: 14px;
    }

    .bio66-section-heading h2 {
        font-size: 26px;
    }

    .bio66-practitioner-content h2 {
        font-size: 28px;
    }

    .bio66-email {
        font-size: 14px;
    }
}
/* =========================================================
   CORRECTION FINALE — BLOC ACCOMPAGNATEUR SUR ORDINATEUR
   À COLLER TOUT EN BAS DU FICHIER CSS
   ========================================================= */

.bio66-practitioner {
    display: grid;
    grid-template-columns: 185px minmax(0, 1fr);
    gap: 28px;
    align-items: start;

    margin-top: 55px;
    padding: 32px;

    border: 1px solid rgba(49, 95, 75, 0.15);
    border-radius: 22px;
    background: #fbf9f4;
    box-shadow: 0 12px 32px rgba(49, 95, 75, 0.08);
}

.bio66-practitioner-photo {
    width: 185px;
    max-width: 185px;
    margin-top: 42px;
}

.bio66-practitioner-photo img {
    display: block;
    width: 185px;
    height: 278px;
    margin: 0;

    border-radius: 16px;
    object-fit: cover;
    object-position: center top;

    box-shadow: 0 10px 25px rgba(49, 95, 75, 0.14);
}

.bio66-practitioner-content {
    width: 100%;
    min-width: 0;
    max-width: none;
}

.bio66-practitioner-content .bio66-small-title {
    margin: 0 0 8px;
    font-size: 11px;
    letter-spacing: 1.6px;
}

.bio66-practitioner-content h2 {
    margin: 0 0 8px;

    color: #315f4b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.5px;

    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.bio66-practitioner-role {
    margin: 0 0 20px !important;
    color: #b38b4d;
    font-size: 15px;
    font-weight: 700;
}

.bio66-practitioner-content p {
    max-width: none;
    margin-bottom: 13px;

    color: #303a35;
    font-size: 15px;
    line-height: 1.55;
}

.bio66-text-link {
    display: inline-block;
    margin-top: 5px;

    color: #315f4b !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
}

/* AFFICHAGE SUR TÉLÉPHONE */

@media screen and (max-width: 640px) {

    .bio66-practitioner {
        display: block;
        padding: 25px 20px;
        text-align: center;
    }

    .bio66-practitioner-photo {
        width: 210px;
        max-width: 210px;
        margin: 0 auto 25px;
    }

    .bio66-practitioner-photo img {
        width: 210px;
        height: 315px;
    }

    .bio66-practitioner-content h2 {
        font-size: 30px;
        line-height: 1.12;
    }

    .bio66-practitioner-content p {
        font-size: 15px;
        text-align: left;
    }

    .bio66-practitioner-role {
        text-align: center !important;
    }
}

/* =========================================================
   PAGE BIORÉSONANCE – LUXO66
   Toutes les règles sont limitées à .br66-page
   ========================================================= */

.br66-page,
.br66-page * {
  box-sizing: border-box;
}

.br66-page {
  --br66-blue-dark: #082f55;
  --br66-blue: #075f9f;
  --br66-blue-light: #dceefa;
  --br66-blue-soft: #f2f8fc;
  --br66-text: #263746;
  --br66-text-light: #526575;
  --br66-white: #ffffff;
  --br66-border: #d8e6ef;
  --br66-shadow: 0 15px 40px rgba(8, 47, 85, 0.13);

  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  color: var(--br66-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  background: var(--br66-white);
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(8, 47, 85, 0.08);
}

.br66-page h1,
.br66-page h2,
.br66-page h3,
.br66-page p {
  column-count: 1 !important;
  column-width: auto !important;
  columns: auto !important;
}

.br66-page p {
  width: 100%;
  max-width: none;
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
}

.br66-page h1,
.br66-page h2,
.br66-page h3 {
  margin-top: 0;
  color: var(--br66-blue-dark);
  font-weight: 700;
  line-height: 1.2;
}

.br66-page h1 {
  margin-bottom: 24px;
  font-size: clamp(34px, 5vw, 60px);
}

.br66-page h2 {
  margin-bottom: 25px;
  font-size: clamp(28px, 4vw, 43px);
}

.br66-page h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.br66-page img {
  max-width: 100%;
  height: auto;
}

.br66-cover {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--br66-blue-dark);
}

.br66-cover img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.br66-section {
  width: 100%;
  padding: 75px 7%;
}

.br66-soft {
  background: linear-gradient(135deg, rgba(242, 248, 252, 0.98), rgba(220, 238, 250, 0.72));
}

.br66-heading {
  width: 100%;
  max-width: 950px;
  margin: 0 auto 42px;
  text-align: center;
}

.br66-heading h2 {
  margin-bottom: 0;
  text-align: center;
}

.br66-eyebrow {
  margin: 0 0 12px !important;
  color: var(--br66-blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.8px;
  text-align: center !important;
  text-transform: uppercase;
}

.br66-intro {
  padding-top: 70px;
  padding-bottom: 75px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(78, 177, 231, 0.17), transparent 38%),
    var(--br66-white);
}

.br66-intro h1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.br66-lead {
  max-width: 880px !important;
  margin: 0 auto 34px !important;
  color: var(--br66-text-light);
  font-size: 21px;
  line-height: 1.75;
  text-align: center !important;
}

.br66-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin-top: 28px;
}

.br66-button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 25px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.br66-button:hover,
.br66-button:focus {
  transform: translateY(-2px);
}

.br66-button-primary {
  color: var(--br66-white) !important;
  background: linear-gradient(135deg, var(--br66-blue), var(--br66-blue-dark));
  box-shadow: 0 10px 25px rgba(7, 95, 159, 0.28);
}

.br66-button-secondary {
  color: var(--br66-blue-dark) !important;
  background: var(--br66-white);
  border-color: var(--br66-blue);
}

.br66-button-light {
  color: var(--br66-blue-dark) !important;
  background: var(--br66-white);
}

.br66-button-outline-light {
  color: var(--br66-white) !important;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.8);
}

.br66-text-full {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.br66-text-full p {
  display: block;
  width: 100%;
  margin: 0 0 24px;
  color: var(--br66-text);
  font-size: 18px;
  line-height: 1.85;
  text-align: left;
}

.br66-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.br66-card {
  position: relative;
  min-width: 0;
  padding: 35px 28px;
  overflow: hidden;
  background: var(--br66-white);
  border: 1px solid var(--br66-border);
  border-radius: 22px;
  box-shadow: var(--br66-shadow);
}

.br66-card-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  margin-bottom: 23px;
  align-items: center;
  justify-content: center;
  color: var(--br66-white);
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--br66-blue), var(--br66-blue-dark));
  border-radius: 50%;
}

.br66-card p {
  margin-bottom: 0;
  color: var(--br66-text-light);
}

.br66-device-section {
  padding-top: 0;
}

.br66-device-visual {
  width: 100%;
  margin-bottom: 55px;
  overflow: hidden;
  background: var(--br66-blue-dark);
  border-radius: 22px;
  box-shadow: var(--br66-shadow);
}

.br66-device-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.br66-device-content {
  width: 100%;
}

.br66-device-note {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  padding: 24px 28px;
  background: var(--br66-blue-soft);
  border-left: 5px solid var(--br66-blue);
  border-radius: 8px 18px 18px 8px;
}

.br66-device-note p {
  margin: 0;
  color: var(--br66-text);
  font-size: 16px;
  line-height: 1.75;
}

.br66-link-wrapper {
  margin: 30px auto 0 !important;
  text-align: center !important;
}

.br66-text-link {
  color: var(--br66-blue) !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.br66-timeline {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.br66-timeline li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  width: 100%;
  margin-bottom: 20px;
  padding: 25px 28px;
  align-items: flex-start;
  background: var(--br66-white);
  border: 1px solid var(--br66-border);
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(8, 47, 85, 0.07);
}

.br66-timeline li:last-child {
  margin-bottom: 0;
}

.br66-timeline-number {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--br66-white);
  font-size: 20px;
  font-weight: 700;
  background: var(--br66-blue);
  border-radius: 50%;
}

.br66-timeline h3 {
  margin-bottom: 8px;
}

.br66-timeline p {
  margin-bottom: 0;
  color: var(--br66-text-light);
}

.br66-video-section {
  background: var(--br66-white);
}

.br66-video-list {
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.br66-video-card {
  width: 100%;
  margin: 0 0 45px;
  padding: 28px;
  background: var(--br66-white);
  border: 1px solid var(--br66-border);
  border-radius: 22px;
  box-shadow: var(--br66-shadow);
}

.br66-video-card:last-child {
  margin-bottom: 0;
}

.br66-video-card h3 {
  margin-bottom: 20px;
  text-align: center;
}

.br66-video-card h3 span {
  font-size: 0.8em;
  font-weight: 500;
}

.br66-video-player {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  border-radius: 16px;
}

.br66-video-player video {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  margin: 0;
  background: #000;
  border: 0;
}

.br66-benefits {
  background: linear-gradient(135deg, rgba(8, 47, 85, 0.97), rgba(7, 95, 159, 0.93));
}

.br66-benefits .br66-heading h2,
.br66-benefits .br66-eyebrow {
  color: var(--br66-white);
}

.br66-benefit-list {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.br66-benefit-list > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 15px;
  padding: 22px 25px;
  align-items: center;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
}

.br66-benefit-list > div:last-child {
  margin-bottom: 0;
}

.br66-benefit-list span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--br66-blue-dark);
  font-weight: 700;
  background: var(--br66-white);
  border-radius: 50%;
}

.br66-benefit-list p {
  margin: 0;
  color: var(--br66-white);
  font-size: 18px;
}

/* SECTION PRATICIEN : photo centrée puis texte pleine largeur */

.br66-practitioner-section {
  display: block !important;
  width: 100% !important;
  padding: 70px 4% !important;
  background: var(--br66-blue-soft) !important;
}

.br66-practitioner-card {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 45px 50px 50px !important;
  background: #fff !important;
  border: 1px solid var(--br66-border) !important;
  border-radius: 25px !important;
  box-shadow: var(--br66-shadow) !important;
}

.br66-practitioner-header {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 38px !important;
  padding: 0 !important;
  text-align: center !important;
}

.br66-practitioner-header .br66-eyebrow,
.br66-practitioner-header h2,
.br66-practitioner-header .br66-role {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  text-align: center !important;
}

.br66-practitioner-header h2 {
  margin: 0 0 12px !important;
}

.br66-firstname {
  color: var(--br66-blue) !important;
}

.br66-role {
  margin: 0 !important;
  color: var(--br66-text-light) !important;
  font-size: 19px !important;
  font-weight: 700 !important;
}

.br66-practitioner-photo {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 330px !important;
  margin: 0 auto 38px !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: var(--br66-blue-soft) !important;
  border-radius: 22px !important;
  box-shadow: 0 10px 30px rgba(8, 47, 85, 0.16) !important;
}

.br66-practitioner-photo img {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.br66-practitioner-copy {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.br66-practitioner-copy p {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  margin: 0 0 22px !important;
  padding: 0 !important;
  color: var(--br66-text) !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
  text-align: left !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  column-count: 1 !important;
  column-width: auto !important;
  columns: auto !important;
}

.br66-practitioner-copy p:last-child {
  margin-bottom: 0 !important;
}

.br66-disclaimer {
  width: auto;
  margin: 65px 7%;
  padding: 32px 35px;
  background: #fff8e8;
  border: 1px solid #ecd9a8;
  border-left: 6px solid #c89018;
  border-radius: 10px 20px 20px 10px;
}

.br66-disclaimer h2 {
  margin-bottom: 15px;
  color: #6f5113;
  font-size: 27px;
}

.br66-disclaimer p {
  margin-bottom: 0;
  color: #574c34;
  font-size: 16px;
  line-height: 1.75;
}

.br66-cta {
  width: 100%;
  padding: 75px 7%;
  color: var(--br66-white);
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(68, 177, 230, 0.48), transparent 40%),
    linear-gradient(135deg, var(--br66-blue-dark), var(--br66-blue));
}

.br66-cta .br66-eyebrow,
.br66-cta h2,
.br66-cta p {
  color: var(--br66-white);
  text-align: center !important;
}

.br66-cta h2 {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.br66-cta > p:not(.br66-eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: 19px;
}

@media (max-width: 900px) {
  .br66-page {
    border-radius: 0;
  }

  .br66-section {
    padding: 60px 6%;
  }

  .br66-cards {
    grid-template-columns: 1fr;
  }

  .br66-practitioner-section {
    padding: 55px 24px !important;
  }

  .br66-practitioner-card {
    padding: 38px 32px 42px !important;
  }

  .br66-practitioner-photo {
    max-width: 320px !important;
  }

  .br66-practitioner-copy p {
    font-size: 17px !important;
  }
}

@media (max-width: 600px) {
  .br66-page {
    font-size: 16px;
    line-height: 1.7;
  }

  .br66-section {
    padding: 48px 20px;
  }

  .br66-intro {
    padding: 48px 20px 55px;
  }

  .br66-page h1 {
    font-size: 34px;
  }

  .br66-page h2 {
    font-size: 29px;
  }

  .br66-page h3 {
    font-size: 21px;
  }

  .br66-lead {
    font-size: 18px;
    line-height: 1.7;
  }

  .br66-text-full p,
  .br66-practitioner-copy p {
    font-size: 16px !important;
    line-height: 1.75 !important;
    text-align: left !important;
  }

  .br66-actions {
    display: block;
  }

  .br66-button {
    display: flex;
    width: 100%;
    margin-bottom: 13px;
  }

  .br66-button:last-child {
    margin-bottom: 0;
  }

  .br66-card {
    padding: 28px 23px;
  }

  .br66-device-visual {
    margin-bottom: 40px;
    border-radius: 15px;
  }

  .br66-device-note {
    padding: 21px;
  }

  .br66-timeline li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    padding: 21px 18px;
  }

  .br66-timeline-number {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .br66-video-card {
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 16px;
  }

  .br66-video-player {
    border-radius: 10px;
  }

  .br66-benefit-list > div {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 18px;
  }

  .br66-benefit-list p {
    font-size: 16px;
  }

  .br66-practitioner-section {
    padding: 45px 16px !important;
  }

  .br66-practitioner-card {
    padding: 30px 20px 35px !important;
    border-radius: 18px !important;
  }

  .br66-practitioner-header h2 {
    font-size: 29px !important;
    line-height: 1.15 !important;
  }

  .br66-role {
    font-size: 17px !important;
  }

  .br66-practitioner-photo {
    max-width: 280px !important;
    margin-bottom: 30px !important;
  }

  .br66-disclaimer {
    margin: 45px 20px;
    padding: 25px 22px;
  }

  .br66-disclaimer h2 {
    font-size: 24px;
  }

  .br66-cta {
    padding: 58px 20px;
  }

  .br66-cta > p:not(.br66-eyebrow) {
    font-size: 17px;
  }
}

/* =========================================================
   MENTIONS LÉGALES – LUXO66
   Mise en page horizontale
   ========================================================= */

.ml66-page,.ml66-page *{box-sizing:border-box}.ml66-page{--ml66-navy:#07365f;--ml66-blue:#0870b5;--ml66-soft:#eef7fc;--ml66-border:#d6e6f0;--ml66-text:#283d4d;--ml66-muted:#566b7b;--ml66-white:#fff;--ml66-shadow:0 14px 38px rgba(7,54,95,.10);width:100%;max-width:1120px;margin:0 auto;color:var(--ml66-text);font-family:Arial,Helvetica,sans-serif;font-size:17px;line-height:1.75;background:var(--ml66-soft);overflow:hidden}.ml66-page h1,.ml66-page h2,.ml66-page p,.ml66-page address{column-count:1!important;column-width:auto!important;columns:auto!important}.ml66-page h1,.ml66-page h2{margin-top:0;color:var(--ml66-navy);line-height:1.18}.ml66-page h1{margin-bottom:22px;font-size:clamp(36px,5vw,58px);text-align:center}.ml66-page h2{margin-bottom:0;font-size:clamp(27px,3.5vw,38px)}.ml66-page p{width:100%;max-width:none;margin:0 0 20px;padding:0;text-align:left}.ml66-page a{color:var(--ml66-blue);overflow-wrap:anywhere;text-underline-offset:4px}.ml66-page address{margin:0 0 22px;color:var(--ml66-text);font-style:normal}.ml66-hero{width:100%;padding:75px 8%;text-align:center;background:radial-gradient(circle at top left,rgba(74,174,228,.18),transparent 38%),var(--ml66-white)}.ml66-kicker,.ml66-label{margin:0 0 10px!important;color:var(--ml66-blue)!important;font-size:14px;font-weight:700;letter-spacing:1.6px;text-transform:uppercase}.ml66-kicker{text-align:center!important}.ml66-intro{max-width:850px!important;margin:0 auto!important;color:var(--ml66-muted);font-size:20px;line-height:1.8;text-align:center!important}.ml66-content{width:100%;padding:55px 6%}.ml66-card{width:100%;max-width:940px;margin:0 auto 28px;padding:34px 38px;background:var(--ml66-white);border:1px solid var(--ml66-border);border-radius:20px;box-shadow:var(--ml66-shadow)}.ml66-card:last-child{margin-bottom:0}.ml66-card-head{display:flex;width:100%;margin-bottom:28px;align-items:flex-start;gap:20px}.ml66-number{display:inline-flex;flex:0 0 54px;width:54px;height:54px;align-items:center;justify-content:center;color:var(--ml66-white);font-size:15px;font-weight:700;background:linear-gradient(135deg,var(--ml66-blue),var(--ml66-navy));border-radius:50%;box-shadow:0 8px 18px rgba(7,54,95,.23)}.ml66-card-head>div{min-width:0;padding-top:2px}.ml66-card-head .ml66-label{text-align:left!important}.ml66-details{width:100%;padding:4px 0 0}.ml66-details p{display:block;width:100%;margin:0;padding:16px 0;border-bottom:1px solid var(--ml66-border)}.ml66-details p:first-child{padding-top:0}.ml66-details p:last-child{padding-bottom:0;border-bottom:0}.ml66-details strong{display:block;margin-bottom:3px;color:var(--ml66-navy)}.ml66-details span{display:block;color:var(--ml66-text)}.ml66-prose{width:100%}.ml66-prose p:last-child,.ml66-prose address:last-child{margin-bottom:0}.ml66-warning{background:#fffaf0;border-color:#ead8aa}.ml66-warning .ml66-number{background:linear-gradient(135deg,#c68a1c,#76500f)}.ml66-warning .ml66-label,.ml66-warning h2{color:#805814!important}.ml66-footer{width:100%;padding:70px 8%;color:var(--ml66-white);text-align:center;background:radial-gradient(circle at top right,rgba(73,182,235,.44),transparent 38%),linear-gradient(135deg,var(--ml66-navy),var(--ml66-blue))}.ml66-footer .ml66-kicker,.ml66-footer h2,.ml66-footer p{color:var(--ml66-white)!important;text-align:center!important}.ml66-footer h2{margin-bottom:20px}.ml66-footer>p:not(.ml66-kicker){max-width:720px;margin-right:auto;margin-left:auto;font-size:18px}.ml66-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;width:100%;margin-top:28px}.ml66-btn{display:inline-flex;min-height:50px;padding:12px 24px;align-items:center;justify-content:center;border:2px solid transparent;border-radius:999px;font-size:16px;font-weight:700;text-align:center;text-decoration:none!important}.ml66-btn-light{color:var(--ml66-navy)!important;background:var(--ml66-white)}.ml66-btn-outline{color:var(--ml66-white)!important;background:transparent;border-color:rgba(255,255,255,.82)}@media screen and (max-width:700px){.ml66-hero{padding:52px 22px}.ml66-content{padding:35px 16px}.ml66-card{margin-bottom:20px;padding:27px 22px;border-radius:17px}.ml66-card-head{gap:15px;margin-bottom:24px}.ml66-number{flex-basis:48px;width:48px;height:48px;font-size:14px}.ml66-page h1{font-size:36px}.ml66-page h2{font-size:27px}.ml66-intro{font-size:17px;line-height:1.7}.ml66-page{font-size:16px}.ml66-footer{padding:55px 20px}}@media screen and (max-width:440px){.ml66-card-head{display:block}.ml66-number{margin-bottom:17px}.ml66-actions{display:block}.ml66-btn{display:flex;width:100%;margin-bottom:12px}.ml66-btn:last-child{margin-bottom:0}}

.luxo-page {
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
}

.luxo-bloc {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 24px 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.luxo-bloc h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 18px;
    font-weight: 600;
}

.luxo-bloc ul {
    margin: 0;
    padding-left: 24px;
}

.luxo-bloc li {
    margin-bottom: 10px;
}

.luxo-lien {
    display: inline-block;
    padding: 11px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    background: #7b2d2d;
    color: #ffffff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.luxo-lien:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: #ffffff;
}

@media (max-width: 768px) {
    .luxo-page {
        font-size: 17px;
    }

    .luxo-bloc {
        padding: 20px;
    }

    .luxo-bloc h2 {
        font-size: 21px;
    }
}

.luxo-rythme {
    text-align: center;
}

.luxo-seances {
    font-size: 19px;
    margin: 12px 0;
}

.luxo-puis {
    font-size: 16px;
    font-style: italic;
    margin: 8px 0;
    opacity: 0.7;
}

.ressource-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.luxo-bloc h3 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.ressources-intro {
    text-align: center;
    margin-bottom: 35px;
}

.ressources-intro h2 {
    margin-bottom: 10px;
}

.ressources-grille {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 35px;
    flex-wrap: wrap;
}

.ressource-carte {
    width: 330px;
    max-width: 100%;
    padding: 25px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ressource-carte:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.ressource-visuel {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.ressource-carte:hover .ressource-visuel {
    transform: scale(1.03);
}

.ressource-carte h3 {
    font-size: 22px;
    margin: 10px 0 20px;
}

@media (max-width: 700px) {
    .ressources-grille {
        gap: 25px;
    }

    .ressource-carte {
        width: 100%;
    }
}
