/**
 * BrighterMinds RESTART - Block Styles (V3 Swiss Layout)
 * Swiss design: rigid grids, strong hierarchy, structured whitespace
 *
 * @package BrighterMinds
 */

/* ==========================================================================
   Block: Hero — image-first, metadata pills, compact CTA
   ========================================================================== */

.bm-hero {
    position: relative;
    background-color: var(--bm-color-bg);
    overflow: hidden;
}

/* Full-width photo — mobile: full-bleed, no radius */
.bm-hero__visual {
    width: 100%;
    background-color: var(--bm-color-bg-alt);
}

.bm-hero__photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 420px;
}

/* Content below photo on mobile */
.bm-hero__inner {
    max-width: var(--bm-max-width);
    margin: 0 auto;
    padding: var(--bm-space-lg) var(--bm-space-md) var(--bm-space-xl);
}

.bm-hero__content {
    max-width: 640px;
}

/* Category pill */
.bm-hero__badge {
    display: inline-block;
    background-color: var(--bm-color-accent-light);
    color: var(--bm-color-accent);
    padding: 5px 14px;
    border-radius: 100vw;
    font-family: var(--bm-font-body);
    font-size: var(--bm-text-small);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--bm-space-sm);
}

/* Title: short, outcome-focused */
.bm-hero__title {
    font-family: var(--bm-font-heading);
    font-size: var(--bm-text-hero);
    color: var(--bm-color-text);
    margin-bottom: var(--bm-space-xs);
    line-height: var(--bm-lh-hero);
    letter-spacing: -0.02em;
}

/* Subtitle: 1 line, who + credibility */
.bm-hero__subtitle {
    font-size: var(--bm-text-body);
    line-height: var(--bm-line-height);
    color: var(--bm-color-text-secondary);
    margin-bottom: var(--bm-space-md);
}

/* Metadata pills row */
.bm-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--bm-space-lg);
}

.bm-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background-color: var(--bm-color-white);
    border: 1px solid var(--bm-color-border);
    border-radius: 100vw;
    font-size: var(--bm-text-small);
    color: var(--bm-color-text);
    white-space: nowrap;
}

.bm-hero__tag-icon {
    font-size: 14px;
    line-height: 1;
}

/* CTA + price */
.bm-hero__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--bm-space-sm);
    margin-bottom: var(--bm-space-sm);
}

.bm-hero__cta-btn {
    white-space: nowrap;
}

.bm-hero__price {
    font-family: var(--bm-font-heading);
    font-size: var(--bm-text-lead);
    color: var(--bm-color-accent);
    font-weight: 400;
}

/* Micro-trust line */
.bm-hero__trust {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-tertiary);
    margin-bottom: 0;
}

/* ==========================================================================
   Block: Qualification — split layout with photo + checklist
   ========================================================================== */

.bm-qualification {
    padding: var(--bm-spacing-section) 0;
    background-color: var(--bm-color-bg);
}

.bm-qualification__inner {
    max-width: var(--bm-max-width);
    margin: 0 auto;
    padding: 0 var(--bm-space-md);
}

/* Photo — mobile: full-width with subtle radius */
.bm-qualification__visual {
    margin-bottom: var(--bm-space-lg);
    border-radius: var(--bm-radius-md);
    overflow: hidden;
}

.bm-qualification__photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 280px;
}

/* Content */
.bm-qualification__title {
    font-family: var(--bm-font-heading);
    font-size: var(--bm-text-h2);
    line-height: var(--bm-lh-h2);
    letter-spacing: -0.02em;
    margin-bottom: var(--bm-space-md);
}

/* Checklist items */
.bm-qualification__list {
    display: grid;
    gap: var(--bm-space-sm);
    margin-bottom: var(--bm-space-lg);
}

.bm-qualification__item {
    display: flex;
    align-items: flex-start;
    gap: var(--bm-space-sm);
    padding: var(--bm-space-md);
    background-color: var(--bm-color-white);
    border-radius: var(--bm-radius-md);
    border: 1px solid var(--bm-color-border);
    transition: box-shadow var(--bm-duration-normal) var(--bm-ease-out-expo),
                transform var(--bm-duration-normal) var(--bm-ease-out-expo);
}

.bm-qualification__item:hover {
    box-shadow: var(--bm-shadow-sm);
    transform: translateY(-1px);
}

/* Checkmark icon — 48px for 50+ accessibility */
.bm-qualification__item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bm-color-accent-light);
    color: var(--bm-color-accent);
    border-radius: 50%;
}

.bm-qualification__item-icon svg {
    width: 24px;
    height: 24px;
}

.bm-qualification__item-text {
    font-size: var(--bm-text-body);
    line-height: var(--bm-line-height);
    padding-top: 2px;
}

/* Item with micro-quote — wraps text + quote in a column */
.bm-qualification__item-body {
    flex: 1;
}

.bm-qualification__item-body .bm-qualification__item-text {
    padding-top: 2px;
}

/* Micro-testimonial */
.bm-qualification__micro-quote {
    margin-top: var(--bm-space-sm);
    padding-top: var(--bm-space-sm);
    border-top: 1px solid var(--bm-color-border);
}

.bm-qualification__micro-quote p {
    font-family: var(--bm-font-heading);
    font-size: var(--bm-text-small);
    font-style: italic;
    color: var(--bm-color-text-secondary);
    line-height: 1.5;
    margin-bottom: 4px;
}

.bm-qualification__micro-quote cite {
    font-style: normal;
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-tertiary);
    font-weight: 600;
}

/* "En revanche" — dual framing section */
.bm-qualification__not-for {
    padding-top: var(--bm-space-md);
    border-top: 1px solid var(--bm-color-border);
}

.bm-qualification__not-for-title {
    font-size: var(--bm-text-small);
    font-weight: 600;
    color: var(--bm-color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: var(--bm-space-sm);
}

.bm-qualification__not-for-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bm-qualification__not-for-list li {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-tertiary);
    line-height: 1.5;
    padding-left: 0;
}

/* ==========================================================================
   Block: Urgence
   ========================================================================== */

.bm-urgence {
    background-color: var(--bm-color-bg-alt);
    padding: var(--bm-spacing-section) 0;
}

.bm-urgence__inner {
    max-width: var(--bm-max-width);
    margin: 0 auto;
    padding: 0 var(--bm-space-md);
}

.bm-urgence__title {
    text-align: center;
    margin-bottom: var(--bm-space-lg);
}

.bm-urgence__content {
    font-size: var(--bm-text-body);
    line-height: var(--bm-line-height);
    max-width: var(--bm-content-width);
    margin-left: auto;
    margin-right: auto;
}

.bm-urgence__content p {
    margin-bottom: var(--bm-space-sm);
}

.bm-urgence__highlight {
    background: var(--bm-color-accent-light);
    border-left: 3px solid var(--bm-color-accent);
    padding: var(--bm-space-md) var(--bm-space-lg);
    margin: var(--bm-space-md) 0;
    border-radius: 0 var(--bm-radius-sm) var(--bm-radius-sm) 0;
    font-weight: 500;
}

.bm-urgence__list {
    list-style: none;
    padding: 0;
    margin: var(--bm-space-sm) 0 var(--bm-space-md);
}

.bm-urgence__list li {
    position: relative;
    padding-left: 1.75em;
    margin-bottom: 0.6em;
    line-height: 1.6;
}

.bm-urgence__list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--bm-color-accent);
    font-weight: 700;
}

/* ==========================================================================
   Block: Benefices — Swiss grid
   ========================================================================== */

.bm-benefices {
    padding: var(--bm-spacing-section) 0;
}

.bm-benefices__inner {
    max-width: var(--bm-max-width);
    margin: 0 auto;
    padding: 0 var(--bm-space-md);
}

.bm-benefices__title {
    text-align: center;
    margin-bottom: var(--bm-space-lg);
}

.bm-benefices__list {
    display: grid;
    gap: var(--bm-space-sm);
    margin-bottom: var(--bm-space-lg);
}

.bm-benefices__item {
    display: flex;
    align-items: flex-start;
    gap: var(--bm-space-sm);
    padding: var(--bm-space-md);
    background-color: var(--bm-color-white);
    border-radius: var(--bm-radius-md);
    border: 1px solid var(--bm-color-border);
    transition: box-shadow var(--bm-duration-normal) var(--bm-ease-out-expo),
                transform var(--bm-duration-normal) var(--bm-ease-out-expo);
}

.bm-benefices__item:hover {
    box-shadow: var(--bm-shadow-sm);
    transform: translateY(-1px);
}

.bm-benefices__item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bm-color-accent-light);
    color: var(--bm-color-accent);
    border-radius: var(--bm-radius-sm);
    font-size: 20px;
}

.bm-benefices__item-content {
    flex: 1;
}

.bm-benefices__item-title {
    font-family: var(--bm-font-heading);
    font-size: var(--bm-text-body);
    font-weight: 400;
    line-height: var(--bm-lh-h3);
    margin-bottom: 2px;
}

.bm-benefices__item-desc {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-secondary);
    line-height: 1.5;
}

.bm-benefices__closing {
    text-align: center;
    font-family: var(--bm-font-heading);
    font-size: var(--bm-text-lead);
    font-weight: 400;
    font-style: italic;
    color: var(--bm-color-accent);
    padding: var(--bm-space-lg) var(--bm-space-md);
    border-top: 1px solid var(--bm-color-border);
    border-bottom: 1px solid var(--bm-color-border);
    letter-spacing: -0.01em;
    line-height: 1.4;
}

/* ==========================================================================
   Block: Programme — Swiss grid
   ========================================================================== */

.bm-programme {
    background-color: var(--bm-color-bg-alt);
    padding: var(--bm-spacing-section) 0;
}

.bm-programme__inner {
    max-width: var(--bm-max-width);
    margin: 0 auto;
    padding: 0 var(--bm-space-md);
}

.bm-programme__title {
    text-align: center;
    margin-bottom: var(--bm-space-xs);
}

.bm-programme__subtitle {
    text-align: center;
    font-size: var(--bm-text-lead);
    line-height: var(--bm-lh-lead);
    color: var(--bm-color-text-secondary);
    margin-bottom: var(--bm-space-lg);
}

.bm-programme__hours {
    display: flex;
    justify-content: center;
    gap: var(--bm-space-sm);
    margin-bottom: var(--bm-space-lg);
    flex-wrap: wrap;
}

.bm-programme__hours-item {
    background-color: var(--bm-color-white);
    border: 1.5px solid var(--bm-color-accent);
    border-radius: 100vw;
    padding: var(--bm-space-xs) var(--bm-space-lg);
    text-align: center;
}

.bm-programme__hours-number {
    display: block;
    font-family: var(--bm-font-heading);
    font-size: var(--bm-text-h2);
    font-weight: 400;
    color: var(--bm-color-accent);
}

.bm-programme__hours-label {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-secondary);
}

.bm-programme__activities {
    display: grid;
    gap: var(--bm-space-xs);
}

.bm-programme__activity {
    display: flex;
    align-items: flex-start;
    gap: var(--bm-space-sm);
    padding: var(--bm-space-sm) var(--bm-space-md);
    background-color: var(--bm-color-white);
    border-radius: var(--bm-radius-sm);
    transition: box-shadow var(--bm-duration-normal) var(--bm-ease-out-expo);
}

.bm-programme__activity:hover {
    box-shadow: var(--bm-shadow-sm);
}

.bm-programme__activity-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bm-color-accent);
    color: var(--bm-color-white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 13px;
}

.bm-programme__activity-content {
    flex: 1;
}

.bm-programme__activity-title {
    font-family: var(--bm-font-heading);
    font-weight: 400;
    line-height: var(--bm-lh-h3);
    margin-bottom: 2px;
}

.bm-programme__activity-desc {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   Block: Methode + Intervenants
   ========================================================================== */

.bm-methode {
    padding: var(--bm-spacing-section) 0;
}

.bm-methode__inner {
    max-width: var(--bm-max-width);
    margin: 0 auto;
    padding: 0 var(--bm-space-md);
}

.bm-methode__title {
    text-align: center;
    margin-bottom: var(--bm-space-lg);
}

.bm-methode__content {
    font-size: var(--bm-text-body);
    line-height: var(--bm-line-height);
    margin-bottom: var(--bm-space-lg);
    max-width: var(--bm-content-width);
    margin-left: auto;
    margin-right: auto;
}

.bm-methode__content p {
    margin-bottom: var(--bm-space-sm);
}

.bm-methode__intervenants-title {
    text-align: center;
    margin-bottom: var(--bm-space-md);
}

.bm-methode__intervenants {
    display: grid;
    gap: var(--bm-space-md);
}

.bm-methode__intervenant {
    display: flex;
    align-items: flex-start;
    gap: var(--bm-space-md);
    padding: var(--bm-space-lg);
    background-color: var(--bm-color-white);
    border-radius: var(--bm-radius-md);
    border-top: 3px solid var(--bm-color-accent);
    box-shadow: var(--bm-shadow-sm);
    transition: box-shadow var(--bm-duration-normal) var(--bm-ease-out-expo);
}

.bm-methode__intervenant:hover {
    box-shadow: var(--bm-shadow-md);
}

.bm-methode__intervenant-photo {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: var(--bm-color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--bm-color-text-secondary);
    overflow: hidden;
}

.bm-methode__intervenant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bm-methode__intervenant-info {
    flex: 1;
}

.bm-methode__intervenant-name {
    font-family: var(--bm-font-heading);
    font-weight: 400;
    font-size: var(--bm-text-h3);
    line-height: var(--bm-lh-h3);
    margin-bottom: 2px;
}

.bm-methode__intervenant-role {
    font-size: var(--bm-text-small);
    color: var(--bm-color-accent);
    font-weight: 600;
    margin-bottom: var(--bm-space-xs);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bm-methode__intervenant-desc {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   Block: Temoignages — Pull quote style
   ========================================================================== */

.bm-temoignages {
    background: linear-gradient(180deg, var(--bm-color-bg-alt) 0%, rgba(242, 241, 238, 0.5) 100%);
    padding: var(--bm-spacing-section) 0;
}

.bm-temoignages__inner {
    max-width: var(--bm-max-width);
    margin: 0 auto;
    padding: 0 var(--bm-space-md);
}

.bm-temoignages__title {
    text-align: center;
    margin-bottom: var(--bm-space-sm);
}

.bm-temoignages__intro {
    text-align: center;
    color: var(--bm-color-text-secondary);
    margin-bottom: var(--bm-space-lg);
    font-size: var(--bm-text-lead);
    line-height: var(--bm-lh-lead);
    max-width: var(--bm-content-width);
    margin-left: auto;
    margin-right: auto;
}

.bm-temoignages__sub {
    text-align: center;
    color: var(--bm-color-text-secondary);
    margin-bottom: var(--bm-space-md);
    font-size: var(--bm-text-body);
}

.bm-temoignages__video {
    margin-bottom: var(--bm-space-lg);
}

.bm-temoignages__video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--bm-radius-md);
    box-shadow: var(--bm-shadow-md);
}

.bm-temoignages__video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.bm-temoignages__list {
    display: grid;
    gap: var(--bm-space-md);
}

.bm-temoignages__item {
    background-color: var(--bm-color-white);
    border-radius: var(--bm-radius-md);
    padding: var(--bm-space-lg);
    box-shadow: var(--bm-shadow-sm);
    transition: box-shadow var(--bm-duration-normal) var(--bm-ease-out-expo);
}

.bm-temoignages__item:hover {
    box-shadow: var(--bm-shadow-md);
}

.bm-temoignages__item-quote {
    margin-bottom: var(--bm-space-md);
}

/* Pull quote: the key phrase, large serif */
.bm-temoignages__pull-quote {
    font-family: var(--bm-font-heading);
    font-size: var(--bm-text-h3);
    line-height: var(--bm-lh-h3);
    color: var(--bm-color-text);
    margin-bottom: var(--bm-space-sm);
    position: relative;
    padding-left: var(--bm-space-md);
    border-left: 3px solid var(--bm-color-accent);
}

/* Supporting text under pull quote */
.bm-temoignages__item-text {
    font-size: var(--bm-text-body);
    line-height: var(--bm-line-height);
    color: var(--bm-color-text-secondary);
}

.bm-temoignages__item-author {
    display: flex;
    align-items: center;
    gap: var(--bm-space-sm);
}

.bm-temoignages__item-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--bm-color-accent-light);
    border: 2px solid var(--bm-color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bm-color-accent);
    font-size: 18px;
    overflow: hidden;
    flex-shrink: 0;
}

.bm-temoignages__item-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bm-temoignages__item-name {
    font-weight: 700;
    font-size: var(--bm-text-body);
    font-style: normal;
    display: block;
}

.bm-temoignages__item-detail {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-tertiary);
}

/* ==========================================================================
   Block: Experience Presentiel
   ========================================================================== */

.bm-experience {
    padding: var(--bm-spacing-section) 0;
}

.bm-experience__inner {
    max-width: var(--bm-max-width);
    margin: 0 auto;
    padding: 0 var(--bm-space-md);
}

.bm-experience__title {
    text-align: center;
    margin-bottom: var(--bm-space-lg);
}

.bm-experience__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--bm-space-xs);
    margin-bottom: var(--bm-space-lg);
}

.bm-experience__gallery-item {
    border-radius: var(--bm-radius-md);
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.bm-experience__gallery-item:first-child {
    grid-column: 1 / -1;
}

.bm-experience__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--bm-ease-out-expo);
}

.bm-experience__gallery-item:hover img {
    transform: scale(1.03);
}

.bm-experience__grid {
    display: grid;
    gap: var(--bm-space-sm);
}

.bm-experience__card {
    background-color: var(--bm-color-white);
    border-radius: var(--bm-radius-md);
    padding: var(--bm-space-md);
    border: 1px solid var(--bm-color-border);
    transition: box-shadow var(--bm-duration-normal) var(--bm-ease-out-expo);
}

.bm-experience__card:hover {
    box-shadow: var(--bm-shadow-sm);
}

.bm-experience__card-icon {
    font-size: 28px;
    margin-bottom: var(--bm-space-xs);
    color: var(--bm-color-accent);
}

.bm-experience__card-title {
    font-family: var(--bm-font-heading);
    font-size: var(--bm-text-body);
    font-weight: 400;
    line-height: var(--bm-lh-h3);
    margin-bottom: var(--bm-space-xs);
}

.bm-experience__card-text {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-secondary);
    line-height: 1.5;
}

.bm-experience__planning {
    margin-top: var(--bm-space-lg);
}

.bm-experience__planning-title {
    text-align: center;
    margin-bottom: var(--bm-space-md);
}

.bm-experience__planning-grid {
    display: grid;
    gap: var(--bm-space-xs);
}

.bm-experience__planning-day {
    background-color: var(--bm-color-white);
    border-radius: var(--bm-radius-sm);
    padding: var(--bm-space-md);
    border-top: 3px solid var(--bm-color-accent);
    transition: box-shadow var(--bm-duration-normal) var(--bm-ease-out-expo);
}

.bm-experience__planning-day:hover {
    box-shadow: var(--bm-shadow-sm);
}

.bm-experience__planning-day-name {
    font-family: var(--bm-font-heading);
    font-weight: 400;
    font-size: var(--bm-text-lead);
    line-height: var(--bm-lh-lead);
    color: var(--bm-color-accent);
    margin-bottom: 2px;
}

.bm-experience__planning-day-time {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-secondary);
    margin-bottom: var(--bm-space-xs);
}

.bm-experience__planning-day-desc {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text);
}

/* ==========================================================================
   Block: Infos Pratiques — Swiss grid
   ========================================================================== */

.bm-infos-pratiques {
    background-color: var(--bm-color-bg-alt);
    padding: var(--bm-spacing-section) 0;
}

.bm-infos-pratiques__inner {
    max-width: var(--bm-max-width);
    margin: 0 auto;
    padding: 0 var(--bm-space-md);
}

.bm-infos-pratiques__title {
    text-align: center;
    margin-bottom: var(--bm-space-lg);
}

.bm-infos-pratiques__grid {
    display: grid;
    gap: var(--bm-space-sm);
    margin-bottom: var(--bm-space-lg);
}

.bm-infos-pratiques__card {
    background-color: var(--bm-color-white);
    border-radius: var(--bm-radius-md);
    padding: var(--bm-space-md);
    text-align: center;
    transition: box-shadow var(--bm-duration-normal) var(--bm-ease-out-expo);
}

.bm-infos-pratiques__card:hover {
    box-shadow: var(--bm-shadow-sm);
}

.bm-infos-pratiques__card-icon {
    font-size: 32px;
    margin-bottom: var(--bm-space-xs);
}

.bm-infos-pratiques__card-label {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: var(--bm-space-xs);
}

.bm-infos-pratiques__card-value {
    font-family: var(--bm-font-heading);
    font-size: var(--bm-text-lead);
    line-height: var(--bm-lh-lead);
    font-weight: 400;
    color: var(--bm-color-text);
}

.bm-infos-pratiques__card-detail {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-secondary);
    margin-top: var(--bm-space-xs);
}

.bm-infos-pratiques__price {
    text-align: center;
    background-color: var(--bm-color-white);
    border: 2px solid var(--bm-color-accent);
    border-radius: var(--bm-radius-lg);
    padding: var(--bm-space-xl);
    box-shadow: var(--bm-shadow-md);
}

.bm-infos-pratiques__price-amount {
    font-family: var(--bm-font-heading);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--bm-color-accent);
    line-height: 1;
    margin-bottom: var(--bm-space-xs);
}

.bm-infos-pratiques__price-label {
    font-size: var(--bm-text-body);
    color: var(--bm-color-text-secondary);
    margin-bottom: var(--bm-space-sm);
}

.bm-infos-pratiques__price-detail {
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-secondary);
}

.bm-infos-pratiques__price-cta {
    margin-top: var(--bm-space-md);
}

/* ==========================================================================
   Block: FAQ
   ========================================================================== */

.bm-faq {
    padding: var(--bm-spacing-section) 0;
}

.bm-faq__inner {
    max-width: var(--bm-max-width);
    margin: 0 auto;
    padding: 0 var(--bm-space-md);
}

.bm-faq__title {
    text-align: center;
    margin-bottom: var(--bm-space-lg);
}

.bm-faq__list {
    display: grid;
    gap: var(--bm-space-xs);
    max-width: 800px;
    margin: 0 auto;
}

.bm-faq__item {
    border: 1px solid var(--bm-color-border);
    border-radius: var(--bm-radius-sm);
    overflow: hidden;
    background-color: var(--bm-color-white);
    transition: box-shadow var(--bm-duration-normal) var(--bm-ease-out-expo);
}

.bm-faq__item:hover {
    box-shadow: var(--bm-shadow-sm);
}

.bm-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--bm-space-sm);
    width: 100%;
    padding: var(--bm-space-md);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--bm-font-body);
    font-size: var(--bm-text-body);
    font-weight: 600;
    color: var(--bm-color-text);
    text-align: left;
    line-height: 1.4;
    min-height: 52px;
    transition: background-color var(--bm-duration-fast) ease;
}

.bm-faq__question:hover {
    background-color: var(--bm-color-bg);
}

.bm-faq__question:focus-visible {
    outline: 3px solid var(--bm-color-accent);
    outline-offset: -3px;
    border-radius: var(--bm-radius-sm);
}

.bm-faq__question-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--bm-ease-out-expo);
    color: var(--bm-color-accent);
}

.bm-faq__item--open .bm-faq__question-icon {
    transform: rotate(180deg);
}

.bm-faq__answer {
    display: none;
    padding: 0 var(--bm-space-md) var(--bm-space-md);
    font-size: var(--bm-text-body);
    line-height: 1.6;
    color: var(--bm-color-text-secondary);
}

.bm-faq__item--open .bm-faq__answer {
    display: block;
}

/* ==========================================================================
   Block: CTA Final
   ========================================================================== */

.bm-cta-final {
    background-color: var(--bm-color-accent);
    color: var(--bm-color-white);
    padding: var(--bm-space-2xl) 0;
    text-align: center;
}

.bm-cta-final__inner {
    max-width: var(--bm-max-width);
    margin: 0 auto;
    padding: 0 var(--bm-space-md);
}

.bm-cta-final__title {
    font-family: var(--bm-font-heading);
    color: var(--bm-color-white);
    font-size: var(--bm-text-h2);
    margin-bottom: var(--bm-space-sm);
}

.bm-cta-final__text {
    font-size: var(--bm-text-lead);
    line-height: var(--bm-lh-lead);
    opacity: 0.85;
    margin-bottom: var(--bm-space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bm-cta-final .bm-btn--accent,
.bm-cta-final .bm-btn--primary {
    background-color: var(--bm-color-white);
    color: var(--bm-color-accent);
    border-color: var(--bm-color-white);
    box-shadow: var(--bm-shadow-md);
}

.bm-cta-final .bm-btn--accent:hover,
.bm-cta-final .bm-btn--accent:focus,
.bm-cta-final .bm-btn--primary:hover,
.bm-cta-final .bm-btn--primary:focus {
    background-color: var(--bm-color-bg);
    color: var(--bm-color-accent-hover);
    box-shadow: var(--bm-shadow-lg);
}

.bm-cta-final__subtext {
    margin-top: var(--bm-space-sm);
    font-size: var(--bm-text-small);
    opacity: 0.8;
}

/* ==========================================================================
   Block: Formulaire
   ========================================================================== */

.bm-formulaire {
    padding: var(--bm-spacing-section) 0;
    background-color: var(--bm-color-bg-alt);
}

.bm-formulaire__inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 var(--bm-space-md);
}

.bm-formulaire__title {
    text-align: center;
    margin-bottom: var(--bm-space-xs);
}

.bm-formulaire__subtitle {
    text-align: center;
    color: var(--bm-color-text-secondary);
    margin-bottom: var(--bm-space-lg);
}

.bm-formulaire__form {
    background-color: var(--bm-color-white);
    border-radius: var(--bm-radius-lg);
    padding: var(--bm-space-lg);
    box-shadow: var(--bm-shadow-md);
}

.bm-formulaire__group {
    margin-bottom: var(--bm-space-md);
}

.bm-formulaire__label {
    display: block;
    font-weight: 600;
    font-size: var(--bm-text-small);
    color: var(--bm-color-text);
    margin-bottom: var(--bm-space-xs);
}

.bm-formulaire__label--required::after {
    content: " *";
    color: var(--bm-color-error);
}

.bm-formulaire__input,
.bm-formulaire__select {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--bm-font-body);
    font-size: var(--bm-text-body);
    color: var(--bm-color-text);
    background-color: var(--bm-color-white);
    border: 1.5px solid var(--bm-color-border-medium);
    border-radius: var(--bm-radius-sm);
    transition: border-color var(--bm-duration-fast) ease,
                box-shadow var(--bm-duration-fast) ease;
    min-height: 48px;
    appearance: none;
    -webkit-appearance: none;
}

.bm-formulaire__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234A4A46' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.bm-formulaire__input:focus,
.bm-formulaire__select:focus {
    outline: none;
    border-color: var(--bm-color-accent);
    box-shadow: 0 0 0 3px rgba(44, 95, 75, 0.12);
}

.bm-formulaire__input::placeholder {
    color: var(--bm-color-text-tertiary);
}

.bm-formulaire__checkbox-group {
    margin-bottom: var(--bm-space-md);
}

.bm-formulaire__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--bm-space-sm);
    cursor: pointer;
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-secondary);
    line-height: 1.5;
}

.bm-formulaire__checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--bm-color-accent);
}

.bm-formulaire__payment-section {
    margin-bottom: var(--bm-space-md);
}

.bm-formulaire__payment-title {
    font-weight: 600;
    font-size: var(--bm-text-body);
    margin-bottom: var(--bm-space-sm);
}

.bm-formulaire__radio-group {
    display: grid;
    gap: var(--bm-space-xs);
}

.bm-formulaire__radio-label {
    display: flex;
    align-items: center;
    gap: var(--bm-space-sm);
    padding: var(--bm-space-sm) var(--bm-space-md);
    border: 1.5px solid var(--bm-color-border);
    border-radius: var(--bm-radius-sm);
    cursor: pointer;
    transition: border-color var(--bm-duration-fast) ease,
                background-color var(--bm-duration-fast) ease;
}

.bm-formulaire__radio-label:hover {
    border-color: var(--bm-color-accent);
    background-color: var(--bm-color-accent-light);
}

.bm-formulaire__radio-label:has(:checked) {
    border-color: var(--bm-color-accent);
    background-color: var(--bm-color-accent-light);
    box-shadow: 0 0 0 1px var(--bm-color-accent);
}

.bm-formulaire__radio {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    accent-color: var(--bm-color-accent);
}

.bm-formulaire__notice {
    background-color: var(--bm-color-accent-light);
    border-radius: var(--bm-radius-sm);
    padding: var(--bm-space-sm);
    font-size: var(--bm-text-small);
    color: var(--bm-color-accent);
    text-align: center;
    margin-bottom: var(--bm-space-md);
}

.bm-formulaire__submit {
    width: 100%;
}

.bm-formulaire__submit.bm-btn {
    min-height: 52px;
    border-radius: var(--bm-radius-sm);
    box-shadow: 0 2px 8px rgba(44, 95, 75, 0.25);
}

.bm-formulaire__submit.bm-btn:hover {
    box-shadow: 0 4px 16px rgba(44, 95, 75, 0.3);
}

.bm-formulaire__secure {
    text-align: center;
    font-size: var(--bm-text-small);
    color: var(--bm-color-text-secondary);
    margin-top: var(--bm-space-sm);
}

.bm-formulaire__optional {
    font-weight: 400;
    color: var(--bm-color-text-tertiary);
}
