:root {
    --navy: #082f68;
    --navy-dark: #05234d;
    --green: #009f58;
    --green-dark: #007f47;
    --gold: #d8a92f;
    --ink: #142033;
    --muted: #5f6f82;
    --line: #dfe6ec;
    --soft: #f5f7f8;
    --white: #ffffff;
    --danger: #8b2525;
    --success: #126b40;
    --shadow: 0 18px 50px rgba(8, 47, 104, 0.1);
    --radius: 22px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: .22em; }
a:hover { color: var(--green-dark); }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.65rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.5rem; }
p { color: var(--muted); }
strong { color: var(--ink); }
:focus-visible { outline: 3px solid rgba(0, 159, 88, .42); outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 850px; }
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--navy);
    color: white;
    transform: translateY(-170%);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(8, 47, 104, .1);
    box-shadow: 0 8px 30px rgba(8, 47, 104, .04);
}
.header-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    width: min(315px, 43vw);
    text-decoration: none;
}
.brand img {
    width: 100%;
    height: 78px;
    object-fit: contain;
    object-position: left center;
}
.desktop-navigation { display: flex; align-items: center; gap: 26px; }
.desktop-navigation > a:not(.button) {
    color: var(--ink);
    text-decoration: none;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
}
.desktop-navigation > a:not(.button):hover,
.desktop-navigation a.is-active { color: var(--green-dark); border-bottom-color: var(--green); }
.mobile-navigation { display: none; position: relative; }
.mobile-navigation summary {
    cursor: pointer;
    list-style: none;
    min-width: 48px;
    min-height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--navy);
    font-weight: 800;
}
.mobile-navigation summary::-webkit-details-marker { display: none; }
.mobile-navigation nav {
    position: absolute;
    right: 0;
    top: 58px;
    min-width: 240px;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
}
.mobile-navigation nav a {
    display: block;
    padding: 12px;
    text-decoration: none;
    border-radius: 9px;
    font-weight: 750;
}
.mobile-navigation nav a:hover,
.mobile-navigation nav a.is-active { background: var(--soft); color: var(--green-dark); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: white;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 159, 88, .22);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); color: white; box-shadow: 0 16px 36px rgba(0, 127, 71, .25); }
.button-small { min-height: 44px; padding-inline: 19px; }
.button-secondary { background: white; color: var(--navy); box-shadow: none; }
.button-secondary:hover { background: var(--soft); color: var(--navy); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--navy-dark);
}
.hero-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 35, 77, .92) 0%, rgba(5, 35, 77, .75) 50%, rgba(5, 35, 77, .25) 100%); }
.hero-content { position: relative; z-index: 2; padding-block: 110px; }
.hero-content h1 { max-width: 820px; margin-bottom: 22px; color: white; }
.hero-lead { max-width: 720px; color: rgba(255, 255, 255, .88); font-size: clamp(1.12rem, 2.2vw, 1.4rem); }
.eyebrow {
    margin-bottom: 16px;
    color: var(--green-dark);
    font-size: .79rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.hero .eyebrow { color: #76e9ab; }

.section { padding-block: clamp(72px, 10vw, 126px); }
.section-soft { background: var(--soft); }
.intro-section { border-bottom: 1px solid var(--line); }
.split-layout, .detail-layout, .contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(42px, 8vw, 110px);
    align-items: start;
}
.rich-text p { font-size: 1.14rem; }
.section-heading { margin-bottom: 48px; }
.section-heading.narrow { max-width: 760px; }
.card-grid { display: grid; gap: 22px; }
.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card {
    position: relative;
    min-height: 370px;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}
.service-card h3, .service-card h2 { margin-top: 46px; }
.service-card h2 { font-size: 2rem; }
.service-card p { margin-bottom: 34px; }
.service-number { color: var(--green); font-weight: 900; letter-spacing: .14em; }
.service-card-large { min-height: 350px; }
.process-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 50px 0 0;
    padding: 0;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.process-grid li { min-height: 240px; padding: 30px; background: white; }
.process-grid strong { display: block; color: var(--navy); font-size: 1.35rem; margin-bottom: 16px; }
.process-grid span { color: var(--muted); }
.cta-section { padding-top: 0; }
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: clamp(42px, 6vw, 72px);
    border-radius: 28px;
    background: var(--navy);
}
.cta-box h2 { max-width: 760px; margin-bottom: 0; color: white; }
.cta-box .eyebrow { color: #76e9ab; }

.page-hero { padding-block: clamp(90px, 12vw, 150px); background: var(--soft); border-bottom: 1px solid var(--line); }
.page-hero.compact { padding-block: 80px; }
.page-hero h1 { color: var(--navy); }
.page-hero p:not(.eyebrow) { max-width: 740px; font-size: 1.2rem; }
.check-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.check-list li { position: relative; padding: 20px 0 20px 34px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; }
.values-grid article { padding: 34px; background: white; border-radius: var(--radius); border: 1px solid var(--line); }
.values-grid h2 { font-size: 1.7rem; color: var(--navy); }

.contact-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(82px, 10vw, 132px);
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}
.contact-hero::before,
.contact-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}
.contact-hero::before {
    width: 250px;
    height: 250px;
    top: -150px;
    left: -80px;
    border: 38px solid rgba(0, 159, 88, .1);
}
.contact-hero::after {
    width: 330px;
    height: 330px;
    right: -190px;
    bottom: -220px;
    border: 52px solid rgba(8, 47, 104, .08);
}
.contact-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(48px, 8vw, 110px);
    align-items: center;
}
.contact-hero-copy h1 {
    max-width: 780px;
    margin-bottom: 24px;
    color: var(--navy);
    font-size: clamp(2.8rem, 6.6vw, 5.6rem);
}
.contact-hero-lead {
    max-width: 720px;
    margin-bottom: 30px;
    font-size: clamp(1.08rem, 2vw, 1.3rem);
}
.contact-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.contact-hero-points li {
    position: relative;
    padding: 10px 14px 10px 36px;
    color: var(--navy);
    background: white;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 750;
}
.contact-hero-points li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    transform: translateY(-50%);
}
.contact-logo-scene {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
}
.contact-logo-scene::before,
.contact-logo-scene::after {
    content: "";
    position: absolute;
    background: var(--green);
    opacity: .12;
    transform: rotate(45deg);
}
.contact-logo-scene::before {
    width: 130px;
    height: 130px;
    top: 18px;
    right: 18px;
    border-radius: 28px;
}
.contact-logo-scene::after {
    width: 88px;
    height: 88px;
    left: 24px;
    bottom: 18px;
    background: var(--navy);
    border-radius: 20px;
}
.contact-logo-card {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    padding: clamp(30px, 5vw, 52px);
    background: white;
    border: 1px solid rgba(8, 47, 104, .12);
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(8, 47, 104, .16);
    animation: contact-logo-float 6s ease-in-out infinite;
}
.contact-logo-card img {
    width: 100%;
    height: auto;
}
.contact-logo-card p {
    margin: 22px 0 0;
    color: var(--navy);
    text-align: center;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .03em;
}
.contact-logo-node {
    position: absolute;
    z-index: 3;
    width: 22px;
    height: 22px;
    border: 6px solid white;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(8, 47, 104, .18);
}
.contact-logo-node-one { top: 32px; left: 12%; background: var(--green); }
.contact-logo-node-two { right: 4%; bottom: 20%; width: 30px; height: 30px; background: var(--gold); }
.contact-logo-node-three { left: 22%; bottom: 4px; width: 18px; height: 18px; background: var(--navy); }
@keyframes contact-logo-float {
    0%, 100% { transform: translateY(0) rotate(-.4deg); }
    50% { transform: translateY(-10px) rotate(.4deg); }
}

.contact-section { background: white; }
.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: start;
}
.contact-sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 132px;
}
.contact-info-card,
.contact-process-card,
.contact-delivery-state,
.contact-form-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}
.contact-info-card {
    padding: clamp(28px, 4vw, 42px);
    box-shadow: var(--shadow);
}
.contact-info-card h2 {
    margin-bottom: 18px;
    color: var(--navy);
    font-size: clamp(2rem, 3.5vw, 3rem);
}
.contact-details {
    display: grid;
    gap: 0;
    margin: 30px 0 0;
}
.contact-details > div {
    padding: 17px 0;
    border-top: 1px solid var(--line);
}
.contact-details dt {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.contact-details dd {
    margin: 0;
    color: var(--ink);
    font-weight: 750;
}
.contact-process-card {
    padding: 28px;
    background: var(--navy);
}
.contact-process-card h3 {
    margin-bottom: 22px;
    color: white;
}
.contact-process-card ol {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, .82);
    list-style: none;
}
.contact-process-card li {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
}
.contact-process-card li span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: #76e9ab;
    border-radius: 50%;
    font-size: .84rem;
    font-weight: 900;
}
.contact-form-card {
    padding: clamp(28px, 5vw, 54px);
    box-shadow: 0 22px 64px rgba(8, 47, 104, .1);
}
.contact-form-heading {
    padding-bottom: 28px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--line);
}
.contact-form-heading h2 {
    margin-bottom: 14px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.25rem);
}
.contact-form-heading p:last-child { margin-bottom: 0; }
.contact-form {
    position: relative;
    display: grid;
    gap: 20px;
}
.form-field { display: grid; gap: 8px; }
.form-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.contact-form label {
    color: var(--ink);
    font-weight: 800;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 17px;
    border: 1px solid #bcc9d5;
    border-radius: 13px;
    background: white;
    color: var(--ink);
    box-shadow: 0 1px 0 rgba(8, 47, 104, .02);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.contact-form input:hover,
.contact-form textarea:hover { border-color: #91a5b8; }
.contact-form textarea { resize: vertical; min-height: 210px; }
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 0;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 159, 88, .14);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #8291a1; opacity: 1; }
.form-field small {
    color: var(--muted);
    font-size: .84rem;
}
.contact-form .consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    margin: 0;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 13px;
    font-weight: 500;
}
.contact-form .consent input {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--green);
}
.contact-form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 4px;
}
.contact-form-actions p {
    max-width: 300px;
    margin: 0;
    font-size: .82rem;
}
.optional { color: var(--muted); font-size: .88em; font-weight: 500; }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.form-message {
    padding: 18px 20px;
    border-radius: 13px;
    border: 1px solid transparent;
}
.form-message ul { margin-bottom: 0; }
.form-message.success { background: #e8f8ef; color: var(--success); border-color: #bde6ce; }
.form-message.error { background: #fff1f1; color: var(--danger); border-color: #edc7c7; }
.contact-note { padding: 18px; background: var(--soft); border-left: 4px solid var(--gold); }
.legal-content { max-width: 820px; }
.legal-content h2 { margin-top: 42px; font-size: 1.65rem; color: var(--navy); }
.legal-alert { padding: 18px; background: #fff6d8; color: #684f00; border-left: 4px solid var(--gold); border-radius: 8px; }

.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    color: white;
    background: var(--navy-dark);
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--navy) 0 34%, var(--green) 34% 68%, var(--gold) 68% 100%);
}
.site-footer p, .site-footer a { color: rgba(255, 255, 255, .78); }
.site-footer a:hover { color: white; }
.footer-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 58px;
    padding: clamp(28px, 5vw, 46px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 88% 18%, rgba(216, 169, 47, .16), transparent 29%),
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
}
.footer-cta::after {
    content: "";
    position: absolute;
    right: -72px;
    bottom: -105px;
    width: 260px;
    height: 260px;
    border: 36px solid rgba(0, 159, 88, .12);
    border-radius: 50%;
    pointer-events: none;
}
.footer-cta-copy { position: relative; z-index: 1; max-width: 720px; }
.footer-cta-kicker {
    margin-bottom: 10px;
    color: #78e5ad !important;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.footer-cta h2 {
    max-width: 760px;
    margin-bottom: 12px;
    color: white;
    font-size: clamp(1.75rem, 4vw, 3rem);
}
.footer-cta p:last-child { margin-bottom: 0; }
.footer-cta-button { position: relative; z-index: 1; flex: 0 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
}
.footer-grid section { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid h2 {
    margin-bottom: 10px;
    color: white;
    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.footer-logo-wrap {
    width: 290px;
    padding: 10px;
    margin-bottom: 10px;
    background: white;
    border-radius: 12px;
}
.footer-logo { width: 100%; height: auto; }
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    font-style: normal;
}
.footer-contact p { margin: 0; }
.footer-bottom {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px 34px;
    padding-block: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.footer-bottom p { margin: 0; font-size: .88rem; }
.footer-copyright { white-space: nowrap; }
.footer-signature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: .28em;
    text-align: right;
}
.footer-signature a {
    color: white;
    font-weight: 850;
    text-decoration-color: rgba(255, 255, 255, .48);
    text-decoration-thickness: 2px;
}
.footer-heart {
    display: inline-block;
    padding-inline: .08em;
    background: linear-gradient(135deg, var(--green) 0 38%, var(--gold) 38% 65%, #4d86d2 65% 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.13rem;
    line-height: 1;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, .22));
    animation: footer-heart-pulse 2.7s ease-in-out infinite;
}
.footer-separator { margin-inline: .28em; color: rgba(255, 255, 255, .36); }
@keyframes footer-heart-pulse {
    0%, 72%, 100% { transform: scale(1); }
    78% { transform: scale(1.18); }
    84% { transform: scale(1); }
    90% { transform: scale(1.1); }
}

@media (max-width: 900px) {
    .desktop-navigation { display: none; }
    .mobile-navigation { display: block; }
    .hero { min-height: 610px; }
    .hero-overlay { background: rgba(5, 35, 77, .79); }
    .three-columns, .process-grid, .values-grid { grid-template-columns: 1fr 1fr; }
    .split-layout, .detail-layout, .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { grid-template-columns: 1fr; }
    .footer-signature { justify-content: flex-start; text-align: left; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height: 78px; }
    .brand { width: min(230px, 70vw); }
    .brand img { height: 62px; }
    .mobile-navigation summary span { font-size: .88rem; }
    .hero { min-height: 590px; }
    .hero-content { padding-block: 82px; }
    .section { padding-block: 72px; }
    .three-columns, .process-grid, .values-grid, .footer-grid { grid-template-columns: 1fr; }
    .service-card, .service-card-large, .process-grid li { min-height: auto; }
    .cta-box { align-items: flex-start; flex-direction: column; }
    .button-row, .button-row .button { width: 100%; }
    .footer-logo-wrap { width: min(290px, 100%); }
    .footer-cta { align-items: flex-start; flex-direction: column; }
    .footer-cta-button { width: 100%; }
    .footer-copyright { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .hero-video video { display: none; }
    .hero-video { background: var(--navy-dark) url("../images/video-poster.jpg") center / cover no-repeat; }
    .footer-heart { animation: none !important; }
}

/* Page Méthode */
.button-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(8, 47, 104, .24);
    box-shadow: none;
}
.button-outline:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    box-shadow: 0 14px 34px rgba(8, 47, 104, .18);
}
.section-action {
    margin-top: 34px;
    text-align: center;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 850;
    text-decoration: none;
}
.text-link::after {
    content: "→";
    color: var(--green);
    font-size: 1.25em;
    transition: transform .18s ease;
}
.text-link:hover::after { transform: translateX(4px); }

.method-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 24%, rgba(0, 159, 88, .14), transparent 30%),
        linear-gradient(135deg, #f8fbfa 0%, #ffffff 52%, #eef5f2 100%);
}
.method-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(8, 47, 104, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 47, 104, .045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, transparent, black 55%, black);
}
.method-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: center;
    gap: clamp(48px, 8vw, 112px);
}
.method-hero-copy { position: relative; z-index: 2; }
.method-hero-copy h1 {
    max-width: 850px;
    color: var(--navy);
    font-size: clamp(2.65rem, 6vw, 5.15rem);
}
.method-hero-copy > p:not(.eyebrow) {
    max-width: 760px;
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}
.method-map {
    position: relative;
    min-height: 430px;
    border: 1px solid rgba(8, 47, 104, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 32px 80px rgba(8, 47, 104, .12);
}
.method-map::before,
.method-map::after {
    content: "";
    position: absolute;
    inset: 15%;
    border: 1px dashed rgba(0, 159, 88, .28);
    border-radius: 50%;
}
.method-map::after {
    inset: 31%;
    border-style: solid;
    border-color: rgba(8, 47, 104, .12);
}
.method-map-center {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 2;
    width: 148px;
    min-height: 148px;
    display: grid;
    place-items: center;
    padding: 20px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--navy);
    color: white;
    text-align: center;
    font-size: 1.06rem;
    font-weight: 850;
    line-height: 1.25;
    box-shadow: 0 20px 45px rgba(8, 47, 104, .22);
}
.method-map-item {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 138px;
    padding: 13px 15px;
    border: 1px solid rgba(8, 47, 104, .12);
    border-radius: 999px;
    background: white;
    box-shadow: 0 12px 32px rgba(8, 47, 104, .1);
}
.method-map-item strong {
    color: var(--green);
    font-size: .78rem;
    letter-spacing: .08em;
}
.method-map-item span { color: var(--navy); font-weight: 800; }
.method-map-item-a { top: 6%; left: 50%; transform: translateX(-50%); }
.method-map-item-b { top: 50%; right: -4%; transform: translateY(-50%); }
.method-map-item-c { bottom: 6%; left: 50%; transform: translateX(-50%); }
.method-map-item-d { top: 50%; left: -4%; transform: translateY(-50%); }

.method-quote {
    margin: 34px 0 0;
    padding: 24px 28px;
    border-left: 5px solid var(--green);
    border-radius: 0 16px 16px 0;
    background: var(--soft);
}
.method-quote p {
    margin: 0;
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 750;
}
.entry-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}
.entry-card {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 5vw, 52px);
    border: 1px solid var(--line);
    border-radius: 26px;
    background: white;
    box-shadow: var(--shadow);
}
.entry-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 8px;
    background: var(--navy);
}
.entry-card-accent::after { background: var(--green); }
.entry-label {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--navy);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.entry-card h3 { max-width: 510px; color: var(--navy); font-size: clamp(1.65rem, 3vw, 2.35rem); }
.method-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}
.method-list li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
    font-weight: 670;
}
.method-list li::before {
    content: "";
    position: absolute;
    top: .62em;
    left: 0;
    width: 10px;
    height: 10px;
    border: 3px solid var(--green);
    border-radius: 50%;
}

.mission-timeline {
    position: relative;
    display: grid;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.mission-timeline::before {
    content: "";
    position: absolute;
    top: 62px;
    bottom: 62px;
    left: 61px;
    width: 2px;
    background: linear-gradient(var(--navy), var(--green));
}
.mission-timeline > li {
    position: relative;
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}
.phase-marker {
    position: relative;
    z-index: 2;
    align-self: start;
    width: 124px;
    min-height: 124px;
    display: grid;
    place-items: center;
    align-content: center;
    border: 8px solid white;
    border-radius: 50%;
    background: var(--navy);
    box-shadow: 0 10px 30px rgba(8, 47, 104, .18);
}
.phase-marker span {
    color: rgba(255, 255, 255, .7);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.phase-marker strong { color: white; font-size: 2.15rem; line-height: 1; }
.mission-timeline > li:nth-child(even) .phase-marker { background: var(--green-dark); }
.phase-card {
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: white;
    box-shadow: 0 14px 44px rgba(8, 47, 104, .07);
}
.phase-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}
.phase-heading h3 { margin: 0; color: var(--navy); font-size: clamp(1.55rem, 3vw, 2.2rem); }
.phase-heading span { color: var(--green-dark); font-size: .83rem; font-weight: 850; text-align: right; }
.phase-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 28px 0 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--line);
}
.phase-details > div { padding: 18px; background: var(--soft); }
.phase-details dt {
    margin-bottom: 5px;
    color: var(--navy);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.phase-details dd { margin: 0; color: var(--muted); }

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.principle-card {
    min-height: 290px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
}
.principle-card > span {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--green);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
}
.principle-card h3 { color: var(--navy); }
.method-tools-section { border-top: 1px solid var(--line); }
.tool-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.tool-grid article {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
}
.tool-grid h3 { margin-bottom: 10px; color: var(--navy); font-size: 1.17rem; }
.tool-grid p { margin: 0; font-size: .96rem; }

@media (max-width: 980px) {
    .method-hero-grid { grid-template-columns: 1fr; }
    .method-map { width: min(480px, 100%); min-height: 420px; margin-inline: auto; }
    .principles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
    .entry-grid, .tool-grid, .phase-details { grid-template-columns: 1fr; }
    .mission-timeline::before { left: 27px; }
    .mission-timeline > li { grid-template-columns: 56px minmax(0, 1fr); gap: 14px; }
    .phase-marker {
        width: 56px;
        min-height: 56px;
        border-width: 4px;
    }
    .phase-marker span { display: none; }
    .phase-marker strong { font-size: 1.25rem; }
    .phase-heading { align-items: flex-start; flex-direction: column; gap: 6px; }
    .phase-heading span { text-align: left; }
}

@media (max-width: 620px) {
    .method-hero::before { display: none; }
    .method-map { min-height: 330px; }
    .method-map-center { width: 118px; min-height: 118px; font-size: .92rem; }
    .method-map-item { min-width: 112px; padding: 10px 12px; gap: 7px; font-size: .83rem; }
    .method-map-item-b { right: -1%; }
    .method-map-item-d { left: -1%; }
    .principles-grid { grid-template-columns: 1fr; }
    .principle-card { min-height: auto; }
    .mission-timeline > li { grid-template-columns: 48px minmax(0, 1fr); gap: 10px; }
    .mission-timeline::before { left: 23px; }
    .phase-marker { width: 48px; min-height: 48px; }
    .phase-card { padding: 24px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .text-link::after { transition: none; }
}

/* Optimisation SEO, accessibilité et contenus éditoriaux */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.brand picture,
.footer-logo-wrap picture { display: block; width: 100%; }
.breadcrumb {
    background: #fbfcfd;
    border-bottom: 1px solid var(--line);
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 12px 0;
    list-style: none;
    font-size: .84rem;
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.breadcrumb li:not(:last-child)::after { content: "/"; color: #a4afba; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-dark); text-decoration: underline; }
.breadcrumb span[aria-current="page"] { color: var(--ink); font-weight: 750; }
.section-intro { max-width: 760px; margin-top: -26px; margin-bottom: 42px; font-size: 1.08rem; }
.process-grid-six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-grid-six li { min-height: 210px; }
.faq-list { display: grid; gap: 14px; }
.faq-list details {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    overflow: hidden;
}
.faq-list summary {
    position: relative;
    padding: 22px 58px 22px 24px;
    cursor: pointer;
    color: var(--navy);
    font-weight: 850;
    list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 1.6rem;
    line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 24px 24px; margin: 0; }
.mini-list {
    display: grid;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}
.mini-list li { position: relative; padding-left: 20px; color: var(--muted); }
.mini-list li::before { content: "•"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.keyword-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.keyword-grid span {
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--navy);
    font-size: .88rem;
    font-weight: 800;
}
.info-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}
.info-card h3 { color: var(--navy); }
.info-card p:last-child { margin-bottom: 0; }
.inline-links { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 26px; }
.inline-links a { font-weight: 800; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.steps-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
}
.steps-grid article > span { color: var(--green); font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.steps-grid h3 { margin-top: 22px; color: var(--navy); }
.steps-grid p:last-child { margin-bottom: 0; }
.values-grid-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.values-grid-four article { min-height: 245px; }
.footer-grid-wide { grid-template-columns: 1.3fr .85fr .75fr 1fr; gap: 42px; }
.contact-form select {
    width: 100%;
    min-height: 58px;
    padding: 14px 44px 14px 17px;
    border: 1px solid #bcc9d5;
    border-radius: 13px;
    background-color: white;
    color: var(--ink);
    font: inherit;
}
.contact-form select:hover { border-color: #91a5b8; }
.contact-form select:focus {
    outline: 0;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(0, 159, 88, .14);
}
.legal-content a { overflow-wrap: anywhere; }

@media (max-width: 1050px) {
    .footer-grid-wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .values-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .contact-hero-grid,
    .contact-shell { grid-template-columns: 1fr; }
    .contact-logo-scene { min-height: 310px; }
    .contact-sidebar { position: static; }
    .process-grid-six { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
    .breadcrumb ol { font-size: .78rem; }
    .process-grid-six,
    .steps-grid,
    .values-grid-four,
    .footer-grid-wide { grid-template-columns: 1fr; }
    .contact-hero { padding-block: 68px; }
    .contact-hero-points { display: grid; }
    .contact-logo-scene { min-height: 240px; }
    .contact-logo-card { padding: 24px; border-radius: 22px; }
    .contact-logo-node-two { right: 0; }
    .form-field-grid { grid-template-columns: 1fr; }
    .contact-form-actions { align-items: stretch; flex-direction: column; }
    .contact-form-actions .button { width: 100%; }
    .contact-form-actions p { max-width: none; text-align: center; }
    .inline-links { display: grid; gap: 12px; }
    .faq-list summary { padding-inline: 18px 50px; }
    .faq-list details p { padding-inline: 18px; }
}
