/* ==========================================================================
   BMA PERMIS — Feuille de style principale
   Design system dérivé de la maquette Figma "BMA Permis — Website"
   ========================================================================== */

:root {
    /* Couleurs de marque */
    --color-orange: #ff4b0b;
    --color-orange-dark: #f4511e;
    --color-orange-light: #fdece2;
    --color-orange-soft: rgba(253, 234, 224, 0.6);
    --color-cream: #fff5ee;
    --color-cream-2: #fdf2ec;
    --color-cream-soft: rgba(252, 237, 231, 0.4);

    /* Texte */
    --color-ink: #171717;
    --color-ink-2: #16110f;
    --color-body: #5f5651;
    --color-body-2: #5b6577;
    --color-muted: #7a716c;
    --color-placeholder: #9ca3af;

    /* Neutres */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-border: #f1e9e5;
    --color-border-2: #e6e1de;

    /* Typo */
    --font-heading: 'Manrope', 'Poppins', sans-serif;
    --font-nav: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Divers */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-card: 0 1px 1px rgba(24, 16, 12, 0.04);
    --shadow-card-lg: 0 30px 40px -10px rgba(24, 16, 12, 0.10);
    --container-width: 1312px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-body);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3 { overflow-wrap: break-word; word-wrap: break-word; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 1800px) {
    .container {
        padding: 30px 32px;
    }
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-ink-2);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ==========================================================================
   Boutons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    padding: 17px 28px;
    border-radius: var(--radius-sm);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-orange);
    color: var(--color-white);
}
.btn--primary:hover {
    background: var(--color-orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 75, 11, 0.25);
}

.btn--outline {
    background: var(--color-white);
    color: var(--color-ink);
    border: 1px solid var(--color-border-2);
}
.btn--outline:hover { border-color: var(--color-orange); color: var(--color-orange); }

.btn--block { width: 100%; }

.btn img, .btn svg { width: 18px; height: 18px; }

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.navbar__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 62px;
}

.navbar__logo img { height: 72px; width: auto; }

.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: var(--font-nav);
    font-weight: 600;
    font-size: 17px;
}

.navbar__links a {
    color: var(--color-ink);
    padding: 26px 0;
    position: relative;
}

.navbar__links a.active { color: var(--color-orange); }
.navbar__links a.active::after {
    content: '';
    position: absolute;
    left: -6px;
    right: -6px;
    bottom: 22px;
    height: 3px;
    border-radius: var(--radius-full);
    background: var(--color-orange);
}

.navbar__dropdown { position: relative; }
.navbar__dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    color: var(--color-ink);
    font-family: var(--font-nav);
    font-weight: 600;
    font-size: 17px;
}
.navbar__links .navbar__dropdown-toggle { padding: 26px 0; }
.navbar__dropdown-toggle img { width: 18px; height: 18px; transition: transform 0.2s ease; }
.navbar__dropdown.open .navbar__dropdown-toggle img,
.navbar__dropdown:hover .navbar__dropdown-toggle img { transform: rotate(180deg); }

.navbar__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 40px rgba(17, 19, 24, 0.12);
    padding: 8px;
    display: none;
}
.navbar__dropdown.open .navbar__dropdown-menu,
.navbar__dropdown:hover .navbar__dropdown-menu { display: block; }
.navbar__dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 15px;
    color: var(--color-ink);
}
.navbar__dropdown-menu a:hover { background: var(--color-orange-light); color: var(--color-orange); }

.navbar__cta {
    flex-shrink: 0;
    background: var(--color-white);
    color: var(--color-orange);
    border: 3px solid var(--color-orange);
    font-family: var(--font-heading);
    font-weight: 700;
}
.navbar__cta:hover {
    background: var(--color-orange-light);
    color: var(--color-orange-dark);
    border-color: var(--color-orange-dark);
    transform: translateY(-1px);
    box-shadow: none;
}

.navbar__mobile-actions { display: none; align-items: center; gap: 10px; }

.navbar__call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid var(--color-orange);
    border-radius: 8px;
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}
.navbar__call-btn img { width: 18px; height: 18px; }

.navbar__burger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}
.navbar__burger img { width: 24px; height: 24px; }

/* ==========================================================================
   Menu mobile (panneau plein écran)
   ========================================================================== */

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: #f9f9f9;
    overflow-y: auto;
    padding: 24px 20px 32px;
}
.mobile-menu--open { display: block; }

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.mobile-menu__logo { height: 48px; width: auto; }
.mobile-menu__close {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.mobile-menu__close img { width: 24px; height: 24px; }

.mobile-menu__nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px;
    border-radius: 16px;
    color: #111111;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
}
.mobile-menu__item.active { background: #fdeee5; color: var(--color-orange-dark); }
.mobile-menu__item-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--color-orange-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mobile-menu__item.active .mobile-menu__item-icon { background: #fbddcb; }
.mobile-menu__item-icon img { width: 26px; height: 26px; }

.mobile-menu__footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.mobile-menu__footer .btn { width: 100%; }
.mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    color: #111111;
}
.mobile-menu__phone img { width: 20px; height: 20px; }

body.mobile-menu-active { overflow: hidden; }

/* ==========================================================================
   Sections génériques
   ========================================================================== */

section { padding: 96px 0; }
body.page-formules section { padding: 0; }

/* Évite le double espace quand deux sections de même fond se suivent */
section.section--cream + section.section--cream,
section:not(.section--cream):not(.section--black):not(.engagements-section) + section:not(.section--cream):not(.section--black):not(.engagements-section) {
    padding-top: 0;
}

.section--cream { background: var(--color-cream); }
.section--cream-2 { background: var(--color-cream-2); }
.section--cream-gradient { background: linear-gradient(135deg, #fefaf8 0%, #fdf1ea 100%); }
.section--black { background: #0a0a0a; color: var(--color-white); }

@media (max-width: 640px) {
    .section--cream.formules-pricing-section {
        background: linear-gradient(180deg, #fdeee6 0%, #fcf3ee 10%, #faf7f5 18%, #fdf0e8 32%, #fdf0e8 100%);
    }
    .section--cream-2.formules-tarifs-section { background: #fdf0e8; }
    .page-hero.page-hero--formules {
        background: linear-gradient(180deg, #fdeee6 0%, #fcf3ee 10%, #faf7f5 18%, #fdf0e8 32%, #fdf0e8 100%);
    }
    .formules-cta-section { display: none; }

    body.page-formules .pricing-card__head { display: flex; align-items: flex-start; gap: 20px; }
    body.page-formules .pricing-card__head-text { flex: 1; min-width: 0; }

    .formules-pricing-section .section-head { text-align: center; margin-left: auto; margin-right: auto; }
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
@media (max-width: 640px) { .section-head { text-align: left; margin-left: 0; margin-right: 0; } }
.section-head--left {
    text-align: left;
    margin: 0 0 40px;
    padding: 60px 0px;
}

.eyebrow {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    color: var(--color-orange);
    margin-bottom: 16px;
}
.eyebrow-plain {
    display: inline-flex;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    color: var(--color-orange);
    margin-bottom: 16px;
}
.eyebrow::before {
    content: '';
    width: 36px;
    height: 2px;
    border-radius: var(--radius-full);
    background: var(--color-orange);
    flex-shrink: 0;
}
.eyebrow--no-dash::before { content: none; }
@media (max-width: 640px) {
    #avis .eyebrow--no-dash::before {
        content: '';
        width: 32px;
        height: 2px;
        border-radius: var(--radius-full);
        background: var(--color-orange);
        flex-shrink: 0;
    }
}
.eyebrow--stacked { flex-direction: column; align-items: flex-start; gap: 10px; }
.eyebrow--stacked-below-center { flex-direction: column-reverse; align-items: center; gap: 10px; }
@media (max-width: 640px) {
    .eyebrow--stacked-below-center { flex-direction: row; align-items: center; gap: 14px; }
}
.page-hero__text .eyebrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.page-hero__text .eyebrow::before {
    width: 52px;
    margin-left: 6px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 16px;
}
.section-title .accent { color: var(--color-orange); }

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-body);
}
.section--black .section-subtitle { color: rgba(255,255,255,0.7); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    background: linear-gradient(180deg, var(--color-cream) 0%, #fffaf6 100%);
    padding: 88px 0 96px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 64px;
}

.hero__eyebrow { color: var(--color-orange); }

.hero__title {
    font-size: 60px;
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero__text {
    font-size: 19px;
    color: var(--color-body);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); width: 100%; height: auto; object-fit: cover; }

/* ==========================================================================
   Cartes formules (pricing)
   ========================================================================== */

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

@media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.pricing-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.pricing-card--featured {
    box-shadow: var(--shadow-card-lg);
    border-color: var(--color-orange);
    position: relative;
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.pricing-card__icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: var(--color-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.pricing-card__icon img { width: 32px; height: 32px; }
@media (max-width: 640px) { #formules .pricing-card__icon { display: none; } }

.pricing-card__title {
    font-size: 26px;
    margin-bottom: 6px;
}

.pricing-card__meta {
    font-size: 16px;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.pricing-card__price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 46px;
    color: var(--color-ink-2);
    letter-spacing: -0.02em;
}
.pricing-card__price-old {
    font-size: 20px;
    color: var(--color-placeholder);
    text-decoration: line-through;
    font-weight: 600;
    margin-left: 8px;
}

.pricing-card__terms {
    font-size: 16px;
    color: var(--color-muted);
    margin: 12px 0 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border-2);
}

.pricing-card__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}
.pricing-card__brochure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-body-2);
}
.pricing-card__brochure img { width: 16px; height: 16px; }
.pricing-card__brochure:hover { color: var(--color-orange); }
.pricing-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #2c2421;
}
.pricing-card__check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: var(--radius-full);
    background: var(--color-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.pricing-card__check img { width: 14px; height: 14px; }

/* ==========================================================================
   Cartes génériques (documents, financement, avis)
   ========================================================================== */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 1000px) {
    .split { grid-template-columns: 1fr; }
}

.split--esprit { align-items: center; }

.split--horaires { align-items: stretch; }
.split--horaires .contact-media--stretch { display: flex; flex-direction: column; height: 100%; }
.split--horaires .contact-media--stretch > img { flex: 1 1 0; min-height: 0; width: 100%; object-fit: cover; object-position: center 60%; }
.esprit-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 58px;
    line-height: 1.22;
    color: var(--color-ink-2);
    letter-spacing: -0.02em;
}
@media (max-width: 640px) { .esprit-title { font-size: 40px; } }

.split__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin-top: 24px;
}
.split__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1 1 0;
    min-width: 0;
    font-size: 15px;
    line-height: 1.3;
    color: var(--color-body-2);
}
.split__list img { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 640px) {
    .split__list { flex-direction: column; flex-wrap: nowrap; gap: 14px; }
    .split__list li { flex: none; }
}

.feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 32px rgba(17, 19, 24, 0.10);
    padding: 36px;
    position: relative;
    overflow: hidden;
}
.feature-card--decor { overflow: hidden; }
.feature-card__decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}
.feature-card--decor > *:not(.feature-card__decor) { position: relative; z-index: 1; }
.feature-card__icon {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-md);
    background: var(--color-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.feature-card__icon img { width: 32px; height: 32px; }
.feature-card__title { font-size: 25px; margin-bottom: 10px; }
.feature-card__text { font-size: 17px; color: var(--color-body-2); margin-bottom: 4px; }
.feature-card__meta { font-size: 15px; color: rgba(91,101,119,0.8); margin-bottom: 24px; }

.note-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    font-size: 17px;
    color: var(--color-body-2);
}
.note-line img { width: 24px; height: 24px; }

/* ==========================================================================
   Financement teaser (contraste, texte noir sur fond clair)
   ========================================================================== */

.finance-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-areas: "text card" "cta card";
    align-items: center;
    gap: 48px;
}
.finance-banner__text-col { grid-area: text; }
.finance-banner__cta { grid-area: cta; align-self: start; }
.finance-banner .feature-card { grid-area: card; }
.finance-banner__title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
}
.finance-banner__title .dot { color: var(--color-orange); }
.finance-banner__text {
    font-size: 19px;
    color: #6b7a99;
    margin-bottom: 32px;
    max-width: 480px;
}
.feature-card__head-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.feature-card__head-row img { margin-bottom: 0 !important; }
.feature-card__head-row p { margin-bottom: 0 !important; }
@media (max-width: 640px) {
    .finance-banner { grid-template-areas: "text" "card" "cta"; }
    .feature-card__decor { display: none; }
}
.finance-banner__media img { border-radius: 48px; width: 100%; object-fit: cover; }

/* ==========================================================================
   Avis clients
   ========================================================================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1000px) {
    .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
.reviews-nav { display: none; }
@media (max-width: 640px) {
    .reviews-carousel { position: relative; }
    .reviews-grid {
        display: flex;
        gap: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        max-width: 100%;
        margin: 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .reviews-grid::-webkit-scrollbar { display: none; }
    .reviews-grid .review-card { flex: 0 0 100%; scroll-snap-align: start; }
    .reviews-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        margin-top: 24px;
    }
    .reviews-nav__btn {
        width: 48px;
        height: 48px;
        border-radius: 5px;
        border: 1.5px solid var(--color-orange);
        background: var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .reviews-nav__btn img { width: 20px; height: 20px; }
    .reviews-nav__btn--prev img { transform: scaleX(-1); }
    .reviews-nav__btn:disabled { opacity: 0.35; }
    .reviews-nav__counter { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--color-ink); min-width: 40px; text-align: center; }
}
.review-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-card);
}
.review-card__tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-orange);
    margin-bottom: 16px;
    cursor: pointer;
}
.review-card__tag img { width: 22px; height: 22px; }
.review-card__stars { color: var(--color-orange); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card__text {
    font-size: 16px;
    color: var(--color-body);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-card__text--expanded { display: block; -webkit-line-clamp: unset; overflow: visible; }
.review-card__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--color-border-2);
}
.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-orange-light);
    border: 1px solid var(--color-border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.review-card__avatar img { width: 22px; height: 22px; }
.review-card__avatar--photo img { width: 100%; height: 100%; object-fit: cover; }
.review-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--color-ink); }
.review-card__date { font-size: 13px; color: var(--color-placeholder); }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}
@media (max-width: 1000px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-media img { border-radius: var(--radius-md); width: 100%; height: 420px; object-fit: cover; }
@media (max-width: 640px) {
    .contact-media__caption--esprit {
        position: static !important;
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-top: 16px !important;
    }
}
.contact-media__caption {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}
.contact-media__caption .icon-badge { background: var(--color-orange-light); }
.contact-media__caption strong { display: block; font-family: var(--font-heading); color: var(--color-ink); }
.contact-media__caption span { font-size: 15px; color: var(--color-body-2); }

.contact-panel {
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px;
}
@media (max-width: 640px) {
    .contact-panel { background: none; border: none; padding: 0; }
}

.icon-badge {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--color-orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.icon-badge img { width: 24px; height: 24px; }

.contact-panel__list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.contact-panel__item { display: flex; align-items: center; gap: 20px; }
.contact-panel__item strong { font-family: var(--font-heading); font-size: 21px; color: var(--color-ink); font-weight: 700; }
.contact-panel__item span { font-size: 19px; color: #3f4a5c; }

.contact-panel hr { border: none; border-top: 1px solid var(--color-border-2); margin: 24px 0; }

.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 19px;
    color: var(--color-ink);
    margin-bottom: 10px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 17px 21px;
    border: 1px solid var(--color-border-2);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-ink);
    background: var(--color-white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--color-placeholder); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--color-orange); }

.form-message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}
.form-message--success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #16a34a; }
.form-message--error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #dc2626; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: #000000;
    color: var(--color-white);
    padding: 72px 0 32px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
@media (max-width: 900px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
.footer__logo img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; }
.footer__col h4 {
    color: var(--color-white);
    font-size: 22px;
    margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 14px; }
.footer__col a, .footer__col li { color: rgba(255,255,255,0.85); font-size: 16px; }
.footer__col a:hover { color: var(--color-orange); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer__contact-item img { width: 20px; height: 20px; margin-top: 3px; }
.footer__social { display: flex; align-items: center; gap: 10px; }
.footer__social img { width: 20px; height: 20px; }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.18);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
}
.footer__bottom-links { display: flex; align-items: center; gap: 14px; }
.footer__bottom-links span { color: rgba(255,255,255,0.25); }
@media (max-width: 640px) {
    .footer__bottom { flex-direction: column-reverse; align-items: flex-start; gap: 8px; }
    .footer__bottom-links { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer__bottom-links span { display: none; }
}

/* ==========================================================================
   Pages secondaires (légal, informations, erreurs de formulaire)
   ========================================================================== */

.page-hero {
    background: var(--color-cream);
    padding: 10px 0;
    text-align: center;
}
.page-hero h1 { font-size: 54px; }
.page-hero p { margin-top: 12px; font-size: 17px; color: var(--color-body); }

.page-hero--left {
    text-align: left;
}
.page-hero--left .container { max-width: 1440px; padding-left: 62px; padding-right: 62px; }
.page-hero--left h1 { font-size: 60px; line-height: 1.15; }
.page-hero--left p { font-size: 22px; max-width: 620px; }
@media (max-width: 960px) {
    .page-hero--left .container { padding-left: 20px; padding-right: 20px; }
}

/* Hero : texte à gauche aligné sur le logo, décor ancré en bas de la section (position absolute) */
.page-hero--split {
    background: linear-gradient(184deg, #fbede6 8%, #fdf3ee 40%, #fffcfa 72%, #ffffff 96%);
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}
.page-hero--split .container { position: relative; min-height: 480px; }
.page-hero__text { max-width: 620px; padding-bottom: 48px; }
.page-hero__decor-flex {
    position: absolute;
    bottom: -140px;
    right: -120px;
    width: 560px;
    height: auto;
    pointer-events: none;
}
@media (max-width: 900px) { .page-hero__decor-flex { width: 180px; } }
@media (max-width: 640px) {
    .page-hero--split .container { min-height: auto; }
    .page-hero__text { max-width: 100%; padding-bottom: 0; }
    .page-hero__decor-flex { display: none; }
}

.page-hero__flex-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.page-hero__finance-media {
    position: relative;
    width: 350px;
    height: 377px;
    border-radius: 68px;
    overflow: hidden;
    flex-shrink: 0;
    background: radial-gradient(circle at 60% 40%, rgba(255,180,140,0.35), rgba(255,180,140,0) 70%);
}
.page-hero__finance-media img {
    position: absolute;
    left: -18%;
    top: -6%;
    width: 125%;
    height: 116%;
    max-width: none;
    object-fit: cover;
}
@media (max-width: 900px) {
    .page-hero__finance-media { width: 260px; height: 280px; border-radius: 48px; }
}
@media (max-width: 640px) {
    .page-hero__flex-grid { flex-direction: column; align-items: flex-start; }
    .page-hero__finance-media { margin-top: 32px; width: 100%; max-width: 320px; height: 300px; }
}

.dossier-section { position: relative; overflow: hidden; }
.dossier-section__wave {
    position: absolute;
    bottom: 20px;
    left: 4%;
    width: 260px;
    height: auto;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}
.dossier-section .container { position: relative; z-index: 1; }
@media (max-width: 900px) { .dossier-section__wave { display: none; } }

/* Carte avec décoration qui dépasse derrière (ex: "Documents à fournir") */
.feature-card-wrap { position: relative; }
.feature-card-wrap__decor {
    position: absolute;
    top: 62%;
    transform: translateY(-50%);
    right: -80px;
    width: 320px;
    height: 380px;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
    object-position: top;
}
.feature-card-wrap .feature-card { position: relative; z-index: 1; }
@media (max-width: 640px) { .feature-card-wrap__decor { display: none; } }

.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { font-size: 28px; margin: 40px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; font-size: 16px; color: var(--color-body); }
.prose ul { margin: 0 0 16px 20px; list-style: disc; }
.prose li { margin-bottom: 8px; color: var(--color-body); }

/* Table de prix détaillée (page Formules) */
.price-table {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.price-table__head, .price-table__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
}
.price-table__head {
    background: var(--color-orange-light);
    font-family: var(--font-heading);
    font-weight: 700;
}
.price-table__row { border-top: 1px solid rgba(255,255,255,0.6); background: var(--color-white); }
.price-table__row:nth-child(even) { background: #fffdfb; }
.price-table__label { display: flex; align-items: center; gap: 14px; color: var(--color-body); }
.price-table__label img { width: 22px; height: 22px; }
@media (max-width: 640px) {
    .price-table__head, .price-table__row { padding: 18px 20px; }
    .price-table__label img { display: none; }
}
.price-table__price { font-family: var(--font-heading); font-weight: 700; color: var(--color-ink); white-space: nowrap; }

/* Documents grid (page Documents) */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 900px) { .docs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .docs-grid { grid-template-columns: 1fr; } }
.doc-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
}
.doc-card img { width: 56px; height: 56px; margin: 0 auto 16px; }
.doc-card h3 { font-size: 17px; margin-bottom: 6px; }
.doc-card p { font-size: 14px; color: var(--color-muted); }

/* ==========================================================================
   Hero (page d'accueil)
   ========================================================================== */

.hero-real {
    background: linear-gradient(-90deg, #ffdcc8 4%, #ffffff 100%);
    padding: 64px 0 80px;
    overflow: hidden;
}
.hero-real__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 16px;
}
.hero-real__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 11px;
}
.hero-real__eyebrow .brand { color: var(--color-orange); }
.hero-real__eyebrow .place { color: #000; }
.hero-real__eyebrow--stacked { flex-direction: column; align-items: flex-start; gap: 10px; }
.hero-real__eyebrow-dash { width: 47px; height: 3px; border-radius: var(--radius-full); background: var(--color-orange); flex-shrink: 0; }
.hero-real__title .dot { color: var(--color-orange); }
.hero-real__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.25;
    color: #16181d;
}
.hero-real__title .accent {
    display: block;
    color: var(--color-orange);
    font-weight: 600;
    font-size: 68px;
    line-height: 1.03;
    margin-top: 6px;
}
@media (max-width: 640px) {
    .hero-real__title { font-size: 26px; line-height: 1.3; }
    .hero-real__title .accent { font-size: 30px; margin-top: 2px; }
    .hero-real__text { font-size: 16px; margin: 16px 0 24px; }
    .hero-real__list { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-real__list li:nth-child(1) { order: 2; }
    .hero-real__list li:nth-child(2) { order: 1; }
}
.hero-real__text {
    font-size: 18px;
    color: #000;
    max-width: 522px;
    margin: 24px 0 32px;
}
.hero-real__actions { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.hero-real__actions .btn--outline { border-color: #dce0e6; }
@media (max-width: 640px) {
    .hero-real__actions { flex-direction: column; align-items: center; }
    .hero-real__actions .btn { width: 100%; max-width: 320px; white-space: normal; }
}
.hero-real__list { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-real__list li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.hero-real__list .dot-check {
    width: 22px; height: 22px; border-radius: 50%;
    border: 1.5px solid var(--color-orange);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-real__list .dot-check img { width: 12px; height: 12px; }
.hero-real__media { position: relative; text-align: center; overflow: visible; }
.hero-real__media img { max-width: 128%; width: 128%; height: auto; margin-left: -14%; }

/* ==========================================================================
   Timeline (3 étapes)
   ========================================================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }
.step-item { position: relative; }
.step-item__rail {
    position: relative;
    height: 30px;
    margin-bottom: 16px;
}
.step-item__rail::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 2px;
    background: rgba(91,107,132,0.2);
}
.step-item__dot {
    position: relative;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--color-orange-light);
    display: flex; align-items: center; justify-content: center;
}
.step-item__dot::after {
    content: '';
    width: 13px; height: 13px;
    border-radius: 50%;
    background: var(--color-orange);
}
.step-item__num-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.step-item__num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 48px;
    color: rgba(91,107,132,0.25);
}
.step-item__icon { width: 40px; height: 40px; opacity: 0.7; }
.step-item__connector {
    position: absolute;
    left: -26px;
    top: 142px;
    width: 24px;
    height: 24px;
    opacity: 1;
}
@media (max-width: 900px) { .step-item__connector { display: none; } }
@media (max-width: 900px) {
    .steps-grid { gap: 0; }
    .step-item { padding-left: 44px; padding-bottom: 32px; }
    .step-item:last-child { padding-bottom: 0; }
    .step-item__rail { position: absolute; left: 0; top: 0; height: 100%; width: 30px; margin-bottom: 0; }
    .step-item__rail::before { left: 14px; right: auto; top: 30px; bottom: -32px; height: auto; width: 2px; }
    .step-item:last-child .step-item__rail::before { display: none; }
    .step-item__rule { display: none; }
}
.step-item__rule { width: 56px; height: 3px; background: var(--color-orange); border-radius: 2px; margin: 16px 0; }
.step-item__title { font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: #111113; margin-bottom: 10px; }
.step-item__text { font-size: 17px; color: #5b6b84; }

.steps-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(253,234,223,0.7);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-top: 40px;
}
.steps-callout__text { display: flex; align-items: center; gap: 16px; font-size: 18px; color: #5b6b84; }
.steps-callout__text img { width: 28px; height: 28px; flex-shrink: 0; }
.link-underline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-orange);
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid var(--color-orange);
    padding-bottom: 4px;
    white-space: nowrap;
}
.link-underline img { width: 20px; height: 20px; }

/* ==========================================================================
   Tableau des paiements possibles (financement)
   ========================================================================== */

.payment-table {
    background: var(--color-white);
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(17,17,19,0.15);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}
.payment-table__head, .payment-table__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.payment-table__head { background: rgba(253,234,223,0.7); }
.payment-table__head div, .payment-table__row div {
    padding: 24px 32px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.payment-table__row div:first-child, .payment-table__head div:first-child { border-right: 1px solid rgba(0,0,0,0.05); }
.payment-table__head div { font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: #111113; }
.payment-table__row div:first-child { font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: #111113; }
.payment-table__pill {
    display: inline-flex; align-items: center; gap: 10px;
    color: #5b6b84; font-size: 17px;
}
.payment-table__pill .dot {
    width: 30px; height: 30px; border-radius: 50%;
    background: #fdeadf; display: flex; align-items: center; justify-content: center;
}
.payment-table__pill .dot img { width: 16px; height: 16px; }
.payment-table__note {
    text-align: center;
    padding: 16px;
    font-size: 15px;
    color: #5b6b84;
}

@media (max-width: 640px) {
    .payment-table {
        border-radius: 18px;
        box-shadow: var(--shadow-card);
    }
    .payment-table__head { display: none; }
    .payment-table__row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 18px;
    }
    .payment-table__row:not(:first-child) {
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    .payment-table__row div {
        padding: 0;
        border: none;
    }
    .payment-table__note {
        border-top: 1px solid rgba(0,0,0,0.05);
        padding: 20px 18px;
    }
}

/* ==========================================================================
   Cartes "solutions à explorer" (financement)
   ========================================================================== */

.explore-section { position: relative; }
.explore-section__decor {
    position: absolute;
    top: -120px;
    right: -90px;
    width: 460px;
    height: auto;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
    transform: rotate(180deg);
}
.explore-section .container { position: relative; z-index: 1; }
@media (max-width: 900px) { .explore-section__decor { width: 300px; top: -80px; right: -60px; } }
@media (max-width: 640px) { .explore-section__decor { width: 190px; top: -50px; right: -40px; } }

.explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 900px) { .explore-grid { grid-template-columns: 1fr; } }
.explore-card {
    background: rgba(255,255,255,0.45);
    border: 1px solid rgba(242,97,12,0.15);
    border-radius: 22px;
    padding: 40px;
}
.explore-card__head { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.explore-card__icon {
    width: 74px; height: 74px; border-radius: 50%;
    background: #fdeadf;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.explore-card__icon img { width: 36px; height: 36px; }
.explore-card__tag { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--color-orange-dark); margin-bottom: 8px; }
@media (max-width: 640px) {
    .explore-card { padding: 24px; }
    .explore-card__title { font-size: 22px; }
}
.explore-card__title { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: #111113; }
.explore-card__text { font-size: 18px; color: #5b6b84; margin-bottom: 24px; }
.explore-card .link-underline { margin-bottom: 20px; }
.btn--outline-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-orange);
    font-weight: 600;
    font-size: 16px;
    border: 1.5px solid var(--color-orange);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    margin-bottom: 20px;
    transition: background 0.15s ease, color 0.15s ease;
}
.btn--outline-orange:hover { background: var(--color-orange); color: var(--color-white); }
.btn--outline-orange:hover img { filter: brightness(0) invert(1); }
.explore-card__note {
    border-top: 1px solid rgba(91,107,132,0.15);
    padding-top: 16px;
    font-size: 15px;
    color: #5b6b84;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.explore-card__note img { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   Bannière CTA finale (financement)
   ========================================================================== */

.cta-banner {
    background: #fff7f5;
    border: 3px solid rgba(255,75,11,0.15);
    border-radius: var(--radius-lg);
    padding: 92px 48px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta-banner > div { position: relative; z-index: 1; min-width: 0; }
.cta-banner__decor-wave {
    position: absolute;
    left: 0;
    bottom: -98px;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: -1;
}
@media (max-width: 1100px) { .cta-banner__decor-wave { bottom: -70px; } }
@media (max-width: 900px) { .cta-banner__decor-wave { bottom: -50px; opacity: 0.7; } }
.cta-banner__decor-chat {
    position: absolute;
    top: 20px;
    right: 6%;
    width: 56px;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 900px) {
    .cta-banner__decor-chat { display: none; }
}
.cta-banner__decor-arc {
    position: absolute;
    top: 140px;
    right: 3.5%;
    width: 180px;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 1100px) { .cta-banner__decor-arc { width: 150px; top: 110px; } }
@media (max-width: 900px) { .cta-banner__decor-arc { display: none; } }
@media (max-width: 640px) { .cta-banner__decor-wave { bottom: -30px; opacity: 0.55; } }
@media (max-width: 900px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner__tag { font-family: var(--font-body); font-weight: 800; font-size: 13px; color: var(--color-orange-dark); margin-bottom: 12px; }
.cta-banner__notes { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 16px; }
.cta-banner__notes .cta-banner__note { margin: 0; }
@media (max-width: 640px) { .cta-banner__notes { flex-direction: column; gap: 12px; } }
.cta-banner__title { font-size: 42px; margin-bottom: 20px; }
.cta-banner__text { font-size: 18px; color: #5b6577; margin-bottom: 16px; }
.cta-banner__note { display: flex; align-items: center; gap: 10px; font-size: 16px; color: #5b6577; }
.cta-banner__note img { width: 18px; height: 18px; }
.cta-banner__phone { position: relative; text-align: center; border-left: 1px solid rgba(244,81,30,0.15); padding-left: 40px; }
@media (max-width: 900px) { .cta-banner__phone { border-left: none; padding-left: 0; border-top: 1px solid rgba(244,81,30,0.15); padding-top: 32px; } }
.cta-banner__phone .btn { width: 100%; font-size: 22px; padding: 20px; margin-bottom: 16px; white-space: normal; text-align: center; }
@media (max-width: 480px) {
    .cta-banner__phone .btn { font-size: 17px; padding: 16px; }
}
.cta-banner__phone-icon { width: 38px; height: 38px; margin: 0 auto 16px; }
.cta-banner__phone--left { text-align: left; }
.cta-banner__phone--left .cta-banner__phone-icon { margin: 0 0 16px; }
.cta-banner__phone-row { display: flex; align-items: center; justify-content: center; gap: 16px; }
.cta-banner__phone-row .icon-badge { background: var(--color-white); flex-shrink: 0; }
.cta-banner__phone--left .cta-banner__phone-row { justify-content: flex-start; }
.cta-banner__phone strong { display: block; font-family: var(--font-heading); font-size: 26px; color: #111318; margin-bottom: 6px; }
.cta-banner__phone span { font-size: 16px; color: #5b6577; }

/* ==========================================================================
   Espace élève — cartes ressources + FAQ
   ========================================================================== */

.resource-section { position: relative; overflow: hidden; }
.resource-section__decor {
    position: absolute;
    top: -160px;
    right: 0;
    width: 480px;
    height: auto;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    transform: rotate(180deg);
}
.resource-section .container { position: relative; z-index: 1; }
@media (max-width: 900px) { .resource-section__decor { width: 400px; } }
@media (max-width: 640px) { .resource-section__decor { width: 190px; } }
.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 1000px) { .resource-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.resource-card {
    background: var(--color-white);
    border: 1px solid #f1edea;
    border-radius: 20px;
    box-shadow: 0 18px 20px rgba(60,45,35,0.12);
    padding: 32px;
}
.resource-card__top { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 24px; }
.resource-card__icon {
    width: 68px; height: 68px; border-radius: 50%;
    background: var(--color-orange-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.resource-card__icon img { width: 30px; height: 30px; }
.resource-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 21px; color: #111114; margin-bottom: 8px; }
.resource-card__text { font-size: 16px; color: #7b879e; }
.resource-card .link-underline { border-bottom: none; font-size: 17px; display: flex; justify-content: center; text-align: center; }

.resource-banner {
    background: var(--color-orange-light);
    border-radius: 20px;
    padding: 24px 32px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.resource-banner__text { display: flex; align-items: center; gap: 20px; font-size: 17px; color: #7b879e; }
.resource-banner__text .icon-badge { background: var(--color-orange); }
.resource-banner__text .icon-badge img { filter: brightness(0) invert(1); }
.resource-banner .link-underline { border-bottom: none; padding-bottom: 0; }

.faq-section { background: #fef6f2; margin-top: 48px; }
.faq-grid { display: grid; grid-template-columns: 0.65fr 1fr; gap: 24px; margin-top: 48px; align-items: stretch; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-help-card {
    background: #fdeee7;
    border: 1px solid #fbe1d5;
    border-radius: 20px;
    padding: 40px;
}
.faq-help-card__icon {
    width: 74px; height: 74px; border-radius: 50%;
    background: #fde3d6;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
}
.faq-help-card__icon img { width: 36px; height: 36px; }
.faq-help-card h3 { font-size: 32px; margin-bottom: 16px; }
.faq-help-card p { color: #7b879e; font-size: 17px; margin-bottom: 24px; }
.faq-help-card .btn { margin-bottom: 16px; }
.faq-help-card__note { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #7b879e; }
.faq-help-card__note img { width: 18px; height: 18px; }

.faq-list { background: var(--color-white); border: 1px solid #f3e6df; border-radius: 20px; padding: 0 28px; }
.faq-item { border-bottom: 1px solid #f6ece6; padding: 22px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-family: var(--font-heading); font-weight: 600; font-size: 19px; color: #0d0d0d;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary img { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] summary img { transform: rotate(180deg); }
.faq-item p { margin-top: 14px; font-size: 16px; color: #7b879e; }

.faq-phone-note { text-align: center; margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 12px; font-size: 17px; color: #7b879e; }
.faq-phone-note img { width: 20px; height: 20px; }
.faq-phone-note strong { color: var(--color-orange); }

@media (max-width: 900px) {
    .faq-help-card { order: 2; }
    .faq-list { order: 1; }
}
@media (max-width: 640px) {
    .faq-phone-note { flex-wrap: wrap; row-gap: 6px; }
    .resource-section__decor { top: -40px; }
    .resource-banner { flex-direction: column; align-items: flex-start; }
    .resource-banner .link-underline { margin-left: 72px; }

    .hero-real--espace { background: #fcf8f5; }
    .resource-section { background: #fbefe8; }
    section.progress-section { background: #fcf8f5; }
    .faq-section { background: var(--color-white); }
    .cta-banner__decor-corner { display: none; }
}

/* ==========================================================================
   Bibliothèque de documents (Label qualité)
   ========================================================================== */

.doc-category-row {
    display: flex;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    align-items: flex-start;
}
.doc-category-row:first-child { padding-top: 0; }
.doc-category-row:last-child { border-bottom: none; padding-bottom: 0; }
@media (max-width: 900px) { .doc-category-row { flex-direction: column; gap: 12px; } }

.doc-category-row__label { width: 280px; flex-shrink: 0; }
.doc-category__title { font-family: var(--font-heading); font-weight: 700; font-size: 21px; color: #0f1115; }
.doc-category__count { font-size: 14px; color: #6b7480; margin-top: 4px; }

.doc-category-row__list { flex: 1; min-width: 0; }
.doc-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.doc-list-item:first-child { padding-top: 0; }
.doc-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.doc-list-item img.doc-list-item__icon { width: 24px; height: 24px; flex-shrink: 0; }
.doc-list-item__body { display: flex; align-items: center; gap: 16px; flex: 1; }
.doc-list-item__name { font-size: 15px; color: #111827; flex: 1; }
.doc-list-item__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-orange-dark); white-space: nowrap; flex-shrink: 0; }
.doc-list-item__link img { width: 13px; height: 13px; }
.labelq-hero__cta-icon--mobile { display: none; }
@media (max-width: 640px) {
    .doc-list-item { align-items: flex-start; }
    .doc-list-item__body { flex-direction: column; align-items: flex-start; gap: 8px; }

    .labelq-hero__media { display: none; }
    .page-hero--left .labelq-hero__desc { font-size: 20px; }
    .labelq-hero__note { display: none !important; }
    .labelq-hero__cta { background: none; color: var(--color-orange); padding: 0; }
    .labelq-hero__cta-icon--desktop { display: none; }
    .labelq-hero__cta-icon--mobile { display: inline-block; }

    .cta-banner.labelq-cta-banner { border: none; background: #fdf6f1; }
    .labelq-cta-banner .cta-banner__decor-chat { display: block; top: 16px; right: 20px; width: 30px; }
}

/* ==========================================================================
   Page contact — carte agence + conseils + CTA
   ========================================================================== */

.map-section { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: start; margin-top: 48px; }
@media (max-width: 900px) { .map-section { grid-template-columns: 1fr; } }
.map-section__image { border-radius: 18px; overflow: hidden; border: 1px solid var(--color-border); box-shadow: 0 18px 50px rgba(15,23,42,0.08); }
.map-section__image img { width: 100%; height: auto; display: block; }
.map-card__title { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-weight: 600; font-size: 26px; margin-bottom: 16px; }
.map-card__title img { width: 26px; height: 26px; }
.map-card__address { font-size: 21px; color: var(--color-ink); margin-bottom: 24px; }
.map-card hr { border: none; border-top: 1px solid #ece2dc; margin: 24px 0; }
.map-card__hours { display: flex; justify-content: space-between; font-size: 19px; color: var(--color-body-2); padding: 6px 0; }
.map-card__note { display: flex; align-items: center; gap: 10px; font-size: 18px; color: var(--color-body-2); margin-top: 8px; }
.map-card__note .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--color-orange); flex-shrink: 0; }
.map-card .btn--outline { width: 100%; margin-top: 24px; justify-content: center; background: none; border-color: var(--color-orange); color: var(--color-orange); }
.map-card .btn--outline:hover { background: var(--color-orange); color: var(--color-white); }

.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; }
@media (max-width: 900px) { .tips-grid { grid-template-columns: 1fr; gap: 32px; } }
.tip-item { }
.tip-item:not(:first-child) { border-left: 1px solid #ece5df; }
@media (max-width: 900px) { .tip-item:not(:first-child) { border-left: none; padding: 0; } }
.tip-item img.tip-item__icon { width: 32px; height: 32px; margin-bottom: 24px; }
.tip-item__title { font-family: var(--font-heading); font-weight: 800; font-size: 22px; margin-bottom: 12px; }
.tip-item__text { font-size: 16px; color: var(--color-body-2); margin-bottom: 20px; }

.tips-phone-banner {
    display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
    background: var(--color-orange-light);
    border-radius: 20px;
    padding: 24px 32px;
    margin-top: 40px;
}
.tips-phone-banner img { width: 32px; height: 32px; margin-right: 8px; }
.tips-phone-banner__body { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.tips-phone-banner p { font-size: 17px; color: var(--color-body-2); }
.tips-phone-banner strong { color: var(--color-ink); }
.tips-phone-banner .divider { width: 1px; height: 32px; background: #f6cdb4; }
.tips-phone-banner .link-underline { border-bottom: none; color: #3a4776; }

@media (max-width: 640px) {
    .contact-write-section { background: #fbf3ee; }
    .contact-form-rich__sidebar .btn--outline { background: var(--color-white); }

    .tip-item { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
    .tip-item img.tip-item__icon { margin-bottom: 0; margin-top: 2px; flex-shrink: 0; }
    .tip-item__body { flex: 1; min-width: 0; }

    .tip-item__note { flex-direction: row-reverse; justify-content: flex-end; }

    .tips-phone-banner { flex-wrap: nowrap; align-items: flex-start; justify-content: flex-start; text-align: left; gap: 16px; }
    .tips-phone-banner img { margin-right: 0; margin-top: 2px; flex-shrink: 0; }
    .tips-phone-banner__body { flex-direction: column; align-items: flex-start; gap: 12px; }
    .tips-phone-banner .divider { display: none; }
    .tips-phone-banner .tips-phone-banner__number { display: block; margin-top: 6px; color: var(--color-orange); font-size: 19px; }
    .tips-phone-banner__body .link-underline {
        background: var(--color-white);
        border-radius: 9px;
        padding: 12px 20px;
        border-bottom: none;
        width: fit-content;
    }

    .cta-banner__phone--left a.link-underline[href^="mailto"] { color: #17284a; }
}

/* ==========================================================================
   Formulaire de contact détaillé (page Contact)
   ========================================================================== */

.contact-form-rich { display: grid; grid-template-columns: 1.35fr 1fr; gap: 32px; align-items: stretch; margin-top: 48px; }
.contact-form-rich__panel, .contact-form-rich__sidebar { height: 100%; }
@media (max-width: 900px) { .contact-form-rich { grid-template-columns: 1fr; } }

.contact-form-rich__panel {
    background: var(--color-white);
    border: 1px solid #f2e8e2;
    border-radius: 20px;
    box-shadow: 0 18px 25px rgba(15,23,42,0.05);
    padding: 32px;
}
.contact-form-rich__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 560px) { .contact-form-rich__row { grid-template-columns: 1fr; } }

.form-group select {
    width: 100%;
    padding: 17px 21px;
    border: 1px solid var(--color-border-2);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-ink);
    background: var(--color-white);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.contact-form__privacy { font-size: 14px; margin-bottom: 16px; }
.contact-form__privacy a { color: var(--color-body-2); text-decoration: underline; }
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.form-checkbox input { width: 22px; height: 22px; accent-color: var(--color-orange); flex-shrink: 0; margin-top: 2px; }
.form-checkbox label { font-size: 16px; color: var(--color-body-2); }

.contact-form-rich__submit-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.contact-form-rich__submit-row .btn { flex-shrink: 0; }
.contact-form-rich__confidential { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--color-body-2); }
.contact-form-rich__confidential img { width: 18px; height: 18px; }

.contact-form-rich__sidebar {
    background: #fdefe7;
    border: 1px solid #fae2d6;
    border-radius: 20px;
    padding: 32px;
}
.contact-form-rich__sidebar-tag { font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--color-orange-dark); margin-bottom: 12px; }
.contact-form-rich__sidebar h3 { font-size: 28px; margin-bottom: 20px; }
.contact-form-rich__phone-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-form-rich__phone-row .icon-badge { width: 54px; height: 54px; background: #fbe1d4; }
.contact-form-rich__sidebar .btn--outline { background: none; border-color: var(--color-orange); color: var(--color-orange); }
.contact-form-rich__sidebar .btn--outline:hover { background: var(--color-orange); color: var(--color-white); }
.contact-form-rich__phone-row strong { display: block; font-family: var(--font-heading); font-size: 22px; }
.contact-form-rich__phone-row span { font-size: 15px; color: var(--color-body-2); }
.contact-form-rich__sidebar hr { border: none; border-top: 1px solid #f0ded4; margin: 24px 0; }
.contact-form-rich__sidebar h4 { font-size: 22px; margin-bottom: 16px; }
.contact-form-rich__sidebar ul { display: flex; flex-direction: column; gap: 12px; }
.contact-form-rich__sidebar li { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--color-body-2); }
.contact-form-rich__sidebar li img { width: 20px; height: 20px; }

.contact-form-rich__response-note { text-align: center; margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 15px; color: var(--color-body-2); }
.contact-form-rich__response-note img { width: 20px; height: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
    .page-hero--left h1 { font-size: 30px; line-height: 1.25; }
    .page-hero--left p { font-size: 17px; }
    .navbar__inner { padding: 12px 20px; }
    .navbar__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        background: var(--color-white);
        border-bottom: 1px solid var(--color-border);
        padding: 12px 20px 20px;
    }
    .navbar__links--open { display: flex; }
    .navbar__links a { padding: 12px 0; }
    .navbar__links a.active::after { display: none; }
    .navbar__dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 12px; }
    .navbar__burger { display: inline-flex; }
    .navbar__mobile-actions { display: flex; }
    .navbar__cta { display: none; }

    .hero__grid { grid-template-columns: 1fr; }
    .hero__title { font-size: 40px; }
    .hero-real__grid { grid-template-columns: 1fr; }
    .hero-real__title { font-size: 38px; }
    .cta-banner { padding: 28px; }
    .cta-banner__title { font-size: 30px; }
    .finance-banner { grid-template-columns: 1fr; }
    .finance-banner__title { font-size: 38px; }
    .finance-banner__media { order: -1; }
    section { padding: 64px 0; }
    body.page-formules section { padding: 0; }
    .section-title { font-size: 28px; }
    .footer__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Accueil — Nos engagements
   ========================================================================== */

.engagements-section { background: #fdf0e8; display: none; }
@media (max-width: 1000px) {
    .engagements-section { display: block; }
}
.engagements-list { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.engagement-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 1px 1px rgba(16, 24, 40, 0.04);
    padding: 28px 32px;
}
.icon-badge--engagement { background: #fff1e7; }
.engagement-item__title { font-family: var(--font-heading); font-weight: 600; font-size: 19px; color: #101828; margin-bottom: 8px; }
.engagement-item__text { font-size: 16px; color: #5b6472; margin-bottom: 12px; }

/* ==========================================================================
   Accueil — gap fixes (avis CTA, hero shadow)
   ========================================================================== */

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}
.reviews-cta__caption {
    margin-top: 20px;
    font-size: 15px;
    color: var(--color-muted);
}

.hero-real__media img.hero-real__shadow {
    position: absolute;
    left: 6%;
    bottom: -2%;
    width: 62%;
    max-width: 62%;
    height: auto;
    margin-left: 0;
    transform: rotate(-11.5deg);
    z-index: -1;
    pointer-events: none;
}

/* ==========================================================================
   Formules — gap fixes (price table header color)
   ========================================================================== */

.price-table__head {
    background: rgba(255, 75, 11, 0.2);
}

/* ==========================================================================
   Espace élève — hero dashboard illustration
   ========================================================================== */

.espace-hero-media { position: relative; text-align: center; }
.espace-hero-media img { max-width: 108%; width: 108%; height: auto; margin-left: 2%; filter: drop-shadow(0 18px 22px rgba(0,0,0,0.12)); }
@media (max-width: 1100px) { .espace-hero-media img { max-width: 100%; width: 100%; margin-left: 0; } }

/* ==========================================================================
   Espace élève — Votre progression
   ========================================================================== */

.progress-section { background: none; }
.progress-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 40px;
}
@media (max-width: 900px) { .progress-layout { grid-template-columns: 1fr; } }

.icon-badge--orange { background: var(--color-orange); border: 10px solid #FDEADF; }
.icon-badge--orange img { filter: brightness(0) invert(1); }

.progress-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-lg);
    padding: 32px;
}
.progress-card__head { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.progress-card__title { font-family: var(--font-heading); font-weight: 800; font-size: 22px; color: var(--color-ink-2); }
.progress-card__subtitle { font-size: 16px; color: var(--color-body-2); margin-top: 4px; }

.progress-rows { display: flex; flex-direction: column; }
.progress-row { padding: 20px 0; border-top: 1px solid var(--color-border-2); }
.progress-row:first-child { border-top: none; padding-top: 0; }
.progress-row__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.progress-row__title { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--color-ink-2); margin-right: auto; }
.progress-row__status { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--color-orange); text-align: end; }
.progress-row__status i { width: 9px; height: 9px; border-radius: 50%; background: var(--color-orange); display: block; }
.progress-row__status--pending { color: #f9a882; }
.progress-row__status--pending i { background: #f9a882; }
.progress-row__status--next { color: var(--color-muted); }
.progress-row__status--next i { background: #aeb6c4; }
.progress-row__value { margin-left: auto; font-family: var(--font-heading); font-weight: 800; font-size: 20px; color: var(--color-orange); }
@media (max-width: 640px) {
    .progress-row__head { flex-wrap: wrap; row-gap: 6px; }
    .progress-row__title { flex: 1 0 100%; margin-right: 0; }
}
.progress-bar { height: 10px; border-radius: var(--radius-full); background: var(--color-border-2); overflow: hidden; }
.progress-bar span { display: block; height: 100%; border-radius: var(--radius-full); background: var(--color-orange); }

.progress-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 16px 24px;
    border: 2px solid var(--color-orange);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-orange);
}
.progress-card__cta img { width: 18px; height: 18px; }

.next-step-card {
    background: var(--color-orange-light);
    border: 1px solid #f7dfd2;
    border-radius: var(--radius-lg);
    padding: 32px;
}
.next-step-card__heading { font-family: var(--font-heading); font-weight: 800; font-size: 24px; color: var(--color-ink-2); margin-bottom: 24px; }
.next-step-card__row { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 8px; }
.next-step-card__num {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #fadfd1;
    color: var(--color-orange);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    display: flex; align-items: center; justify-content: center;
}
.next-step-card__title { font-family: var(--font-heading); font-weight: 700; font-size: 19px; color: var(--color-ink-2); margin-bottom: 8px; }
.next-step-card__text { font-size: 16px; color: var(--color-body-2); }
.next-step-card__path { width: 100%; height: auto; margin: 12px 0; }
.next-step-card__note { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--color-body-2); }
.next-step-card__note img { width: 22px; height: 22px; flex-shrink: 0; }

.progress-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--color-orange-light);
    border-radius: var(--radius-lg);
    padding: 20px 32px;
    margin-top: 24px;
    font-size: 17px;
    color: var(--color-body-2);
}

/* ==========================================================================
   Espace élève — bannière CTA finale "On continue ?"
   ========================================================================== */

.cta-banner__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; position: relative; z-index: 1; }
.cta-banner__decor-group { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.cta-banner__decor-lines { width: 46px; height: auto; opacity: 1; }
.cta-banner__decor-plane { width: 42px; height: 42px; }
.cta-banner__actions .btn { width: 100%; }
.cta-banner__help-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    color: var(--color-body-2);
    width: 100%;
    text-align: center;
}
.cta-banner__decor-corner {
    position: absolute;
    width: 190px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}
.cta-banner__decor-corner--tl { top: -10px; left: -14px; transform: rotate(180deg); }
.cta-banner__decor-corner--br { bottom: -10px; right: -14px; }

/* ==========================================================================
   Page contact — hero d'intro ("Parlons de votre projet, simplement.")
   ========================================================================== */

.contact-hero { padding-bottom: 72px; }
.contact-hero .page-hero__flex-grid { align-items: flex-start; gap: 56px; }
.contact-hero__decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 1400px;
    max-width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.contact-hero .container { z-index: 1; }

.contact-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.contact-hero__note {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: var(--color-placeholder);
    margin-top: 20px;
}
.contact-hero__note img { width: 21px; height: 21px; flex-shrink: 0; }

.contact-hero__card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-lg);
    padding: 40px 42px;
    width: 100%;
    max-width: 521px;
    flex-shrink: 0;
}
.contact-hero__card h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 26px;
    color: var(--color-ink);
    margin-bottom: 8px;
}
.contact-hero__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--color-border); }
.contact-hero__list li { display: flex; align-items: center; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--color-border); }
.contact-hero__list li > div strong { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 20px; color: var(--color-ink); }
.contact-hero__list li > div span { display: block; font-size: 16px; color: var(--color-placeholder); margin-top: 4px; }
.contact-hero__tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--color-placeholder);
    margin-top: 24px;
}
.contact-hero__tag .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--color-orange); flex-shrink: 0; }

@media (max-width: 900px) {
    .contact-hero .page-hero__flex-grid { flex-direction: column; }
    .contact-hero__card { max-width: 100%; }
}
@media (max-width: 640px) {
    .contact-hero__actions { flex-direction: column; align-items: stretch; }
    .contact-hero__decor {
        position: absolute;
        bottom: 0;
        right: 0;
        top: auto;
        width: 1400px;
        max-width: 100%;
        height: 12%;
        pointer-events: none;
        z-index: 0;
    }
    .contact-hero .eyebrow--no-dash { flex-direction: column; align-items: flex-start; gap: 12px; }
    .contact-hero__list li:nth-child(2) strong { font-size: 14px; word-break: break-word; }
    .contact-hero .eyebrow--no-dash::before {
        content: '';
        width: 34px;
        height: 3px;
        border-radius: var(--radius-full);
        background: var(--color-orange);
        flex-shrink: 0;
    }
}
.cta-banner__help-link img { width: 18px; height: 18px; }
