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

:root {
    --navy: #0f2744;
    --navy-mid: #1a3a5c;
    --gold: #c8922a;
    --gold-light: #e8b94f;
    --cream: #f8f5f0;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-muted: #5a6070;
    --text-light: #8a909e;
    --border: #e0dbd2;
    --radius: 10px;
    --radius-lg: 16px;
    --shadow: 0 2px 16px rgba(15, 39, 68, 0.08);
    --shadow-md: 0 4px 32px rgba(15, 39, 68, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}



/* ── BREADCRUMB ── */
.breadcrumb {
    background: var(--cream);
    padding: 10px 2rem;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--navy);
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 6px;
}

/* ── HERO — style bandeau avec motif de fond ── */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: 4.5rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

/* fond texturé inspiré du bandeau /devenir-courtier */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 30%, rgba(200, 146, 42, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(42, 82, 128, 0.5) 0%, transparent 50%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1a5a9a 100%);
    pointer-events: none;
}

/* ligne décorative gauche comme le bandeau du site */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(200, 146, 42, 0.2);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(200, 146, 42, 0.3);
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 1.1rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 620px;
    margin-bottom: 2rem;
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 13px 26px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 13px 26px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background .2s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.trust-bar {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.trust-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 10px;
    line-height: 1;
}

/* ── LAYOUT ── */
/* .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
} */

section {
    padding: 3.5rem 0;
}

section+section {
    border-top: 1px solid var(--border);
}

h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: .5rem;
    line-height: 1.25;
}

h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: .6rem;
    line-height: 1.4;
}

p {
    margin-bottom: .85rem;
}

p:last-child {
    margin-bottom: 0;
}

.section-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 640px;
}

/* ── INTRO ── */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.intro-block {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── EXPERTISES ── */
.expertises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.expertise-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: box-shadow .2s, border-color .2s;
}

.expertise-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #c5bdb0;
}

.expertise-num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-light);
    font-family: 'DM Serif Display', serif;
}

.expertise-content {
    flex: 1;
}

.expertise-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: .35rem;
}

.expertise-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: .6rem;
}

.expertise-link {
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.expertise-link:hover {
    text-decoration: underline;
}

/* ── HIGHLIGHT ── */
.section-highlight {
    background: var(--cream);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.highlight-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.highlight-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: .6rem;
}

.highlight-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── ZONES ── */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.zone-block {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.zone-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: .75rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--border);
}

.zone-block ul {
    list-style: none;
    padding: 0;
}

.zone-block li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 3px 0;
}

/* ── FAQ ── */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    gap: 1rem;
}

.faq-btn .faq-arrow {
    font-size: 18px;
    color: var(--text-light);
    transition: transform .25s;
    flex-shrink: 0;
}

.faq-btn[aria-expanded="true"] .faq-arrow {
    transform: rotate(45deg);
}

.faq-body {
    display: none;
    padding-bottom: 1.1rem;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
}

.faq-body.open {
    display: block;
}

/* ── CTA FINAL ── */
.cta-final {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem;
    text-align: center;
}

.cta-final h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: .75rem;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.75rem;
    font-size: 15px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.badge {
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.contact-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: .5rem;
}

.contact-val {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.5;
}

.contact-val a {
    color: var(--navy);
    text-decoration: none;
}

.contact-val a:hover {
    text-decoration: underline;
}

/* ── MAILLAGE ── */
.internal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: .75rem;
}

.internal-link-card {
    display: block;
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    transition: border-color .2s, box-shadow .2s;
}

.internal-link-card:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow);
}

.internal-link-card .link-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.internal-link-card .link-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

.internal-link-card .link-arrow {
    font-size: 13px;
    color: var(--gold);
    margin-top: 6px;
}



/* ── MOBILE CTA ── */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--navy);
    padding: 12px 1.25rem;
    gap: 10px;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 11px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.mobile-cta .mc-call {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-cta .mc-devis {
    background: var(--gold);
    color: var(--white);
}

@media (max-width: 640px) {


    .hero {
        padding: 2.5rem 1.25rem 2rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .trust-bar {
        gap: 1rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .expertises-grid {
        grid-template-columns: 1fr;
    }

    .zones-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 72px;
    }

    /* .container {
        padding: 0 1.25rem;
    } */

    section {
        padding: 2.25rem 0;
    }

    .breadcrumb {
        padding: 10px 1.25rem;
    }

    .cta-final {
        padding: 2rem 1.25rem;
    }
}

/* ── RECRUTEMENT RÉSEAU ── */
.recrut-block {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 3rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--gold);
}

.recrut-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(200, 146, 42, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

.recrut-badge {
    display: inline-block;
    background: rgba(200, 146, 42, 0.2);
    border: 1px solid rgba(200, 146, 42, 0.3);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 14px;
}

.recrut-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.recrut-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 460px;
}

.recrut-items {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.recrut-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.recrut-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(200, 146, 42, 0.25);
    border: 1px solid rgba(200, 146, 42, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--gold-light);
    flex-shrink: 0;
}

.recrut-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    position: relative;
    z-index: 1;
    min-width: 200px;
}

.recrut-cta-primary {
    background: var(--gold);
    color: var(--white);
    padding: 13px 24px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    transition: background .2s, transform .15s;
    display: block;
}

.recrut-cta-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.recrut-cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 11px 24px;
    border-radius: 7px;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    display: block;
    transition: background .2s;
}

.recrut-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.recrut-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

/* carte maillage recrutement */
.internal-link-card--recrut {
    border-color: var(--navy);
    background: linear-gradient(135deg, #f0f4f9 0%, var(--white) 100%);
}

.internal-link-card--recrut .link-label {
    color: var(--gold);
}

.internal-link-card--recrut .link-title {
    color: var(--navy);
}

@media (max-width: 700px) {
    .recrut-block {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .recrut-right {
        align-items: stretch;
    }
}

.am-video-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0f2c4c;

    /* 🔥 clé du problème */
    aspect-ratio: 16 / 9;
}

/* iframe pleine */
.am-video-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* overlay plein */
.am-video-overlay {
    position: absolute;
    inset: 0;
    background: #0f2c4c;
    color: white;
    z-index: 2;
    cursor: pointer;
}

/* Bouton play */
.am-play-btn {
    width: 60px;
    height: 60px;
    background: #f4a623;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}

/* Texte vidéo */
.am-video-title {
    font-weight: 600;
    font-size: 16px;
}

.am-video-sub {
    font-size: 13px;
    opacity: 0.7;
}

/* Texte droite */
.am-label {
    color: #c58a2b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.am-heading {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
}

.am-description {
    color: #6c757d;
    font-size: 15px;
}

.am-meta {
    font-size: 13px;
    color: #6c757d;
}
/* Le reste de ton CSS (titres, labels, meta) ne change pas */