@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --bg: #f0faff;
    --paper: #ffffff;
    --ink: #0f3c5e;
    --ink-soft: #0f3c5e;
    --line: rgba(15, 60, 94, 0.12);
    --blue: #144e82;
    --blue-deep: #0f3c5e;
    --blue-light: #7db1db;
    --blue-grey: #a1b7c6;
    --quasi-white: #f0faff;
    --green: #4ece82;
    --nav-blue: #144e82;
    --nav-blue-strong: #0f3c5e;
    --coral: #ff5757;
    --aquesis-gradient: linear-gradient(135deg, #144e82 0%, #4ece82 100%);
    --radius-ui: 10px;
    --radius-photo: 20px;
    --shell: min(1180px, calc(100vw - 2rem));
    --shadow: 0 18px 40px rgba(15, 60, 94, 0.1);
    --type-page-kicker: 1rem;
    --type-page-h1: 3.05rem;
    --type-page-lead: 1rem;
    --type-section-h2: 2.15rem;
    --type-card-h3: 1.35rem;
    --type-copy: 1rem;
    --section-space-desktop: 3.75rem;
    --section-space-tablet: 3.125rem;
    --section-space-mobile: 2rem;
    --section-gap-desktop: 7.5rem;
    --section-gap-tablet: 6.25rem;
    --section-gap-mobile: 4rem;
    --anchor-offset: 6.75rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--anchor-offset);
}

[id] {
    scroll-margin-top: var(--anchor-offset);
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: #fff;
}

img {
    display: block;
    max-width: 100%;
}

.has-image-lightbox {
    overflow: hidden;
}

.image-lightbox {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(15, 60, 94, 0.82);
}

.image-lightbox img {
    max-width: min(100%, 1180px);
    max-height: calc(100vh - 6rem);
    background: #fff;
    object-fit: contain;
    box-shadow: 0 24px 64px rgba(15, 60, 94, 0.24);
}

.image-lightbox__close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border: 0;
    background: #fff;
    color: var(--blue);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-ui);
    background: var(--paper);
    color: var(--ink);
}

textarea {
    resize: vertical;
}

label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.92rem;
    font-weight: 600;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.8rem, 4.6vw, 4.8rem);
}

h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.35rem);
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
}

p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.32;
}

strong {
    font-weight: 700;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.eyebrow {
    margin: 0 0 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--blue);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.45rem;
    border: 1px solid transparent;
    border-radius: var(--radius-ui);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: none;
}

.btn--primary {
    border-color: var(--blue);
    color: #fff;
    background: var(--blue);
    box-shadow: none;
}

.btn--primary:hover,
.btn--primary:focus-visible {
    border-color: var(--blue);
    color: var(--blue);
    background: #fff;
}

.btn--aquesis-gradient {
    border-color: var(--blue);
    color: #fff;
    background: var(--aquesis-gradient);
}

.btn--aquesis-gradient:hover,
.btn--aquesis-gradient:focus-visible {
    border-color: var(--blue);
    color: var(--blue);
    background: #fff;
}

.btn--ghost {
    border: 1px solid rgba(20, 78, 130, 0.28);
    background: rgba(255, 255, 255, 0.82);
    color: var(--blue);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    border-color: var(--blue);
    color: #fff;
    background: var(--blue);
}

.btn--read-more {
    padding-right: 0;
    padding-left: 0;
    border: 0;
    color: var(--green);
    background: transparent;
    box-shadow: none;
}

.btn--read-more:hover,
.btn--read-more:focus-visible {
    border-color: transparent;
    color: var(--green);
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.btn--small {
    padding: 0.75rem 1.1rem;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(15, 60, 94, 0.08);
}

.site-main {
    padding-bottom: 3rem;
    background: #fff;
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    min-height: 80px;
}

.brand {
    flex: 0 0 auto;
    display: block;
    width: min(205px, 30vw);
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
}

.desktop-nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    margin-left: 0;
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav li > a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 0.45rem 0;
    border-radius: var(--radius-ui);
    color: var(--nav-blue);
    font-weight: 600;
}

.desktop-nav li:hover > a,
.desktop-nav li.is-current > a {
    color: var(--nav-blue-strong);
    background: transparent;
}

.desktop-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    gap: 0.35rem;
    min-width: min(360px, 80vw);
    max-width: 420px;
    padding: 1rem 0.7rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-ui);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 34px rgba(15, 60, 94, 0.1);
    z-index: 30;
}

.desktop-nav li:hover .desktop-nav__dropdown,
.desktop-nav li:focus-within .desktop-nav__dropdown {
    display: grid;
}

.desktop-nav__dropdown a {
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius-ui);
    color: var(--nav-blue);
    line-height: 1.25;
    white-space: normal;
}

.desktop-nav__dropdown a:hover,
.desktop-nav__dropdown a.is-current {
    color: var(--nav-blue-strong);
    background: rgba(125, 177, 219, 0.16);
}

.desktop-nav__dropdown a.is-current {
    font-weight: 600;
}

.desktop-nav__dropdown-group {
    display: grid;
    gap: 0.15rem;
}

.desktop-nav__dropdown-parent {
    font-weight: 600;
}

.desktop-nav__dropdown-children {
    display: grid;
    gap: 0.1rem;
    margin-left: 0.65rem;
    padding-left: 0.55rem;
    border-left: 1px solid rgba(125, 177, 219, 0.35);
}

.desktop-nav__dropdown-children a {
    font-size: 0.92rem;
}

.mobile-nav {
    display: none;
    margin-left: auto;
}

.mobile-nav summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(20, 78, 130, 0.32);
    border-radius: var(--radius-ui);
    background: transparent;
    cursor: pointer;
    list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.mobile-nav__icon,
.mobile-nav__icon::before,
.mobile-nav__icon::after {
    display: block;
    width: 1.35rem;
    height: 2px;
    background: var(--blue);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav__icon {
    position: relative;
}

.mobile-nav__icon::before,
.mobile-nav__icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.mobile-nav__icon::before {
    top: -0.43rem;
}

.mobile-nav__icon::after {
    top: 0.43rem;
}

.mobile-nav[open] .mobile-nav__icon {
    background: transparent;
}

.mobile-nav[open] .mobile-nav__icon::before {
    transform: translateY(0.43rem) rotate(45deg);
}

.mobile-nav[open] .mobile-nav__icon::after {
    transform: translateY(-0.43rem) rotate(-45deg);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.skip-link {
    position: fixed;
    z-index: 2147483647;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-ui);
    background: #144e82;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 60, 94, 0.22);
    transform: translateY(-150%);
    transition: transform 0.18s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
    outline: 3px solid rgba(78, 206, 130, 0.6);
    outline-offset: 3px;
    transform: translateY(0);
}

.mobile-nav__panel {
    position: absolute;
    top: 6.25rem;
    right: 1rem;
    display: grid;
    gap: 0.8rem;
    width: min(360px, calc(100vw - 2rem));
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-ui);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 34px rgba(15, 60, 94, 0.1);
}

.mobile-nav__panel > .btn {
    position: sticky;
    bottom: 0;
    margin-top: 0.4rem;
    box-shadow: 0 -10px 18px rgba(255, 255, 255, 0.92);
}

.mobile-nav__group + .mobile-nav__group {
    margin-top: 0.65rem;
}

.mobile-nav__group > a {
    display: block;
    padding: 0.85rem 0.95rem;
    border-radius: var(--radius-ui);
    color: var(--nav-blue);
    font-weight: 600;
}

.mobile-nav__group > a:hover,
.mobile-nav__group > a.is-current {
    color: var(--nav-blue-strong);
    background: rgba(125, 177, 219, 0.16);
}

.mobile-nav__children {
    display: grid;
    gap: 0.25rem;
    margin: 0.4rem 0 0.4rem 0.5rem;
}

.mobile-nav__children a {
    padding: 0.65rem 0.8rem;
    color: var(--nav-blue);
    line-height: 1.25;
}

.mobile-nav__children a.is-current {
    color: var(--nav-blue-strong);
    background: rgba(125, 177, 219, 0.16);
    font-weight: 600;
}

.mobile-nav__subchildren {
    display: grid;
    gap: 0.1rem;
    margin: 0.1rem 0 0.4rem 0.75rem;
    padding-left: 0.55rem;
    border-left: 1px solid rgba(125, 177, 219, 0.35);
}

.mobile-nav__subchildren a {
    font-size: 0.92rem;
}

.hero {
    padding: 4.5rem 0 2.5rem;
    background: linear-gradient(120deg, var(--quasi-white), #fff);
}

.hero--contact h1 {
    max-width: 18ch;
    color: var(--blue);
    font-size: clamp(2.6rem, 4.2vw, 4rem);
    line-height: 1.05;
}

.hero--contact .hero__lead {
    margin-top: 1.15rem;
    line-height: 1.32;
}

.hero--home {
    overflow: visible;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.hero__grid--aside {
    align-items: start;
}

.hero__lead,
.page-hero__lead {
    margin-top: 1.4rem;
    max-width: 62ch;
    font-size: var(--type-page-lead);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.hero__visual {
    position: relative;
}

.hero__visual--home {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
}

.hero__main-image {
    position: relative;
    z-index: 2;
    width: min(100%, 32rem);
    margin-left: auto;
    border-radius: var(--radius-ui);
    box-shadow: none;
}

.hero__grid--home {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 2.65rem;
}

.hero__copy--home h1 {
    max-width: 52rem;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.1rem, 4.7vw, 3.333rem);
    font-weight: 600;
    line-height: 1.08;
}

.hero__copy--home .hero__lead {
    max-width: 46rem;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: var(--type-page-lead);
    font-weight: 400;
    line-height: 1.2;
}

.hero__copy--home .hero__lead strong,
.home-approach__copy strong,
.offer-card strong {
    font-weight: 600;
}

.hero__main-image--cutout {
    width: min(100%, 28.5rem);
    margin: 0;
    border-radius: var(--radius-ui);
    box-shadow: none;
    filter: none;
}

@media (min-width: 861px) {
    .hero--home .hero__main-image--cutout {
        animation: hero-image-push-in 1.55s cubic-bezier(0.16, 1, 0.3, 1) 0.14s both;
        will-change: opacity, transform;
    }

    .hero--home .hero__copy--home {
        animation: hero-copy-pushed 1.55s cubic-bezier(0.16, 1, 0.3, 1) 0.14s both;
        will-change: transform;
    }
}

@keyframes hero-image-push-in {
    0% {
        opacity: 0;
        transform: translate3d(-38vw, 0, 0) scale(0.97);
    }

    45% {
        opacity: 1;
        transform: translate3d(-1.1rem, 0, 0) scale(0.995);
    }

    60% {
        opacity: 1;
        transform: translate3d(1.35rem, 0, 0) scale(1.018);
    }

    74% {
        transform: translate3d(-0.55rem, 0, 0) scale(0.998);
    }

    88% {
        transform: translate3d(0.18rem, 0, 0) scale(1.003);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes hero-copy-pushed {
    0% {
        transform: translate3d(clamp(-6.5rem, -8vw, -4rem), 0, 0);
    }

    45% {
        transform: translate3d(clamp(-6.5rem, -8vw, -4rem), 0, 0);
    }

    60% {
        transform: translate3d(2rem, 0, 0);
    }

    74% {
        transform: translate3d(-0.65rem, 0, 0);
    }

    88% {
        transform: translate3d(0.18rem, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.hero__accent {
    position: absolute;
    z-index: 1;
}

.hero__accent--circle {
    inset: auto auto -2rem -1rem;
    width: 9rem;
    animation: floaty 6s ease-in-out infinite;
}

.hero__badge {
    position: absolute;
    z-index: 3;
    bottom: 1.2rem;
    left: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-ui);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow);
}

.home-approach {
    position: relative;
    overflow: visible;
    padding: 3.5rem 0 0;
    background: #fff;
}

.home-approach::before {
    content: none;
    position: absolute;
    z-index: 0;
    top: 3.4rem;
    left: 51%;
    width: min(42rem, 82vw);
    height: min(39rem, 76vw);
    transform: translateX(-50%);
    /*background: url(/media/home/coeur-cadre-aquesis.webp) top center / contain no-repeat;*/
    opacity: 1;
    pointer-events: none;
}

.home-approach::after {
    content: none;
    position: absolute;
    z-index: 1;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.home-approach__inner {
    position: relative;
    z-index: 2;
}

.home-approach__inner,
.home-services__panel,
.home-trust .shell,
.home-news .shell,
.home-contact-callout .shell {
    width: min(1290px, calc(100vw - 3rem));
}

.home-approach__inner > h2:not(.home-ribbon) {
    max-width: 68rem;
    margin: 0 auto 3.2rem;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.home-approach__content {
    display: grid;
    grid-template-columns: 11rem minmax(20rem, 34rem) 11rem;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    padding-bottom: 4.6rem;
}

.home-domain {
    display: grid;
    justify-items: center;
    gap: 1rem;
    color: var(--ink);
    text-align: center;
}

.home-domain img {
    width: 9.1rem;
    height: 5.8rem;
    object-fit: contain;
}

.home-domain strong {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.home-approach__copy {
    text-align: center;
}

.home-approach__copy p {
    color: var(--ink);
    font-size: var(--type-page-lead);
    font-weight: 400;
    line-height: 1.2;
}

.home-approach__copy p + p {
    margin-top: 1rem;
}

.home-ribbon {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    border-radius: var(--radius-ui);
    color: var(--blue);
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.18;
    text-align: center;
}

.home-approach .home-ribbon {
    transform: translateY(0);
}

.home-services {
    padding: 3.35rem 0 0;
    background: #fff;
}

.home-services__panel {
    position: relative;
    z-index: 1;
    padding: 0 1.2rem 2.45rem;
    /* background: var(--aquesis-gradient); */
}

.home-services__primary,
.home-services__secondary {
    display: grid;
    gap: 1.1rem;
    align-items: start;
}

.home-services__primary {
    grid-template-columns: minmax(18rem, 0.98fr) minmax(19rem, 1.02fr);
    align-items: stretch;
    transform: translateY(-3.1rem);
    margin-bottom: -3.1rem;
}

.home-services__primary .offer-card {
    align-self: stretch;
    transform: none;
}

.home-services__primary .home-services__media {
    height: 100%;
}

.home-services__media {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: var(--radius-ui);
}

.home-services__media::after,
.home-news-card__media::after,
.news-card__media::after,
.expertises-index-card__media::after,
.sectors-overview-card__media::after,
.training-card__image-link::after,
.course-related-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(20, 78, 130, 0.18), rgba(78, 206, 130, 0.12));
}

.home-services__media--audit {
    align-self: stretch;
    margin-top: 0;
}

.home-services__secondary {
    grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.home-services__secondary--count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-services__secondary .offer-card {
    height: 100%;
}

.offer-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.3rem 1.4rem;
    border-radius: var(--radius-ui);
}

.offer-card h3 {
    margin-bottom: 0.7rem;
    font-size: 25px;
    font-weight: 500;
}

.offer-card h4 {
    margin: 0 0 1.25rem;
    font-family: 'Outfit', sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
}

.offer-card p {
    font-family: 'Outfit', sans-serif;
    font-size: var(--type-page-lead);
    font-weight: 300;
    line-height: 1.65;
}

.offer-card ul {
    display: grid;
    gap: 0.42rem;
    margin: 1.35rem 0 1.25rem;
    padding-left: 0;
    list-style: none;
}

.offer-card li {
    display: grid;
    grid-template-columns: 0.45rem minmax(0, 1fr);
    gap: 0.65rem;
    padding-left: 0;
    font-family: 'Outfit', sans-serif;
    font-size: var(--type-page-lead);
    font-weight: 300;
    line-height: 1.45;
}

.offer-card li::before {
    content: '';
    width: 0.32rem;
    height: 0.32rem;
    margin-top: 0.62em;
    border-radius: 50%;
    background: currentColor;
}

.offer-card li strong {
    font-weight: 600;
}

.offer-card--blue {
    color: #fff;
    background: #144e82;
}

.offer-card--blue h3,
.offer-card--blue h4,
.offer-card--blue p,
.offer-card--blue li {
    color: #fff;
}

.offer-card--light {
    color: var(--blue);
    background: #f0faff;
}

.offer-card--light h3,
.offer-card--light h4,
.offer-card--light p,
.offer-card--light li {
    color: var(--blue);
}

.offer-card__link {
    align-self: center;
    margin-top: auto;
    padding: 0.6rem 1.15rem;
    border-radius: var(--radius-ui);
    color: var(--blue);
    background: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.offer-card--light .offer-card__link {
    color: #fff;
    background: var(--blue);
}

.offer-card__link--read-more,
.offer-card--light .offer-card__link--read-more {
    color: var(--green);
    background: #fff;
}

.home-services__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-services__media--audit .home-services__image {
    height: 100%;
}

.home-services__image--portrait {
    min-height: 0;
}

.home-services__title {
    margin: 0 0 0.75rem;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.32;
    text-align: center;
}

.home-services__subtitle,
.home-services__intro {
    max-width: 62rem;
    margin: 0 auto;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.55;
    text-align: center;
}

.home-services__subtitle {
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.home-services__intro {
    margin-bottom: 2.4rem;
}

.home-trust {
    padding: 3.8rem 0 4rem;
    background: #fff;
}

.home-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 0;
    margin: 3rem auto 2rem;
    text-align: center;
}

.home-stats figure {
    display: grid;
    justify-items: center;
    margin: 0;
}

.home-stat__number {
    display: grid;
    place-items: center;
    width: min(300px, 100%);
    height: 230px;
    margin: 0 auto 1rem;
    color: transparent;
    background: linear-gradient(180deg, #4ece82 0%, #4ece82 45%, #144e82 100%);
    background-clip: text;
    -webkit-background-clip: text;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(8.4rem, 12vw, 12rem);
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 0.86;
    overflow: visible;
    transform: skewX(-4deg);
}

.image-load-reveal {
    clip-path: inset(0 0 18% 0);
    transition:
        clip-path 1s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.85s ease,
        opacity 0.85s ease;
}

.image-load-reveal:not(.is-loaded) {
    opacity: 0 !important;
    filter: blur(8px) !important;
    transform: translateY(1.1rem) scale(1.025);
}

.image-load-reveal.is-loaded {
    clip-path: inset(0);
    transform: translateY(0) scale(1);
}

.home-stats figure:nth-child(2) .home-stat__number {
    background-image: linear-gradient(110deg, #4ece82 0%, #4ece82 45%, #144e82 100%);
}

.home-stats figcaption {
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.home-stats small {
    font-size: var(--type-page-lead);
}

.home-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    max-width: 64rem;
    margin: 2.5rem auto 1.4rem;
}

.home-proof-card,
.home-engagement {
    display: grid;
    align-content: center;
    min-height: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(20, 78, 130, 0.14);
    border-radius: var(--radius-ui);
    background: #fff;
    box-shadow: none;
    text-align: center;
}

.home-engagement {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: stretch;
    gap: 1.25rem;
    max-width: 64rem;
    margin: 1.4rem auto 1.1rem;
}

.home-engagement__separator {
    display: none;
}

.home-engagement img {
    display: block;
    width: min(11rem, 24vw);
    max-height: 7rem;
    justify-self: end;
    object-fit: contain;
}

.home-engagement p {
    margin: 0;
    max-width: none;
    color: var(--ink);
    font-size: var(--type-page-lead);
    font-weight: 400;
    line-height: 1.3;
}

.home-logos-heading {
    margin: 0;
}

.home-logos-heading h3 {
    margin: 0 0 0.45rem;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.home-logos-heading p {
    margin: 0;
    color: var(--ink);
    line-height: 1.3;
}

.home-trust__statement p {
    margin: 0;
    color: var(--ink);
    font-weight: 400;
    line-height: 1.3;
}

.home-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 1.2rem;
}

.home-logos img {
    display: block;
    margin-inline: auto;
    object-fit: contain;
}

.home-logos img:nth-child(1) {
    width: 168px;
    height: 168px;
}

.home-logos img:nth-child(2) {
    width: 242px;
    height: 100px;
}

.home-logos img:nth-child(3) {
    width: 172px;
    height: 152px;
}

.home-news {
    position: relative;
    overflow: visible;
    padding: 3.6rem 0 4rem;
    background: #fff;
}

.home-news__orbit {
    display: none;
    position: absolute;
    bottom: -25rem;
    left: 116px;
    width: min(36rem, 42vw);
    opacity: 1;
    pointer-events: none;
}

.home-news .shell {
    position: relative;
    z-index: 1;
}

.home-news h2 {
    margin-bottom: 54px;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}

.home-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
}

.home-news__grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.home-news-card,
.news-card {
    display: grid;
    align-content: start;
    overflow: hidden;
    border: 1px solid rgba(20, 78, 130, 0.16);
    border-radius: var(--radius-ui);
    background: #fff;
    box-shadow: none;
}

.home-news-card__media,
.news-card__media {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    aspect-ratio: 96 / 55;
    background: #f0faff;
}

.home-news-card__media img,
.news-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.35s ease;
}

.home-news-card:hover img,
.news-card:hover img {
    filter: saturate(1.06) contrast(1.03);
}

.home-news-card__body,
.news-card__body {
    display: grid;
    gap: 0.75rem;
    padding: 1.05rem 1.15rem 1.2rem;
}

.home-news-card__meta,
.news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    margin: 0;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
}

.home-news-card h3,
.news-card h2 {
    margin: 0;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.25;
}

.home-news-card a:not(.home-news-card__link),
.news-card a:not(.news-card__link) {
    color: inherit;
    text-decoration: none;
}

.home-news-card__body > p:not(.home-news-card__meta),
.news-card__body > p:not(.news-card__meta) {
    margin: 0;
    color: #0f3c5e;
    font-size: var(--type-copy);
    line-height: 1.35;
}

.home-news-card__link,
.news-card__link {
    width: fit-content;
    color: var(--green);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.home-news-card__link:hover,
.home-news-card__link:focus-visible,
.news-card__link:hover,
.news-card__link:focus-visible {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.home-news-card__link::before,
.home-news-card__link::after,
.news-card__link::before,
.news-card__link::after {
    content: none !important;
    display: none !important;
}

.news-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(120deg, #f0faff, #fff);
}

.news-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    font-weight: 600;
    line-height: 1;
}

.news-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 1rem 0 0;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.6;
}

.news-list {
    padding: 3rem 0 5rem;
    background: #fff;
}

.news-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.4rem;
}

.news-categories a {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(20, 78, 130, 0.18);
    border-radius: var(--radius-ui);
    color: var(--blue);
    background: #fff;
    font-weight: 600;
}

.news-categories a.is-current,
.news-categories a:hover {
    color: #fff;
    background: var(--blue);
}

.news-list__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.news-article__hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(120deg, #f0faff, #fff);
}

.news-article__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.78fr);
    gap: 3rem;
    align-items: center;
}

.news-article__hero h1 {
    margin: 0;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
}

.news-article__lead {
    margin: 1rem 0;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.58;
}

.news-article__hero time {
    color: #7db1db;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.news-article__hero img {
    display: block;
    width: 100%;
    border-radius: var(--radius-ui);
    box-shadow: 0 20px 46px rgba(20, 78, 130, 0.12);
}

.news-article__content {
    max-width: 820px;
    margin-inline: auto;
    padding: 3rem 1.5rem 5rem;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.75;
}

.news-article__content p {
    margin: 0 0 1.25rem;
}

.news-article__content h2,
.news-article__content h3 {
    margin: 3rem 0 1.25rem;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.news-article__content h2:first-child,
.news-article__content h3:first-child {
    margin-top: 0;
}

.home-contact-callout {
    padding: 0;
    background: #fff;
}

.home-contact-callout .shell {
    display: grid;
    justify-items: center;
    padding: 2.3rem 1.5rem;
    border-radius: var(--radius-ui);
    color: #fff;
    background: var(--aquesis-gradient);
    text-align: center;
}

.home-contact-callout h2,
.home-contact-callout p {
    color: #fff;
}

.home-contact-callout h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 600;
}

.home-contact-callout p {
    margin: 1rem 0 0;
    font-family: 'Inter', sans-serif;
    font-size: var(--type-page-lead);
    font-weight: 400;
    line-height: 1.45;
}

.home-contact-callout h2 + .btn {
    margin-top: 1.65rem;
}

.home-contact-callout p + .btn {
    margin-top: 1.85rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-ui);
}

.dot--green { background: var(--green); }
.dot--blue { background: var(--blue); }
.dot--coral { background: var(--coral); }

.stats-strip,
.card-grid,
.proof-stack,
.triptych__steps,
.contact-process,
.logo-ribbon,
.flip-grid,
.admin-card-grid {
    display: grid;
    gap: 1rem;
}

.stats-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2.4rem;
}

.section {
    padding: 5.2rem 0;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(20, 78, 130, 0.03));
}

.section--pattern {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(20, 78, 130, 0.94), rgba(20, 78, 130, 0.92)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 18rem);
}

.section--pattern p,
.section--pattern h2,
.section--pattern .eyebrow {
    color: #fff;
}

.section--cta {
    padding-top: 0;
}

.section-heading {
    max-width: 48rem;
    margin-bottom: 2rem;
}

.section-heading p:last-child {
    margin-top: 1rem;
}

.card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-strip div,
.feature-card,
.mini-card,
.case-card,
.proof-card,
.panel,
.sector-showcase__card,
.sticky-card,
.contact-side,
.founder-card,
.contact-process article,
.contact-form-wrap,
.admin-card,
.admin-panel,
.menu-node__card,
.timeline article {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 36px rgba(15, 60, 94, 0.06);
}

.stats-strip div,
.feature-card,
.mini-card,
.case-card,
.proof-card,
.panel,
.sticky-card,
.founder-card,
.contact-process article,
.contact-form-wrap,
.admin-card,
.admin-panel,
.timeline article {
    padding: 1.4rem;
    border-radius: var(--radius-ui);
}

.stats-strip dt {
    font-size: 2rem;
    font-weight: 600;
    color: var(--blue);
}

.stats-strip dd {
    margin: 0.25rem 0 0;
}

.feature-card,
.case-card,
.mini-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.feature-card:hover,
.case-card:hover,
.mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-card img {
    width: 100%;
    height: 14rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-ui);
    object-fit: cover;
}

.case-card:hover {
    background: linear-gradient(145deg, rgba(20, 78, 130, 0.9), rgba(78, 206, 130, 0.92));
}

.case-card:hover h3,
.case-card:hover p,
.case-card:hover span {
    color: #fff;
}

.case-card span,
.proof-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-ui);
    color: var(--blue);
    background: rgba(20, 78, 130, 0.08);
    font-weight: 600;
}

.sector-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.3rem;
}

.sector-showcase__card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.15rem;
    padding: 1.2rem;
    border-radius: var(--radius-ui);
}

.sector-showcase__card img {
    width: 100%;
    height: 100%;
    min-height: 13rem;
    border-radius: var(--radius-ui);
    object-fit: cover;
}

.sector-showcase__card a {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--blue);
    font-weight: 600;
}

.proof-layout,
.dual-content,
.triptych,
.contact-layout,
.admin-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    align-items: start;
}

.panel--accent,
.cta-banner {
    color: #fff;
    background: linear-gradient(135deg, rgba(20, 78, 130, 0.96), rgba(78, 206, 130, 0.88));
}

.panel--accent p,
.panel--accent h2,
.panel--accent .eyebrow,
.cta-banner p,
.cta-banner h2 {
    color: #fff;
}

.list-check {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.list-check li {
    position: relative;
    padding-left: 1.4rem;
}

.list-check li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: var(--radius-ui);
    background: var(--green);
}

.triptych__media {
    display: flex;
    justify-content: center;
    padding: 1rem;
}

.triptych__media img {
    max-width: 18rem;
}

.triptych__steps div {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 0.8rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-ui);
    background: rgba(20, 78, 130, 0.05);
}

.logo-ribbon {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
}

.logo-ribbon img {
    width: 100%;
    max-height: 4.3rem;
    object-fit: contain;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 2rem;
    border-radius: var(--radius-ui);
}

.hero__visual--stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.hero__visual--stack img {
    width: 100%;
    height: 16rem;
    border-radius: var(--radius-ui);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.hero__visual--stack img:last-child {
    grid-column: span 2;
}

.anchor-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.anchor-nav a {
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-ui);
    background: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.sticky-card {
    position: sticky;
    top: 7rem;
}

.icon-list {
    display: grid;
    gap: 0.9rem;
    margin: 1rem 0 1.25rem;
}

.icon-list li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 0.85rem;
    align-items: center;
}

.icon-list img {
    width: 2.4rem;
    height: 2.4rem;
    object-fit: contain;
}

.prose-block {
    max-width: 54rem;
}

.prose-block > * + * {
    margin-top: 1rem;
}

.prose-block ul,
.prose-block ol {
    display: grid;
    gap: 0.45rem;
    padding-left: 1.35rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

.prose-block ul {
    list-style: disc;
}

.prose-block ol {
    list-style: decimal;
}

.prose-block a {
    color: #144e82;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.hero__visual--sector img:first-child,
.hero__visual--portrait img {
    width: 100%;
    border-radius: var(--radius-ui);
    box-shadow: var(--shadow);
}

.hero__accent--sector {
    bottom: -1rem;
    left: -1rem;
    width: 10rem;
}

.founder-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
}

.founder-card blockquote {
    margin: 1.25rem 0 0;
    padding-left: 1rem;
    border-left: 1px solid var(--blue);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
}

.flip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flip-card {
    min-height: 17rem;
    perspective: 1200px;
}

.flip-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s ease;
}

.flip-card:hover .flip-card__inner {
    transform: rotateY(180deg);
}

.flip-card__face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    border-radius: var(--radius-ui);
    backface-visibility: hidden;
}

.flip-card__face--front {
    color: #fff;
    background: linear-gradient(145deg, rgba(20, 78, 130, 0.96), rgba(78, 206, 130, 0.9));
}

.flip-card__face--back {
    transform: rotateY(180deg);
    border: 1px solid var(--line);
    background: #fff;
}

.contact-side {
    display: grid;
    gap: 0.8rem;
    padding: 1.6rem;
    border-radius: var(--radius-ui);
}

.contact-side div {
    display: grid;
    gap: 0.2rem;
}

.contact-side strong {
    font-size: 0.86rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-layout {
    grid-template-columns: 0.95fr 1.05fr;
}

.contact-process article {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
}

.contact-process__title {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.contact-process article p {
    grid-column: 2;
}

.contact-process span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-ui);
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--green));
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form > * + * {
    margin-top: 1rem;
}

.contact-form-summary {
    margin-bottom: 1.25rem;
}

.contact-form-summary p {
    margin-bottom: 0.65rem;
    color: inherit;
}

.contact-form-summary__list {
    display: grid;
    gap: 0.45rem;
}

.contact-form-summary__list a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18rem;
}

.contact-form-wrap {
    scroll-margin-top: 8rem;
}

.form-field.has-error label,
.form-checkbox-row.has-error label {
    color: #c03c3c;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: rgba(192, 60, 60, 0.6);
    background: rgba(255, 87, 87, 0.06);
}

.form-field.has-error input:focus,
.form-field.has-error select:focus,
.form-field.has-error textarea:focus {
    outline: 0;
    border-color: rgba(192, 60, 60, 0.85);
    box-shadow: 0 0 0 3px rgba(255, 87, 87, 0.12);
}

.form-checkbox-row.has-error input[type="checkbox"] {
    outline: 2px solid rgba(192, 60, 60, 0.32);
    outline-offset: 2px;
}

.form-field ul,
.form-checkbox-row ul {
    margin-top: 0.45rem;
    color: #c03c3c;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-field li + li,
.form-checkbox-row li + li {
    margin-top: 0.25rem;
}

.contact-form .is-invalid {
    border-color: rgba(192, 60, 60, 0.45);
    background: rgba(255, 87, 87, 0.06);
}

.contact-form .is-invalid:focus {
    outline: 0;
    border-color: rgba(192, 60, 60, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 87, 87, 0.12);
}

.form-checkbox-row {
    display: grid;
    grid-template-columns: 1.15rem 1fr;
    gap: 0.7rem;
    align-items: start;
}

.form-checkbox-row input[type="checkbox"] {
    grid-column: 1;
    grid-row: 1;
    width: 1.15rem;
    height: 1.15rem;
    margin: 0.12rem 0 0;
    padding: 0;
    accent-color: var(--green);
}

.form-checkbox-row label {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
}

.form-checkbox-row ul {
    grid-column: 2;
    margin: 0.35rem 0 0;
    padding: 0;
    color: var(--coral);
    font-size: 0.88rem;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
}

.page-hero {
    padding: 4rem 0 1rem;
}

.site-footer {
    padding: 2.4rem 0 1.6rem;
    color: var(--ink-soft);
    background: #fff;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: var(--ink-soft);
}

.site-footer a {
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--blue-deep);
}

.site-footer__primary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.45fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: start;
    padding: 0.8rem 0 1.9rem;
}

.site-footer__brand-contact {
    display: grid;
    grid-template-columns: minmax(5rem, 7.2rem) minmax(0, 1fr);
    gap: clamp(1.6rem, 4vw, 3rem);
    align-items: start;
}

.site-footer__brand {
    display: grid;
    gap: 1rem;
    justify-items: start;
}

.site-footer__contact h3,
.site-footer__expertises h3 {
    margin-bottom: 1.25rem;
    color: var(--blue-deep);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 600;
    line-height: 1.3;
}

.site-footer__contact ul,
.site-footer__expertises ul {
    display: grid;
    gap: 0.9rem;
    padding-left: 0;
    list-style: none;
}

.site-footer__contact li,
.site-footer__contact a,
.site-footer__expertises li,
.site-footer__expertises a {
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.08rem);
    font-weight: 400;
    line-height: 1.45;
}

.site-footer__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.site-footer__nav-icon {
    width: 1.35rem;
    height: 1.35rem;
    flex: 0 0 auto;
    border-radius: var(--radius-ui);
    object-fit: contain;
}

.site-footer__logo {
    width: min(5.4rem, 22vw);
    max-height: 6.4rem;
    filter: none;
    object-fit: contain;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.3rem;
}

.site-footer__social a,
.site-footer__social span {
    display: grid;
    place-items: center;
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid rgba(20, 78, 130, 0.18);
    border-radius: var(--radius-ui);
    background: rgba(20, 78, 130, 0.04);
    color: #144e82;
}

.site-footer__social a {
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
    background: #144e82;
    color: #fff;
    transform: translateY(-0.12rem);
}

.site-footer__social svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: currentColor;
}

.site-footer__legal {
    padding: 1.05rem 0 0.15rem;
    border-top: 1px solid var(--line);
}

.site-footer__legal-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.75rem;
    text-align: center;
}

.site-footer__legal-list a,
.site-footer__legal-separator {
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.site-footer__legal-link {
    display: inline-flex;
    align-items: center;
}

.site-footer__legal-link--icon {
    gap: 0.28rem;
    white-space: nowrap;
}

.site-footer__legal-icon {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    object-fit: contain;
}

.site-footer__legal-separator {
    color: rgba(20, 78, 130, 0.38);
}

.site-footer__bottom {
    display: grid;
    position: relative;
    justify-items: center;
    gap: 0.32rem;
    text-align: center;
    margin-top: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: 0.85rem;
}

.site-footer__copyright {
    display: block;
    max-width: 58rem;
    line-height: 1.45;
}

.site-footer__bottom a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.site-footer__credit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.15rem 0;
    color: var(--ink-soft);
    font-size: 0.82rem;
    line-height: 1.45;
}

.site-footer__credit-item {
    display: inline-flex;
    align-items: baseline;
    gap: 0.18rem;
    white-space: nowrap;
}

.site-footer__credit-item + .site-footer__credit-item::before {
    content: '·';
    margin: 0 0.45rem;
    color: rgba(20, 78, 130, 0.45);
}

.site-footer__credit a {
    color: inherit;
    font-weight: 500;
}

.site-footer__credit strong,
.site-footer__credit a:hover,
.site-footer__credit a:focus-visible {
    color: var(--blue);
}

.scroll-top {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    z-index: 2147483000;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--green);
    border-radius: var(--radius-ui);
    background: var(--green);
    color: #fff;
    cursor: pointer;
}

.scroll-top svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: square;
    stroke-linejoin: miter;
}

body:has(.sf-toolbar) .scroll-top {
    bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    left: 1rem;
    z-index: 2147482500;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    width: min(58rem, calc(100vw - 2rem));
    margin-inline: auto;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(20, 78, 130, 0.22);
    border-left: 1px solid var(--blue);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 34px rgba(15, 60, 94, 0.1);
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner__content {
    display: grid;
    gap: 0.25rem;
}

.cookie-banner__content strong {
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
}

.cookie-banner__content p {
    max-width: 46rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.45;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.cookie-banner__actions a,
.cookie-banner__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    padding: 0.7rem 0.95rem;
    border-radius: var(--radius-ui);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.cookie-banner__actions a {
    border: 1px solid rgba(78, 206, 130, 0.46);
    color: var(--green);
    background: rgba(255, 255, 255, 0.72);
}

.cookie-banner__actions a:hover,
.cookie-banner__actions a:focus-visible {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.cookie-banner__actions button {
    cursor: pointer;
}

.cookie-banner__actions .cookie-banner__reject {
    border: 1px solid rgba(20, 78, 130, 0.2);
    color: var(--blue);
    background: #fff;
}

.cookie-banner__actions .cookie-banner__accept {
    border: 1px solid var(--blue);
    color: #fff;
    background: var(--blue);
}

.flash-stack {
    position: relative;
    z-index: 15;
    margin-bottom: 1rem;
}

.flash-stack--inline {
    margin-bottom: 1.35rem;
}

.flash {
    padding: 1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-ui);
    background: #fff;
}

.flash + .flash {
    margin-top: 0.75rem;
}

.flash--success {
    border-color: rgba(78, 206, 130, 0.35);
    background: rgba(78, 206, 130, 0.12);
}

.flash--error {
    border-color: rgba(255, 87, 87, 0.35);
    background: rgba(255, 87, 87, 0.1);
}

.admin-shell,
.login-shell {
    min-height: 100vh;
    padding: 3rem 0;
}

.admin-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-card,
.admin-panel {
    padding: 1.45rem;
    border-radius: var(--radius-ui);
}

.admin-card strong,
.admin-panel h2 {
    display: block;
    margin-bottom: 0.55rem;
}

.admin-sidebar {
    position: sticky;
    top: 2rem;
}

.admin-main {
    display: grid;
    gap: 1.5rem;
}

.admin-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-form > * + * {
    margin-top: 1rem;
}

.menu-tree {
    display: grid;
    gap: 0.9rem;
}

.menu-tree .menu-tree {
    margin-top: 0.85rem;
    margin-left: 1.1rem;
    padding-left: 1rem;
    border-left: 1px dashed rgba(20, 78, 130, 0.15);
}

.menu-node__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-ui);
    cursor: grab;
}

.menu-node__card strong {
    display: block;
    margin-bottom: 0.2rem;
}

.menu-node__card span,
.menu-node__card em {
    display: inline-block;
    margin-right: 0.6rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.menu-node__actions {
    display: flex;
    gap: 0.55rem;
}

.menu-node__actions button {
    padding: 0.6rem 0.9rem;
    border: 0;
    border-radius: var(--radius-ui);
    background: rgba(20, 78, 130, 0.08);
    cursor: pointer;
}

.menu-empty {
    padding: 1rem;
    border: 1px dashed var(--line);
    border-radius: var(--radius-ui);
}

.page-blocks-grid {
    display: grid;
    gap: 1rem;
}

.page-blocks-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-ui);
    background: #fff;
}

.page-blocks-card strong,
.page-block-row__content strong {
    display: block;
    color: var(--blue);
}

.page-blocks-card span,
.page-blocks-card em,
.page-block-row__content span,
.page-block-row__content em {
    display: block;
    margin-top: 0.2rem;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.page-blocks-card__actions,
.page-block-row__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
}

.page-block-list {
    display: grid;
    gap: 0.75rem;
}

.page-block-row {
    display: grid;
    grid-template-columns: auto 7.5rem minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-ui);
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 60, 94, 0.05);
}

.page-block-row.is-disabled {
    opacity: 0.55;
}

.page-block-row__handle {
    color: var(--ink-soft);
    font-weight: 600;
    cursor: grab;
}

.page-block-row__media {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-ui);
    background: rgba(20, 78, 130, 0.06);
}

.page-block-row__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-block-row__media span {
    display: grid;
    min-height: 100%;
    place-items: center;
    padding: 0.6rem;
    color: var(--ink-soft);
    font-size: 0.85rem;
    text-align: center;
}

.page-block-row__actions a,
.page-block-row__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.35rem;
    padding: 0.55rem 0.85rem;
    border: 0;
    border-radius: var(--radius-ui);
    background: rgba(20, 78, 130, 0.08);
    color: var(--blue);
    font: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.login-card {
    width: min(32rem, calc(100vw - 2rem));
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-ui);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.login-card img {
    width: 210px;
    margin-bottom: 1.5rem;
}

.login-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .hero__grid,
    .proof-layout,
    .dual-content,
    .triptych,
    .contact-layout,
    .admin-layout,
    .founder-card,
    .site-footer__primary,
    .admin-card-grid,
    .card-grid--four,
    .timeline,
    .flip-grid {
        grid-template-columns: 1fr;
    }

    .card-grid--three,
    .logo-ribbon {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sector-showcase {
        grid-template-columns: 1fr;
    }

    .sticky-card {
        position: static;
    }

    .cta-banner,
    .page-blocks-card,
    .admin-hero {
        flex-direction: column;
        align-items: stretch;
    }

    .page-block-row {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .page-block-row__media,
    .page-block-row__actions {
        grid-column: 1 / -1;
    }

    .page-block-row__actions {
        justify-content: flex-start;
    }

    .home-approach__content,
    .home-proof-grid,
    .home-services__primary,
    .home-services__secondary {
        grid-template-columns: 1fr;
    }

    .home-approach__content {
        max-width: 37rem;
        margin-inline: auto;
        gap: 2rem;
    }

    .home-domain:first-child {
        order: 2;
    }

    .home-domain:last-child {
        order: 3;
    }

    .home-services__image {
        min-height: unset;
        max-height: 27rem;
    }

    .home-services__media {
        max-height: 27rem;
    }

}

@media (max-width: 860px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .home-approach__content {

        padding-bottom: 0!important;
    }
    .site-header__inner {
        position: relative;
        justify-content: center;
        min-height: 76px;
    }

    .brand {
        width: min(168px, 48vw);
    }

    .mobile-nav {
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        margin-left: 0;
        transform: translateY(-50%);
        z-index: 2;
    }

    .hero {
        padding-top: 3rem;
    }

    .hero__visual--home {
        min-height: auto;
    }

    .hero__grid--home {
        gap: 2rem;
    }

    .hero__badge {
        position: static;
        margin-top: 1rem;
    }

    .stats-strip,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-process article {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .contact-process article p {
        grid-column: auto;
        max-width: 26rem;
    }

    .sector-showcase__card {
        grid-template-columns: 1fr;
    }

    .logo-ribbon {
        grid-template-columns: 1fr;
    }

    .hero__grid--home .hero__visual {
        order: -1;
        justify-content: center;
    }

    .hero__copy--home h1 {
        max-width: none;
        font-size: clamp(2.35rem, 11vw, 3.35rem);
        line-height: 1.05;
        text-align: center;
    }

    .hero__copy--home .hero__lead {
        margin-inline: auto;
        font-size: clamp(1.1rem, 5.4vw, 1.45rem);
        line-height: 1.2;
        text-align: center;
    }

    .hero__copy--home .hero__actions {
        justify-content: center;
    }

    .home-approach {
        padding-top: 2.5rem;
    }

    .home-approach::before {
        width: min(30rem, 88vw);
        height: min(28rem, 82vw);
    }

    .home-approach__inner > h2:not(.home-ribbon) {
        margin-bottom: 2rem;
        font-size: 1.55rem;
        line-height: 1.22;
    }

    .home-ribbon {
        font-size: 1.2rem;
        border-radius: var(--radius-ui);
    }

    .home-services__panel {
        padding: 0 0.85rem 1.25rem;
    }

    .home-services {
        padding-top: 1.35rem;
    }

    .home-services__primary .offer-card {
        transform: none;
    }

    .home-services__title {
        margin: 2rem 0;
        font-size: 1.7rem;
    }

    .home-stats,
    .home-news__grid,
    .news-list__grid,
    .news-article__hero-grid,
    .home-logos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-stats {
        margin-top: 2rem;
    }

    .home-stat__number {
        width: min(18rem, 100%);
        height: 190px;
        font-size: 8rem;
    }

    .home-stats figcaption,
    .home-trust__statement,
    .home-contact-callout p {
        font-size: var(--type-copy);
    }

    .home-engagement {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-engagement img {
        width: min(10rem, 70vw);
        margin-inline: auto;
    }

    .home-stats small {
        font-size: 0.8rem;
    }

    .home-news h2,
    .home-contact-callout h2 {
        font-size: 1.7rem;
    }

    .home-news {
        padding-top: 5rem;
    }

    .home-news__orbit {
        bottom: -7rem;
        left: -3.5rem;
        width: min(26rem, 100vw);
    }

    .home-logos img:nth-child(1),
    .home-logos img:nth-child(2),
    .home-logos img:nth-child(3) {
        width: min(12rem, 70vw);
        height: auto;
    }

    .home-news__grid img {
        height: auto;
    }

    .news-hero,
    .news-article__hero {
        padding: 3.8rem 0 2.1rem;
    }

    .news-article__hero h1 {
        font-size: clamp(2rem, 9.2vw, 2.45rem);
        line-height: 1.08;
    }

    .news-article__lead {
        font-size: var(--type-page-lead);
        line-height: 1.55;
    }

    .news-article__hero time {
        font-size: 0.95rem;
    }

    .news-article__hero img {
        max-height: 18.5rem;
        object-fit: cover;
    }

    .news-article__content {
        width: min(100%, calc(100vw - 2rem));
        padding: 2.1rem 0 4rem;
        font-size: var(--type-page-lead);
        line-height: 1.7;
    }

    .news-article__content p {
        margin-bottom: 1.15rem;
        font-size: var(--type-page-lead);
        line-height: 1.7;
    }

    .news-article__content h2 {
        margin: 2.6rem 0 1rem;
        font-size: 1.55rem;
        line-height: 1.18;
    }

    .news-article__content h3 {
        margin: 2.25rem 0 0.9rem;
        font-size: 1.28rem;
        line-height: 1.22;
    }
}

/* Reference page layouts */
.page-about .site-main,
.page-expertises_index .site-main,
.page-expertises .site-main,
.page-training .site-main,
.page-formation .site-main,
.page-sectors .site-main,
.page-sector_essms .site-main,
.page-sector_pme .site-main {
    background: #fff;
}

.reference-section {
    padding: 3.5rem 0;
}

.reference-hero {
    position: relative;
    overflow: visible;
    padding: 5rem 0 3.5rem;
    background: linear-gradient(120deg, var(--quasi-white), #fff);
}

.reference-hero--orbit::before {
    content: none;
    position: absolute;
    top: 2rem;
    left: calc(23% - 4rem);
    width: min(36rem, 48vw);
    height: min(34rem, 45vw);
    /*background: url('/media/home/coeur-cadre-aquesis.webp') top center / contain no-repeat;*/
    opacity: 1;
    pointer-events: none;
}

.reference-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.82fr;
    gap: 4.2rem;
    align-items: center;
    width: min(1080px, calc(100vw - 3rem));
    margin-inline: auto;
}

.reference-hero__wide {
    position: relative;
    z-index: 1;
    width: min(1080px, calc(100vw - 3rem));
}

.reference-hero__wide h1 {
    max-width: 21ch;
}

.reference-hero__wide p:not(.reference-kicker) {
    max-width: 62rem;
}

.reference-hero h1,
.organization-hero h1 {
    margin: 0.75rem 0 1.3rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3vw, 2.9rem);
    font-weight: 600;
    line-height: 1.36;
}

.reference-hero p,
.organization-hero p {
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.75;
}

.reference-hero .btn,
.organization-hero .btn {
    margin-top: 1.55rem;
}

.reference-kicker {
    color: #144e82;
    font-size: var(--type-page-kicker);
    font-weight: 600;
}

.reference-cutout {
    width: 100%;
    max-width: 25rem;
    margin-inline: auto;
    object-fit: contain;
}

.reference-cutout-link {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    cursor: zoom-in;
}

.reference-cutout-link .reference-cutout {
    transition:
        filter 0.24s ease,
        transform 0.24s ease;
}

.reference-cutout-link:hover .reference-cutout,
.reference-cutout-link:focus-visible .reference-cutout {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.015);
}

.reference-cutout--small {
    max-width: 15rem;
}

.reference-title {
    margin: 0 0 2rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
}

.about-commitment .reference-title {
    color: var(--ink);
}

.orbit-section {
    position: relative;
    overflow: hidden;
    padding: 2.2rem 0 4.8rem;
    background: #fff;
}

.orbit-section::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 1rem;
    left: 50%;
    width: min(80rem);
    height: min(58rem);
    transform: translateX(-50%);
    /*background: url('/media/home/coeur-cadre-aquesis.webp') center / contain no-repeat;*/
    opacity: 1;
}

.orbit-section .shell {
    position: relative;
    z-index: 1;
}

.outline-card {
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(78, 206, 130, 0.58);
    border-radius: var(--radius-ui);
    background: rgba(255, 255, 255, 0.96);
}

.outline-card h3 {
    margin-bottom: 0.65rem;
    color: #4ece82;
    font-family: 'Outfit', sans-serif;
    font-size: 1.18rem;
    font-weight: 600;
}

.outline-card p {
    color: #0f3c5e;
    line-height: 1.55;
}

.about-adn__cards {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 32rem) minmax(0, 32rem);
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    min-height: 0;
    margin-top: 1.8rem;
}

.about-adn__intro {
    max-width: 58rem;
    margin: 0.85rem auto 0;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.55;
    text-align: center;
}

.about-adn__subtitle {
    margin: 1.4rem auto 0;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

.about-adn__cards::before {
    content: none;
    display: none;
}

.about-adn__cards--count-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
    max-width: 72rem;
    gap: 1.15rem;
}

.about-adn__cards--count-3::before {
    content: none;
    display: none;
}

.about-adn__card {
    position: relative;
    z-index: 1;
    min-height: 16rem;
    padding: 1.25rem 1.5rem 1.35rem;
    border-width: 1px;
    border-color: #4ece82;
    border-radius: var(--radius-ui);
    box-shadow: 0 2px 0 rgba(20, 78, 130, 0.95);
    transition:
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.about-adn__card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.36rem;
    line-height: 1.25;
}

.about-adn__card h3:last-child {
    margin-bottom: 0;
}

.about-adn__card p {
    color: #0f3c5e;
    font-size: var(--type-copy);
    line-height: 1.45;
}

.about-adn__card--left {
    justify-self: end;
    z-index: 3;
}

.about-adn__card--pillar {
    z-index: 3;
    display: grid;
    align-content: center;
    min-height: 11.5rem;
    text-align: center;
}

.about-adn__card--right {
    justify-self: start;
    margin-top: 0;
    padding-left: 1.5rem;
}

.about-adn.orbit-section::before {
    content: none;
    display: none;
}

.about-adn__card:hover,
.about-adn__card:focus-visible {
    z-index: 4;
    border-color: #144e82;
    box-shadow: 0 20px 42px rgba(20, 78, 130, 0.18);
    transform: translateY(-0.35rem);
}

.js-reveal .about-adn__card.is-visible:hover,
.js-reveal .about-adn__card.is-visible:focus-visible {
    transform: translateY(-0.35rem);
}

.js-reveal [data-reveal],
.js-reveal .reveal-on-scroll {
    --reveal-transform-extra: scaleX(1);
    opacity: 0;
    filter: blur(14px);
    transition:
        opacity 0.82s ease,
        filter 0.82s ease,
        transform 0.86s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: var(--reveal-delay, 0ms);
    transform: translate3d(0, 3rem, 0) scale(0.985) var(--reveal-transform-extra);
    will-change: opacity, filter, transform;
}

.js-reveal [data-reveal="from-left"] {
    transform: translate3d(-4.5rem, 0, 0) var(--reveal-transform-extra);
}

.js-reveal [data-reveal="from-right"] {
    transform: translate3d(4.5rem, 0, 0) var(--reveal-transform-extra);
}

.js-reveal.is-scrolling-up .reveal-on-scroll:not(.is-visible) {
    transform: translate3d(0, -2.4rem, 0) scale(0.985) var(--reveal-transform-extra);
}

.js-reveal.is-scrolling-down .reveal-on-scroll:not(.is-visible) {
    filter: blur(16px);
    transform: translate3d(0, 3.4rem, 0) scale(0.985) var(--reveal-transform-extra);
}

.js-reveal [data-reveal].is-visible,
.js-reveal .reveal-on-scroll.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) var(--reveal-transform-extra);
}

.js-reveal .home-services__primary .home-services__image.reveal-on-scroll:not(.is-visible),
.js-reveal .reference-cutout.reveal-on-scroll:not(.is-visible),
.js-reveal .expertise-feature:not(.expertise-feature--reverse) img.reveal-on-scroll:not(.is-visible),
.js-reveal .expertise-triptych__image.reveal-on-scroll:not(.is-visible),
.js-reveal .feature-card:nth-child(odd) img.reveal-on-scroll:not(.is-visible),
.js-reveal .sector-showcase__card:nth-child(odd) img.reveal-on-scroll:not(.is-visible),
.js-reveal .triptych__media img:nth-child(odd).reveal-on-scroll:not(.is-visible),
.js-reveal .hero__visual--stack img:nth-child(odd).reveal-on-scroll:not(.is-visible),
.js-reveal .hero__visual--sector img.reveal-on-scroll:not(.is-visible),
.js-reveal .hero__visual--portrait img.reveal-on-scroll:not(.is-visible),
.js-reveal .training-approach__layout img.reveal-on-scroll:not(.is-visible),
.js-reveal .course-hero img.reveal-on-scroll:not(.is-visible),
.js-reveal .news-article__hero img.reveal-on-scroll:not(.is-visible),
.js-reveal .editorial-block--media img.reveal-on-scroll:not(.is-visible),
.js-reveal .home-news-card:nth-child(odd).reveal-on-scroll:not(.is-visible),
.js-reveal .home-news__grid img:nth-child(odd).reveal-on-scroll:not(.is-visible) {
    filter: blur(16px);
    transform: translate3d(5.5rem, 0, 0) scale(0.97) var(--reveal-transform-extra);
}

.js-reveal .about-commitment__layout img.reveal-on-scroll:not(.is-visible),
.js-reveal .about-founder__photo.reveal-on-scroll:not(.is-visible),
.js-reveal .expertise-feature--reverse img.reveal-on-scroll:not(.is-visible),
.js-reveal .feature-card:nth-child(even) img.reveal-on-scroll:not(.is-visible),
.js-reveal .sector-showcase__card:nth-child(even) img.reveal-on-scroll:not(.is-visible),
.js-reveal .triptych__media img:nth-child(even).reveal-on-scroll:not(.is-visible),
.js-reveal .hero__visual--stack img:nth-child(even).reveal-on-scroll:not(.is-visible),
.js-reveal .course-related__grid img:nth-child(odd).reveal-on-scroll:not(.is-visible),
.js-reveal .news-card:nth-child(even).reveal-on-scroll:not(.is-visible),
.js-reveal .home-news-card:nth-child(even).reveal-on-scroll:not(.is-visible),
.js-reveal .home-news__grid img:nth-child(even).reveal-on-scroll:not(.is-visible) {
    filter: blur(16px);
    transform: translate3d(-5.5rem, 0, 0) scale(0.97) var(--reveal-transform-extra);
}

.js-reveal .training-card:nth-child(odd) img.reveal-on-scroll:not(.is-visible),
.js-reveal .news-card:nth-child(odd).reveal-on-scroll:not(.is-visible) {
    filter: blur(16px);
    transform: translate3d(-4rem, 0, 0) scale(0.97) var(--reveal-transform-extra);
}

.js-reveal .training-card:nth-child(even) img.reveal-on-scroll:not(.is-visible),
.js-reveal .course-related__grid img:nth-child(even).reveal-on-scroll:not(.is-visible) {
    filter: blur(16px);
    transform: translate3d(4rem, 0, 0) scale(0.97) var(--reveal-transform-extra);
}

.about-commitment__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 2.4rem;
    width: min(68rem, 100%);
    margin: 1.9rem auto 4rem;
}

.about-commitment__layout--with-diagram {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.08fr);
    align-items: start;
    width: min(72rem, 100%);
    margin-bottom: 9rem;
}

.about-commitment__heading {
    display: grid;
    justify-items: center;
    gap: 0.35rem;
    text-align: center;
}

.about-commitment__heading p {
    color: #144e82;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-commitment__heading h2 {
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.35rem, 4.1vw, 3.55rem);
    font-weight: 400;
    line-height: 1.08;
}

.about-commitment__layout > p,
.about-commitment__text {
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.45;
}

.about-commitment__text p {
    margin: 0;
}

.about-commitment__text p + p {
    margin-top: 1rem;
}

.about-commitment__layout img {
    width: min(100%, 36rem);
    margin-inline: auto;
}

.about-performance-diagram {
    display: grid;
    grid-template-areas:
        ". top ."
        "left image right";
    grid-template-columns: minmax(12rem, 1fr) minmax(11rem, 13.5rem) minmax(12rem, 1fr);
    gap: 0.65rem 1rem;
    align-items: center;
    justify-items: center;
    width: min(100%, 54rem);
    margin-inline: auto;
    margin-bottom: clamp(3.8rem, 6vw, 5.8rem);
    padding: 1rem 0 0;
}

.about-performance-diagram > .about-performance-diagram__image {
    grid-area: image;
    width: min(100%, 245px);
    height: auto;
    object-fit: contain;
}

.about-performance-diagram__items {
    display: contents;
}

.about-performance-diagram__item {
    width: 100%;
    max-width: 16.75rem;
    min-height: 6.35rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(20, 78, 130, 0.14);
    border-radius: var(--radius-ui);
    background: #fff;
    box-shadow: 0 14px 28px rgba(15, 60, 94, 0.08);
}

.about-performance-diagram__item h3 {
    margin: 0 0 0.35rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.25;
}

.about-performance-diagram__item--1 {
    grid-area: top;
    max-width: 16.75rem;
}

.about-performance-diagram__item--2 {
    position: relative;
    grid-area: left;
    align-self: end;
    justify-self: end;
    top: 7.4rem;
}

.about-performance-diagram__item--3 {
    position: relative;
    grid-area: right;
    align-self: end;
    justify-self: start;
    top: 7.4rem;
}

.about-performance-diagram__item p {
    margin: 0;
    color: #0f3c5e;
    font-size: clamp(0.83rem, 0.95vw, 0.93rem);
    line-height: 1.34;
}

.about-performance-diagram__item p strong {
    display: block;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.about-values__title {
    position: relative;
    width: fit-content;
    margin: 0 auto 2.15rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.2vw, 2.85rem);
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
}

.about-values__title::after {
    content: '';
    position: absolute;
    right: 0.2rem;
    bottom: -0.42rem;
    left: 34%;
    height: 0.22rem;
    border-radius: var(--radius-ui);
    background: linear-gradient(90deg, #4ece82 0%, #144e82 72%, #ff5757 100%);
}

.about-values__intro {
    max-width: 64rem;
    margin: -0.8rem auto 2rem;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.55;
    text-align: center;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 1.05rem;
}

.about-value-card {
    --value-accent: #144e82;
    --value-accent-strong: #0f3c5e;
    --value-accent-rgb: 20, 78, 130;
    --value-bg: #f0faff;
    position: relative;
    isolation: isolate;
    display: grid;
    align-content: start;
    min-height: 8.85rem;
    padding: 1.05rem 1.05rem 1.05rem 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(var(--value-accent-rgb), 0.24);
    border-radius: var(--radius-ui);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, var(--value-bg) 100%),
        radial-gradient(circle at 92% 15%, rgba(var(--value-accent-rgb), 0.14), transparent 38%);
    box-shadow: 0 12px 28px rgba(15, 60, 94, 0.08);
    transition:
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.about-value-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.32rem;
    background: var(--value-accent);
    z-index: 2;
}

.about-value-card::after {
    content: '';
    position: absolute;
    right: -2.4rem;
    bottom: -2.4rem;
    width: 6.2rem;
    height: 6.2rem;
    border-radius: 50%;
    background: rgba(var(--value-accent-rgb), 0.1);
    opacity: 0.72;
    transform: scale(0.72);
    z-index: 0;
    transition:
        opacity 0.24s ease,
        transform 0.24s ease;
}

.about-value-card__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 3.3rem;
}

.about-value-card__header::after {
    content: '+';
    display: grid;
    place-items: center;
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    margin-left: auto;
    border-radius: var(--radius-ui);
    background: rgba(var(--value-accent-rgb), 0.1);
    color: var(--value-accent);
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    transition:
        background 0.24s ease,
        color 0.24s ease,
        transform 0.24s ease;
}

.about-value-card__index {
    display: grid;
    place-items: center;
    flex: 0 0 2.35rem;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: var(--radius-ui);
    background: rgba(var(--value-accent-rgb), 0.11);
    color: var(--value-accent);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    transition:
        background 0.24s ease,
        color 0.24s ease;
}

.about-value-card h3 {
    margin: 0;
    color: #0f3c5e;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 600;
    line-height: 1.15;
    transition: color 0.24s ease;
}

.about-value-card p {
    position: relative;
    z-index: 1;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    color: #0f3c5e;
    font-size: var(--type-copy);
    font-weight: 600;
    line-height: 1.44;
    opacity: 0;
    transform: translateY(-0.3rem);
    transition:
        color 0.24s ease,
        max-height 0.36s ease,
        margin-top 0.24s ease,
        opacity 0.22s ease,
        transform 0.24s ease;
}

.about-value-card:hover,
.about-value-card:focus-visible {
    border-color: rgba(var(--value-accent-rgb), 0.58);
    background:
        linear-gradient(135deg, var(--value-accent) 0%, var(--value-accent-strong) 100%),
        radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.26), transparent 34%);
    box-shadow: 0 20px 42px rgba(var(--value-accent-rgb), 0.16);
    transform: translateY(-0.28rem);
}

.js-reveal .about-value-card.is-visible:hover,
.js-reveal .about-value-card.is-visible:focus-visible {
    transform: translateY(-0.28rem);
}

.about-value-card:hover::after,
.about-value-card:focus-visible::after {
    background: rgba(255, 255, 255, 0.14);
    opacity: 1;
    transform: scale(1);
}

.about-value-card:hover .about-value-card__index,
.about-value-card:focus-visible .about-value-card__index {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.about-value-card:hover .about-value-card__header::after,
.about-value-card:focus-visible .about-value-card__header::after {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: rotate(45deg);
}

.about-value-card:hover h3,
.about-value-card:focus-visible h3,
.about-value-card:hover p,
.about-value-card:focus-visible p {
    color: #fff;
}

.about-value-card:hover p,
.about-value-card:focus-visible p {
    max-height: 18rem;
    margin-top: 0.78rem;
    opacity: 1;
    transform: translateY(0);
}

.about-value-card:focus-visible {
    outline: 3px solid rgba(var(--value-accent-rgb), 0.24);
    outline-offset: 3px;
}

.about-value-card--tone-2 {
    --value-accent: #4ece82;
    --value-accent-strong: #144e82;
    --value-accent-rgb: 78, 206, 130;
    --value-bg: #f0faff;
}

.about-value-card--tone-3 {
    --value-accent: #ff5757;
    --value-accent-strong: #144e82;
    --value-accent-rgb: 255, 87, 87;
    --value-bg: #f0faff;
}

.about-value-card--tone-4 {
    --value-accent: #4ece82;
    --value-accent-strong: #144e82;
    --value-accent-rgb: 78, 206, 130;
    --value-bg: #f0faff;
}

.about-value-card--tone-5 {
    --value-accent: #7db1db;
    --value-accent-strong: #144e82;
    --value-accent-rgb: 125, 177, 219;
    --value-bg: #f0faff;
}

.about-value-card--tone-6 {
    --value-accent: #a1b7c6;
    --value-accent-strong: #144e82;
    --value-accent-rgb: 161, 183, 198;
    --value-bg: #f0faff;
}

.about-founder {
    background: #f0faff;
}

.about-quote {
    background: linear-gradient(135deg, rgba(20, 78, 130, 0.08), rgba(78, 206, 130, 0.12));
}

.about-quote blockquote {
    max-width: 66rem;
    margin: 0 auto;
    padding: 2rem 2.2rem;
    border-left: 1px solid #4ece82;
    border-radius: var(--radius-ui);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 38px rgba(15, 60, 94, 0.08);
}

.about-quote p {
    margin: 0;
    color: #0f3c5e;
    font-family: 'Inter', sans-serif;
    font-size: 1.85rem;
    line-height: 1.28;
}

.about-founder__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 3.2rem;
    max-width: 66rem;
    margin-inline: auto;
}

.about-founder__photo {
    width: min(100%, 31rem);
    margin-inline: auto;
}

.about-founder__quote p {
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.62;
}

.about-founder__quote div {
    display: grid;
    gap: 0.9rem;
}

.about-founder__layout strong {
    display: block;
    margin-top: 1.4rem;
    color: #144e82;
    font-size: 1.1rem;
}

.expertise-flow > .shell,
.training-catalog > .shell {
    width: min(1080px, calc(100vw - 3rem));
}

.expertise-feature {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 2rem;
}

.expertise-feature--text-only {
    grid-template-columns: minmax(0, 1fr);
}

.expertise-feature--split-body {
    align-items: start;
    gap: 2rem 3.5rem;
}

.expertise-feature--split-body .expertise-feature__copy {
    align-self: center;
}

.expertise-feature__columns {
    order: 3;
    grid-column: 1 / -1;
    column-count: 2;
    column-gap: 2.2rem;
    max-width: none;
    margin: -0.35rem 0 1.2rem;
}

.expertise-feature__columns p {
    margin: 0 0 0.95rem;
    break-inside: avoid;
}

.expertise-feature--text-only .expertise-feature__copy {
    max-width: 46rem;
    order: initial;
}

.expertise-feature--reverse .expertise-feature__copy {
    order: 2;
}

.expertise-feature--reverse img {
    order: 1;
}

.expertise-feature h2 {
    margin-bottom: 0.75rem;
    color: #144e82;
    font-size: 2rem;
}

.expertise-feature strong {
    display: block;
    margin-bottom: 1rem;
}

.reference-list {
    display: grid;
    gap: 0.65rem;
    padding-left: 1.2rem;
    list-style: disc;
}

.reference-list li {
    color: #0f3c5e;
    line-height: 1.55;
}

.reference-objective {
    position: relative;
    margin: 1rem 0 0;
    padding: 0.95rem 1rem 0.95rem 1.15rem;
    border: 1px solid rgba(20, 78, 130, 0.2);
    border-left: 1px solid var(--blue);
    border-radius: var(--radius-ui);
    background:
        linear-gradient(135deg, rgba(20, 78, 130, 0.08), rgba(78, 206, 130, 0.08)),
        #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    font-weight: 500;
    line-height: 1.45;
}

.reference-objective strong {
    color: #144e82;
    font-weight: 600;
}

.reference-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 0 0 4rem;
}

.reference-examples article {
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    gap: 0.65rem;
    min-height: 8.8rem;
    padding: 1.35rem 1.15rem;
    overflow: hidden;
    border: 1px solid rgba(78, 206, 130, 0.72);
    border-radius: var(--radius-ui);
    background:
        radial-gradient(circle at top right, rgba(78, 206, 130, 0.24), transparent 8rem),
        #f0faff;
    color: #0f3c5e;
    text-align: center;
    box-shadow: 0 2px 0 rgba(20, 78, 130, 0.95);
    transition:
        color 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.reference-examples article::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: auto auto -3.5rem -3.5rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: rgba(255, 87, 87, 0.16);
    transition: transform 0.32s ease, opacity 0.32s ease;
}

.reference-examples article span {
    display: inline-grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    color: #fff;
    background: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
}

.reference-examples article strong {
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.reference-examples article:hover,
.reference-examples article:focus-visible {
    border-color: transparent;
    background: linear-gradient(145deg, #4ece82 0%, #144e82 100%);
    box-shadow: 0 20px 42px rgba(20, 78, 130, 0.2);
    transform: translateY(-0.45rem) rotate(-0.7deg);
}

.reference-examples article:hover::before,
.reference-examples article:focus-visible::before {
    opacity: 0.6;
    transform: scale(1.35);
}

.reference-examples article:hover span,
.reference-examples article:focus-visible span {
    color: #144e82;
    background: #fff;
}

.reference-examples article:hover strong,
.reference-examples article:focus-visible strong {
    color: #fff;
}

.expertise-triptych {
    margin-top: 1rem;
}

.expertise-triptych--text-only .expertise-triptych__copy {
    max-width: 56rem;
}

.expertise-triptych p {
    margin: 1.7rem 0 0;
    color: #0f3c5e;
}

.page-expertises .reference-hero {
    padding: 5rem 0 3.5rem;
}

.page-expertises .reference-hero--orbit::before {
    top: 11rem;
    left: calc(23% - 6rem);
    width: min(42rem, 50vw);
    height: min(40rem, 48vw);
}

.page-expertises .reference-hero__wide {
    width: min(1100px, calc(100vw - 3rem));
}

.page-expertises .reference-kicker {
    color: #144e82;
    font-size: var(--type-page-kicker);
    line-height: 1.45;
}

.page-expertises .reference-hero__wide h1 {
    max-width: 67rem;
    margin: 0.75rem 0 1.3rem;
    font-size: var(--type-page-h1);
    line-height: 1.18;
}

.page-expertises .reference-hero__wide p:not(.reference-kicker) {
    max-width: 68.2rem;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.35;
}

.page-expertises .reference-hero__wide p:not(.reference-kicker) strong {
    color: #0f3c5e;
    font-weight: 700;
}

.page-expertises .reference-hero .btn {
    display: inline-flex;
    margin-left: 0;
    background: #144e82;
}

.page-expertises .expertise-flow {
    padding-top: 3.4rem;
}

.page-expertises .expertise-flow > .shell {
    width: min(1140px, calc(100vw - 3rem));
}

.page-expertises .expertise-feature {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 3.5rem;
    margin-bottom: 4.6rem;
}

.page-expertises .expertise-feature--reverse {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    margin-top: 2.6rem;
}

.page-expertises .expertise-feature--text-only,
.page-expertises .expertise-feature--reverse.expertise-feature--text-only {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 0;
}

.page-expertises .expertise-feature--text-only .expertise-feature__copy {
    max-width: 52rem;
}

.page-expertises .expertise-feature__copy {
    padding-left: 0;
}

.page-expertises .expertise-feature--reverse .expertise-feature__copy {
    padding-left: 0;
}

.page-expertises .expertise-feature h2 {
    margin-bottom: 0.45rem;
    color: #144e82;
    font-size: 30px;
    line-height: 1.6;
}

.page-expertises .expertise-feature:not(.expertise-feature--reverse) h2 {
    position: relative;
    top: 0;
}

.page-expertises .expertise-feature--reverse h2 {
    margin-bottom: 1.4rem;
}

.page-expertises .expertise-feature__lead,
.page-expertises .expertise-feature__body p,
.page-expertises .reference-list li {
    color: #0f3c5e;
    font-family: 'Outfit', sans-serif;
    font-size: var(--type-page-lead);
    font-weight: 300;
    line-height: 1.45;
}

.page-expertises .expertise-feature__lead {
    max-width: 38.7rem;
    margin-bottom: 1.25rem;
}

.page-expertises .expertise-feature__body {
    max-width: 38.7rem;
}

.page-expertises .expertise-feature--split-body .expertise-feature__body,
.page-expertises .expertise-feature--split-body .expertise-feature__lead {
    max-width: 40rem;
}

.page-expertises .expertise-feature__columns p {
    color: #0f3c5e;
    font-family: 'Outfit', sans-serif;
    font-size: var(--type-page-lead);
    font-weight: 300;
    line-height: 1.6;
}

.page-expertises .expertise-feature__columns strong {
    display: inline;
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    line-height: inherit;
}

.page-expertises .expertise-feature__body p {
    margin: 0 0 0.85rem;
}

.page-expertises .expertise-feature__body p:has(> strong:only-child) {
    margin: 1rem 0 0.15rem;
}

.page-expertises .expertise-feature__body p:first-child {
    margin-top: 0;
}

.page-expertises .expertise-feature--reverse .expertise-feature__lead {
    margin-bottom: 2rem;
}

.page-expertises .expertise-feature__lead strong,
.page-expertises .expertise-feature__body strong,
.page-expertises .reference-list li strong {
    display: inline;
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: 600;
    line-height: inherit;
}

.page-expertises .reference-list {
    gap: 0;
    max-width: 38.7rem;
    padding-left: 2.5rem;
}

.page-expertises .reference-list--compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    max-width: 40rem;
    padding-left: 0;
    list-style: none;
}

.page-expertises .reference-list--compact li,
.page-expertises .reference-list--compact li:last-child {
    margin: 0;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(20, 78, 130, 0.2);
    border-radius: var(--radius-ui);
    background: var(--quasi-white);
    box-shadow: none;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.45;
    list-style: none;
}

.page-expertises .reference-list--compact li:last-child {
    grid-column: 1 / -1;
    background: var(--quasi-white);
}

.page-expertises .reference-cutout {
    max-width: 32.3rem;
    margin-top: 2.75rem;
    transform-origin: center;
}

.page-expertises .expertise-feature:not(.expertise-feature--reverse) .reference-cutout {
    max-width: 30.4rem;
}

.page-expertises .expertise-feature--reverse .reference-cutout {
    margin-top: 0;
}

.page-expertises .reference-cutout--photo {
    aspect-ratio: 3 / 2;
    max-width: 31.5rem;
    border-radius: var(--radius-ui);
    object-fit: cover;
    box-shadow: 0 18px 42px rgba(15, 60, 94, 0.13);
}

.page-expertises .reference-examples__title {
    margin: 0 0 1.45rem;
    color: #0f3c5e;
    font-family: 'Outfit', sans-serif;
    font-size: var(--type-copy);
    line-height: 1.6;
    text-align: center;
}

.page-expertises .reference-examples {
    gap: 1.25rem;
    margin-bottom: 5rem;
}

.page-expertises .reference-examples article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 11.1rem;
    padding: 33px 1.15rem 1.45rem;
    border: 1px solid rgba(20, 78, 130, 0.2);
    border-radius: var(--radius-ui);
    background: var(--quasi-white);
    box-shadow: none;
    color: #0f3c5e;
    text-align: center;
    transform: none;
}

.page-expertises .reference-examples article::before,
.page-expertises .reference-examples article span {
    content: none;
    display: none;
}

.page-expertises .reference-examples article strong,
.page-expertises .reference-examples article p {
    display: block;
    margin: 0;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    font-weight: 400;
    line-height: 1.6;
}

.page-expertises .reference-examples article strong {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.page-expertises .reference-examples article p {
    font-family: 'Inter', sans-serif;
}

.page-expertises .reference-examples article:hover,
.page-expertises .reference-examples article:focus-visible {
    border-color: rgba(20, 78, 130, 0.34);
    background: #fff;
    box-shadow: none;
    transform: none;
}

.page-expertises .reference-examples article:hover strong,
.page-expertises .reference-examples article:focus-visible strong {
    color: #0f3c5e;
}

.page-expertises .expertise-triptych {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(11rem, 12rem);
    gap: 3rem;
    align-items: center;
    margin-top: 0;
}

.page-expertises .expertise-triptych--text-only {
    grid-template-columns: minmax(0, 1fr);
}

.page-expertises .expertise-triptych--text-only .expertise-triptych__copy {
    max-width: 56rem;
}

.page-expertises .expertise-triptych .home-ribbon {
    grid-column: 1 / -1;
    margin-bottom: 1.65rem;
    line-height: 1.6;
}

.page-expertises .expertise-triptych__copy {
    padding-left: 0.625rem;
}

.page-expertises .expertise-triptych__body p,
.page-expertises .expertise-triptych__body li {
    color: #0f3c5e;
    font-family: 'Inter', sans-serif;
    font-size: var(--type-page-lead);
    font-weight: 400;
    line-height: 1.6;
}

.page-expertises .expertise-triptych__body p {
    margin: 0 0 1rem;
}

.page-expertises .expertise-triptych__body ol {
    margin: 0 0 1rem;
    padding-left: 2.5rem;
}

.page-expertises .expertise-triptych__image {
    width: 100%;
    max-width: 24rem;
    margin-inline: auto 0;
}

.page-expertises .expertise-triptych__image--symbol {
    max-width: 12rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.page-slug-nos-expertises-conseil-audit .expertise-triptych {
    grid-template-columns: minmax(0, 0.92fr) minmax(26rem, 38rem);
    gap: clamp(1.2rem, 2.4vw, 2rem);
    text-align: left;
}

.page-slug-nos-expertises-conseil-audit .expertise-triptych__copy {
    padding-left: 0;
}

.page-slug-nos-expertises-conseil-audit .expertise-triptych__body {
    text-align: left;
}

.page-slug-nos-expertises-conseil-audit .expertise-triptych .home-ribbon {
    margin-bottom: 1.1rem;
    line-height: 1.24;
}

.page-slug-nos-expertises-conseil-audit .expertise-triptych__body p {
    margin-bottom: 0.78rem;
}

.page-slug-nos-expertises-conseil-audit .expertise-triptych__body ol {
    margin-bottom: 0.78rem;
    padding-left: 1.45rem;
}

.page-slug-nos-expertises-conseil-audit .expertise-triptych__body li + li {
    margin-top: 0.25rem;
}

.page-slug-nos-expertises-conseil-audit .expertise-triptych__image {
    max-width: min(100%, 38rem);
}

.page-slug-nos-expertises-conseil-audit .expertise-feature__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 3rem;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature__columns .reference-objective {
    grid-column: 1 / -1;
    margin-top: 0.35rem;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature--conseil-compact {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(0.65rem, 2vw, 1.5rem);
    align-items: center;
    margin-bottom: 4rem;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature--conseil-compact .expertise-feature__copy {
    max-width: none;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature--conseil-compact h2 {
    margin-bottom: 0.85rem;
    line-height: 1.22;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature--conseil-compact .expertise-feature__lead {
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.4;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature--conseil-compact .expertise-feature__lead strong {
    font-weight: 600;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature--conseil-compact .expertise-feature__body {
    max-width: 43rem;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature--conseil-compact .expertise-feature__body p {
    margin: 0;
    color: #0f3c5e;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.42;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature--conseil-compact .expertise-feature__body p:not(.reference-objective) + p:not(.reference-objective) {
    margin-top: 0.9rem;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature--conseil-compact .expertise-feature__body .reference-objective {
    margin-top: 1.2rem;
    padding: 1rem 1.15rem;
    line-height: 1.5;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature--conseil-compact .reference-cutout {
    max-width: 32.3rem;
    margin-top: 1rem;
}

.expertise-extra-blocks {
    display: grid;
    gap: 1.1rem;
    margin: -1.2rem 0 4rem;
}

.expertise-extra-block {
    max-width: 55rem;
    margin-inline: auto;
    padding: 1.25rem 1.45rem;
    border: 1px solid rgba(20, 78, 130, 0.2);
    border-left: 1px solid var(--blue);
    border-radius: var(--radius-ui);
    background: var(--quasi-white);
    box-shadow: none;
}

.expertise-extra-block h2 {
    margin-bottom: 0.6rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    line-height: 1.3;
}

.expertise-extra-block__body,
.expertise-extra-block__body p {
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.65;
}

.expertise-stats {
    margin: 4rem auto 0;
    text-align: center;
}

.expertise-stats h2,
.expertise-references h2 {
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.2;
}

.expertise-stats > p,
.expertise-references > p {
    max-width: 48rem;
    margin: 0.8rem auto 0;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.65;
}

.expertise-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 58rem;
    margin: 2rem auto 0;
}

.expertise-stats__grid article {
    display: grid;
    align-content: center;
    gap: 0.45rem;
    min-height: 10rem;
    padding: 1.4rem 1rem;
    border: 1px solid rgba(20, 78, 130, 0.14);
    border-radius: var(--radius-ui);
    background: linear-gradient(145deg, #f0faff 0%, #f0faff 100%);
}

.expertise-stats__grid strong {
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 6vw, 4.7rem);
    font-weight: 400;
    line-height: 0.9;
}

.expertise-stats__grid span {
    color: #0f3c5e;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

.expertise-references {
    max-width: 56rem;
    margin: 3rem auto 0;
    text-align: center;
}

.expertise-references__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.6rem;
}

.expertise-references__logos img {
    width: auto;
    max-width: min(13rem, 42vw);
    max-height: 5.2rem;
    object-fit: contain;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-stats__grid {
    max-width: 66rem;
    gap: 1.8rem;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-stats__grid article {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-stats__grid strong {
    display: block;
    color: transparent;
    background: linear-gradient(180deg, #4ece82 0%, #4ece82 45%, #144e82 100%);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: clamp(5rem, 10vw, 8rem);
    font-style: italic;
    font-variant-numeric: tabular-nums;
    line-height: 0.9;
    transform: skewX(-4deg);
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-stats__grid span {
    display: block;
    max-width: 16rem;
    margin-inline: auto;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: 1.22rem;
    font-weight: 500;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych {
    grid-template-columns: minmax(0, 1fr) minmax(6rem, 8rem);
    column-gap: 1.4rem;
    row-gap: 0.55rem;
    max-width: 58rem;
    margin-inline: auto;
    text-align: center;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych .home-ribbon {
    grid-column: 1;
    margin-bottom: 0;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych__copy {
    grid-column: 1;
    padding-left: 0;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych__body p {
    max-width: 48rem;
    margin: 0 auto;
    font-size: var(--type-page-lead);
    line-height: 1.65;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych__image {
    grid-column: 2;
    grid-row: 1 / 3;
    max-width: 8rem;
    margin-inline: auto 0;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-references__logos img {
    background: transparent;
    box-shadow: none;
}

.page-training .reference-hero {
    padding: 5rem 0 3.5rem;
}

.page-training .reference-hero--orbit::before {
    content: none;
    position: absolute;
    top: 14rem;
    left: calc(23% - 1rem);
    width: min(38rem, 48vw);
    height: min(36rem, 45vw);
    /*background: url(/media/home/coeur-cadre-aquesis.webp) top center / contain no-repeat;*/
    opacity: 1;
    pointer-events: none;
}

.training-intro {
    padding-top: 3.35rem;
}

.page-training .reference-kicker {
    color: #144e82;
    font-size: var(--type-page-kicker);
    font-weight: 600;
    line-height: 1.45;
}

.page-training .reference-hero__wide h1 {
    max-width: 64rem;
    margin: 0.75rem 0 1.3rem;
    color: #144e82;
    font-size: var(--type-page-h1);
    line-height: 1.18;
}

.page-training .reference-hero__wide p:not(.reference-kicker) {
    max-width: 68.2rem;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    font-weight: 400;
    line-height: 1.35;
}

.page-training .reference-hero .btn {
    margin-left: 0;
    background: #144e82;
}

.page-training .training-intro .expertise-feature {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 0.65rem;
}

.page-training .training-intro .reference-cutout {
    max-width: 32.3rem;
    margin-top: 1rem;
}

.page-training .training-intro .expertise-feature__copy {
    padding-left: 0;
}

.page-training .training-intro h2 {
    margin-bottom: 0.85rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.22;
}

.page-training .training-intro .expertise-feature__copy > strong,
.page-training .training-intro li,
.training-intro__text,
.training-intro__objective {
    color: #0f3c5e;
    font-family: 'Inter', sans-serif;
    font-size: var(--type-page-lead);
    font-weight: 400;
    line-height: 1.32;
}

.page-training .training-intro .expertise-feature__copy > strong {
    display: block;
    margin-bottom: 0.9rem;
    font-weight: 600;
}

.page-training .training-intro li strong,
.training-intro__objective strong {
    font-weight: 600;
}

.page-training .training-intro .reference-list li strong {
    display: inline;
    white-space: nowrap;
}

.training-intro__text {
    margin: 0 0 0.85rem;
}

.training-intro__objective {
    margin: 1.65rem 0 0;
    padding: 0.35rem 0 0.35rem 0.95rem;
    border-left: 1px solid var(--blue);
}

.page-training .training-catalog .reference-title {
    max-width: 62rem;
    margin-inline: auto;
    color: #144e82;
    font-size: 35px;
    font-weight: 600;
    text-align: center;
}

.training-catalog__lead {
    max-width: 63rem;
    margin: -1.1rem auto 2.4rem;
    color: #0f3c5e;
    font-family: 'Inter', sans-serif;
    font-size: var(--type-page-lead);
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.training-catalog__lead strong {
    font-weight: 600;
}

.training-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 2rem 0 4rem;
}

.training-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0.7rem;
    border: 1px solid rgba(20, 78, 130, 0.16);
    border-radius: var(--radius-ui);
    background: #fff;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.training-card:hover,
.training-card:focus-within {
    border-color: rgba(20, 78, 130, 0.28);
    box-shadow: none;
    transform: none;
}

.training-card__image-link {
    position: relative;
    display: block;
    margin-bottom: 0.9rem;
    overflow: hidden;
    border-radius: var(--radius-ui);
    background: rgba(20, 78, 130, 0.06);
}

.training-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: 100%;
    margin: 0;
    border-radius: var(--radius-ui);
    object-fit: cover;
}

.training-card small {
    display: block;
    margin-bottom: 0.45rem;
    color: #4ece82;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
}

.training-card h3 {
    margin-bottom: 0.85rem;
    color: #0f3c5e;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.32;
}

.training-card p {
    margin-bottom: 0.35rem;
    color: #0f3c5e;
    font-size: var(--type-copy);
    line-height: 1.35;
}

.training-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 0.8rem;
    color: #4ece82;
    font-family: 'Outfit', sans-serif;
    font-size: var(--type-copy);
    font-weight: 600;
    text-decoration: none;
}

.training-card__link:hover,
.training-card__link:focus-visible {
    color: #4ece82;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.training-approach {
    max-width: 73rem;
    margin: 3rem auto 0;
    padding-top: 2.3rem;
    border-top: 1px solid rgba(20, 78, 130, 0.14);
}

.training-approach__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 25rem);
    gap: clamp(2.2rem, 4vw, 4rem);
    align-items: start;
    margin-top: 1.45rem;
}

.training-approach__layout > div > p,
.training-approach .reference-list li,
.training-approach__body,
.training-approach__body p,
.training-approach__body li {
    color: #0f3c5e;
    font-family: 'Inter', sans-serif;
    font-size: var(--type-page-lead);
    font-weight: 400;
    line-height: 1.6;
}

.training-approach__layout > div > p,
.training-approach__body p {
    margin-bottom: 0.95rem;
}

.training-approach__layout strong,
.training-approach .reference-list strong,
.training-approach__body strong {
    font-weight: 600;
}

.training-approach__body {
    display: block;
}

.training-approach__body p {
    max-width: 46rem;
}

.training-approach__image-link {
    align-self: center;
    justify-self: center;
    display: block;
    width: 100%;
    max-width: 25rem;
    margin: 0 auto;
    cursor: zoom-in;
}

.training-approach__image-link img {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    object-fit: contain;
    transition:
        filter 0.24s ease,
        transform 0.24s ease;
}

.training-approach__image-link:hover img,
.training-approach__image-link:focus-visible img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.015);
}

.training-approach .reference-list {
    margin-top: 0;
}

.organization-hero {
    padding: 4rem 0 2.4rem;
    background: linear-gradient(120deg, var(--quasi-white), #fff);
}

.organization-hero .reference-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.84fr);
    width: min(1090px, calc(100vw - 3rem));
}

.organization-hero h1 {
    font-size: var(--type-page-h1);
}

.organization-hero .reference-kicker {
    margin: 0 0 0.45rem;
    color: #144e82;
    font-size: var(--type-page-kicker);
    font-weight: 600;
    line-height: 1.45;
}

.organization-hero p {
    max-width: 34rem;
    font-size: var(--type-page-lead);
    line-height: 1.35;
}

.organization-hero__image {
    max-width: 25.4rem;
    filter: drop-shadow(0 24px 45px rgba(15, 60, 94, 0.12));
}

.page-sector_pme .organization-hero__image {
    max-width: 100%;
}

.page-about .reference-cutout {
    --reveal-transform-extra: scaleX(-1);
}

.about-hero__subtitle {
    margin: 0.35rem 0 1rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.8rem);
    font-weight: 600;
    line-height: 1.25;
}

.about-hero__body {
    display: grid;
    gap: 1rem;
    max-width: 42rem;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.7;
}

.about-hero__body p {
    margin: 0;
}

.expertises-index-hero .reference-hero__wide h1 {
    max-width: 18ch;
}

.expertises-index-hero .reference-hero__wide p:not(.reference-kicker) {
    max-width: 68rem;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.58;
}

.expertises-index-hero {
    padding-bottom: 3.2rem;
}

.expertises-index-overview {
    padding-top: 2rem;
}

.expertises-index-overview .home-ribbon {
    width: max-content;
    max-width: min(100%, 38rem);
    margin-inline: auto;
    padding: 0.3rem 1.1rem;
    border-radius: var(--radius-ui);
    font-size: 32px;
    line-height: 1.22;
}

.expertises-index-overview__intro {
    max-width: 61rem;
    margin: 1.35rem auto 2.8rem;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.6;
    text-align: center;
}

.expertises-index-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
    gap: 1.45rem;
    align-items: stretch;
    max-width: 74rem;
    margin: 0 auto;
}

.expertises-index-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(78, 206, 130, 0.58);
    border-radius: var(--radius-ui);
    background: #fff;
    box-shadow: none;
    transition:
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.expertises-index-card:hover,
.expertises-index-card:focus-within {
    border-color: #144e82;
    box-shadow: none;
    transform: none;
}

.expertises-index-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    min-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(78, 206, 130, 0.32);
    background: rgba(20, 78, 130, 0.06);
}

.expertises-index-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertises-index-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.55rem 1.65rem 1.65rem;
}

.expertises-index-card h3 {
    margin: 0 0 0.9rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.2;
}

.expertises-index-card p,
.expertises-index-card li {
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.52;
}

.expertises-index-card .reference-list {
    margin: 0.85rem 0 1.2rem;
}

.expertises-index-card .btn {
    margin-top: auto;
}

.expertises-index-closing {
    max-width: 66rem;
    margin: 3.4rem auto 0;
    text-align: center;
}

.expertises-index-closing p {
    margin: 0;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 600;
    line-height: 1.45;
}

.sectors-hero .reference-hero__wide h1 {
    max-width: 16ch;
}

.sectors-hero .reference-hero__wide p:not(.reference-kicker) {
    max-width: 67rem;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.58;
}

.sectors-overview {
    padding-top: 1.5rem;
}

.sectors-overview__intro {
    max-width: 58rem;
    margin: 1rem auto 2.4rem;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.6;
    text-align: center;
}

.sectors-overview__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
}

.sectors-overview-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(20, 78, 130, 0.16);
    border-radius: var(--radius-ui);
    background: #fff;
    box-shadow: none;
    transition:
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.sectors-overview-card:hover,
.sectors-overview-card:focus-within {
    border-color: rgba(20, 78, 130, 0.28);
    box-shadow: none;
}

.sectors-overview-card__media {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    aspect-ratio: 96 / 55;
    background: #f0faff;
}

.sectors-overview-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sectors-overview-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 1.05rem 1.15rem 1.2rem;
}

.sectors-overview-card h3 {
    margin: 0 0 0.9rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.2;
}

.sectors-overview-card p,
.sectors-overview-card li {
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.48;
}

.sectors-overview-card .reference-list {
    margin: 0.85rem 0 1.2rem;
}

.sectors-overview-card .btn {
    margin-top: auto;
}

.sectors-overview__closing {
    max-width: 62rem;
    margin: 2.1rem auto 0;
    color: #144e82;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.organization-domains .reference-title {
    position: relative;
    z-index: 3;
    margin-bottom: 1.25rem;
    font-size: 36px;
}

.organization-domains::before {
    content: none;
}

.organization-domain-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(20rem, 1fr));
    align-items: stretch;
    max-width: 66.6rem;
    margin: 0 auto;
    gap: 0.75rem;
}

.organization-domain-grid::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 40%;
    right: calc((66.6rem - 100vw) / 2 + 1rem);
    width: clamp(46rem, 60vw, 79rem);
    height: clamp(50rem, 68vw, 90rem);
    /*background: url('/media/home/coeur-cadre-aquesis.webp') center / contain no-repeat;*/
    opacity: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

.organization-domain-grid::after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: #ff5757;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.organization-domain-grid .outline-card {
    min-height: 20rem;
    border-color: #4ece82;
}

.organization-domain-card {
    position: relative;
    z-index: 1;
    padding: 1.55rem 1.7rem;
    border-color: #4ece82;
    box-shadow: 0 3px 0 rgba(20, 78, 130, 0.95);
    transition:
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.organization-domain-card:nth-child(even) {
    padding-left: 1.7rem;
}

.page-sector_essms .organization-domain-card:nth-child(4) {
    padding-left: 1.7rem;
}

.organization-domain-card:first-child {
    z-index: 3;
}

.organization-domain-card:hover,
.organization-domain-card:focus-visible {
    z-index: 4;
    border-color: #144e82;
    box-shadow: 0 20px 42px rgba(20, 78, 130, 0.18);
    transform: translateY(-0.35rem);
}

.js-reveal .organization-domain-card.is-visible:hover,
.js-reveal .organization-domain-card.is-visible:focus-visible {
    transform: translateY(-0.35rem);
}

.organization-domain-card h3 {
    color: #144e82;
    font-size: 1.17rem;
}

.organization-domain-card p,
.organization-domain-card li {
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.38;
}

.organization-domain-card .reference-list {
    gap: 0.15rem;
    margin-top: 0.65rem;
}

.organization-domain-card .reference-list li {
    padding-left: 0.15rem;
}

.organization-domain-card__objective {
    font-size: var(--type-page-lead);
}

.organization-domain-card:hover .organization-domain-card__objective,
.organization-domain-card:focus-visible .organization-domain-card__objective {
    border-left-color: var(--blue);
    background:
        linear-gradient(135deg, rgba(78, 206, 130, 0.16), rgba(20, 78, 130, 0.08)),
        #fff;
}

.organization-value__intro {
    max-width: 62rem;
    margin: 1.2rem auto 2.4rem;
    color: #0f3c5e;
    font-size: var(--type-page-lead);
    line-height: 1.45;
    text-align: center;
}

.organization-value__intro p {
    margin: 0;
}

.organization-value__intro p + p {
    margin-top: 0.9rem;
}

.organization-extra {
    padding-top: 0;
}

.organization-extra .organization-value__intro {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 0;
}

.organization-extra .organization-value__intro p {
    margin: 0;
}

.organization-extra .news-card__link {
    display: flex;
    width: fit-content;
    margin-top: 1rem;
    margin-inline: auto;
}

.organization-bubbles {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    max-width: 78rem;
    margin-inline: auto;
}

.organization-bubbles--count-3 {
    grid-template-columns: repeat(3, minmax(0, 18rem));
    justify-content: center;
    max-width: 64rem;
}

.organization-bubbles::before {
    content: '';
    position: absolute;
    top: 1.05rem;
    right: 6.5rem;
    left: 6.5rem;
    height: 4px;
    background: #144e82;
}

.organization-bubbles::after {
    content: none;
}

.organization-bubble {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    place-items: center;
    min-height: 17rem;
    margin-top: 3.7rem;
    padding: 2.35rem 1rem 1.6rem;
    border: 1px solid #4ece82;
    border-radius: 42% 58% 49% 51% / 50% 42% 58% 50%;
    color: #0f3c5e;
    text-align: center;
    transition:
        border-radius 0.32s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.organization-bubble::before {
    content: '';
    position: absolute;
    top: -4.3rem;
    left: 50%;
    width: 2.65rem;
    height: 2.65rem;
    border: 0;
    border-radius: 50%;
    background: #ff5757;
    transform: translateX(-50%);
}

.organization-bubble strong {
    color: #0f3c5e;
    font-size: 1.02rem;
    line-height: 1.25;
}

.organization-bubble p {
    margin-top: 0.35rem;
    color: #0f3c5e;
    font-size: var(--type-copy);
    line-height: 1.28;
}

.organization-bubble--1 {
    border-color: #4ece82;
    border-radius: 41% 59% 55% 45% / 47% 45% 55% 53%;
}

.organization-bubble--2 {
    border-color: #144e82;
    border-radius: 49% 51% 44% 56% / 44% 52% 48% 56%;
}

.organization-bubble--3 {
    border-color: #4ece82;
    border-radius: 44% 56% 50% 50% / 48% 42% 58% 52%;
}

.organization-bubble--4 {
    border-color: #144e82;
    border-radius: 52% 48% 46% 54% / 43% 54% 46% 57%;
}

.organization-bubble:hover,
.organization-bubble:focus-visible {
    box-shadow: 0 18px 42px rgba(20, 78, 130, 0.15);
    transform: translateY(-0.55rem) rotate(-1deg);
    border-radius: 55% 45% 47% 53% / 42% 56% 44% 58%;
}

.page-callout {
    width: min(1290px, calc(100vw - 3rem));
    max-width: none;
    margin: 2rem auto 0;
}

.page-callout .shell {
    width: 100%;
    margin-inline: 0;
}

.course-hero {
    padding: 3rem 0 2.2rem;
    background: linear-gradient(120deg, var(--quasi-white), #fff);
}

.course-hero__grid {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 2rem;
    align-items: center;
    width: min(1080px, calc(100vw - 3rem));
}

.course-hero__grid > * {
    min-width: 0;
}

.course-hero h1 {
    margin: 1rem 0;
    color: #0f3c5e;
    font-size: clamp(2rem, 3vw, 2.9rem);
    overflow-wrap: break-word;
}

.course-hero img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.course-page {
    padding: 1.5rem 0 3rem;
    background: #fff;
}

.course-page > .shell {
    width: min(1080px, calc(100vw - 3rem));
}

.course-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.3rem;
}

.course-tabs a {
    padding: 0.75rem 1.15rem;
    border: 1px solid rgba(20, 78, 130, 0.28);
    border-radius: var(--radius-ui);
    color: var(--blue);
    font-weight: 600;
}

.course-tabs a:first-child {
    color: #fff;
    background: var(--blue);
}

.course-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.2rem;
}

.course-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
    margin-bottom: 2rem;
}

.course-block {
    margin-bottom: 2rem;
    padding: 0.8rem 0.9rem;
}

.course-block--intro {
    margin-bottom: 0;
}

.course-info-panel {
    display: grid;
    gap: 1.3rem;
    padding: 1.25rem;
    border: 1px solid rgba(20, 78, 130, 0.16);
    border-radius: var(--radius-ui);
    background: var(--quasi-white);
}

.course-info-panel dl {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
}

.course-info-panel dl > div {
    min-width: 0;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(20, 78, 130, 0.14);
    border-radius: var(--radius-ui);
    background: #fff;
}

.course-info-panel dt {
    margin-bottom: 0.35rem;
    color: var(--blue-deep);
    font-weight: 600;
}

.course-info-panel dd {
    margin: 0;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.course-info-panel__item--small {
    grid-column: span 2;
}

.course-info-panel__item--half {
    grid-column: span 5;
}

.course-info-panel__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.course-info-panel .btn {
    width: 100%;
    padding-inline: 0.8rem;
}

.course-disclosure {
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-ui);
    background: #fff;
    box-shadow: none;
    transition:
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.course-disclosure.course-block--tint {
    padding: 0;
    border: 1px solid rgba(20, 78, 130, 0.16);
    background: var(--quasi-white);
}

.course-disclosure.course-programme {
    padding-left: 0;
}

.course-disclosure:hover,
.course-disclosure:focus-within,
.course-disclosure[open] {
    box-shadow: none;
}

.course-disclosure summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.1rem;
    color: #0f3c5e;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    list-style: none;
}

.course-disclosure.course-block--tint summary,
.course-disclosure.course-block--tint .course-disclosure__body {
    background: var(--quasi-white);
}

.course-disclosure summary::-webkit-details-marker {
    display: none;
}

.course-disclosure summary::after {
    content: '+';
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(20, 78, 130, 0.24);
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.course-disclosure[open] summary::after {
    content: '-';
    background: var(--blue);
    color: #fff;
    transform: rotate(180deg);
}

.course-disclosure__body {
    padding: 0 1.15rem 1.25rem;
    border-top: 1px solid rgba(20, 78, 130, 0.16);
    animation: courseDisclosureIn 0.22s ease both;
}

.course-disclosure.course-programme .course-disclosure__body {
    padding-left: 2.1rem;
}

@keyframes courseDisclosureIn {
    from {
        opacity: 0;
        transform: translateY(-0.25rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-block h2 {
    margin-bottom: 1.1rem;
    color: #0f3c5e;
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 600;
}

.course-rich-text {
    display: grid;
    gap: 0.9rem;
    color: #0f3c5e;
    line-height: 1.42;
}

.course-rich-text p,
.course-rich-text ul {
    margin: 0;
}

.course-rich-text ul {
    padding-left: 1.2rem;
}

.course-rich-text li + li {
    margin-top: 0.35rem;
}

.course-rich-text h3 {
    margin-top: 0.85rem;
    color: #0f3c5e;
    font-family: 'Outfit', sans-serif;
    font-size: var(--type-card-h3);
    font-weight: 600;
    line-height: 1.35;
}

.course-rich-text--programme h3 {
    position: relative;
    padding-left: 1rem;
}

.course-rich-text--programme h3::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--blue);
}

.course-block--tint {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-ui);
    background: var(--quasi-white);
}

.course-download-note {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(20, 78, 130, 0.16);
    background: #fff;
}

.course-download-note--full {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    margin: 0 0 2.2rem;
    padding: 1.35rem 1.45rem;
    border-radius: var(--radius-ui);
    background:
        linear-gradient(135deg, rgba(20, 78, 130, 0.08), rgba(78, 206, 130, 0.1)),
        #fff;
}

.course-download-note strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 1.18rem;
}

.course-download-note p {
    color: var(--ink);
    line-height: 1.35;
}

.course-download-note .btn {
    width: fit-content;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-feature .reference-list {
    gap: 0.75rem;
    padding-left: 0;
    list-style: none;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-feature .reference-list li {
    padding-left: 0.95rem;
    border-left: 1px solid var(--green);
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-feature--seminar-method,
.page-slug-nos-expertises-seminaires-teambuilding .expertise-feature--reverse.expertise-feature--seminar-method {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 67rem;
    margin: 2.6rem auto 4.6rem;
    padding: 2.15rem;
    border: 1px solid rgba(20, 78, 130, 0.12);
    border-radius: var(--radius-ui);
    background: linear-gradient(135deg, rgba(240, 250, 255, 0.88), rgba(255, 255, 255, 0.96));
}

.seminar-method__intro {
    display: grid;
    max-width: 54rem;
    margin-inline: 0 auto;
}

.seminar-method__intro h2 {
    margin-bottom: 0.8rem;
    color: #144e82;
    font-size: 30px;
    line-height: 1.25;
}

.seminar-method__intro .expertise-feature__lead {
    max-width: none;
    margin: 0;
}

.seminar-method__visual {
    display: grid;
    grid-template-columns: minmax(20rem, 0.98fr) minmax(0, 1.02fr);
    gap: 1.6rem;
    align-items: stretch;
}

.seminar-method__visual .reference-cutout {
    order: 0;
    width: 100%;
    height: 100%;
    min-height: 20rem;
    max-height: none;
    object-fit: cover;
}

.seminar-method__cards {
    order: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.seminar-method__cards article {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(20, 78, 130, 0.13);
    border-left: 3px solid var(--green);
    border-radius: var(--radius-ui);
    background: #fff;
    color: #0f3c5e;
    font-size: var(--type-copy);
    line-height: 1.42;
}

.seminar-method__cards article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.seminar-method__cards strong {
    display: inline;
    color: #144e82;
    font-weight: 600;
}

.course-sequence {
    position: relative;
    margin: 0.8rem 1rem;
    padding: 1rem 1rem 1rem 1.35rem;
    border-radius: var(--radius-ui);
    background: #fff;
}

.course-sequence::before {
    content: '';
    position: absolute;
    top: 1.25rem;
    left: -1.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border: 1px solid var(--blue);
    border-radius: 50%;
    background: #fff;
}

.course-programme {
    padding-left: 2.1rem;
}

.course-programme .course-sequence:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.8rem;
    bottom: -1.1rem;
    left: -1.33rem;
    border-left: 1px solid rgba(20, 78, 130, 0.45);
}

.course-sequence h3 {
    margin-bottom: 0.6rem;
    color: #0f3c5e;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.course-sequence p {
    font-size: var(--type-copy);
}

.course-aside dl {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.35rem 0.8rem;
    margin: 2rem 0;
}

.course-aside {
    position: sticky;
    top: 6.5rem;
    align-self: start;
    height: max-content;
}

.course-aside__badges {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.course-aside__badges span {
    display: inline-flex;
    justify-content: center;
    min-width: 4.8rem;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(20, 78, 130, 0.28);
    border-radius: var(--radius-ui);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 600;
}

.course-aside dt {
    font-weight: 600;
}

.course-aside dd {
    margin: 0;
}

.course-aside__option {
    margin: 0 0 2rem;
}

.course-aside__option strong {
    display: block;
    margin-bottom: 1rem;
}

.course-aside__option p {
    display: flex;
    justify-content: space-between;
}

.course-aside__option ul,
.course-aside__option-body ul {
    display: grid;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.course-aside__option li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-top: 1px solid rgba(20, 78, 130, 0.12);
}

.course-aside__option li:first-child {
    border-top: 0;
}

.course-aside__option-body {
    display: grid;
    gap: 0.55rem;
    color: #0f3c5e;
    font-size: var(--type-copy);
    line-height: 1.45;
}

.course-aside__option-body h3 {
    margin: 0.4rem 0 0;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    line-height: 1.3;
}

.course-aside__option-body p {
    display: block;
    margin: 0;
}

.course-aside .btn {
    width: 100%;
    margin-top: 0.75rem;
    padding-inline: 0.75rem;
    font-size: 0.85rem;
}

.course-sessions__table {
    overflow: hidden;
    border-radius: var(--radius-ui);
    background: var(--quasi-white);
}

.course-sessions__table > div {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    font-size: 0.86rem;
}

.course-sessions__table a {
    padding: 0.45rem 0.8rem;
    background: var(--blue);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
}

.course-sessions__table a.btn--aquesis-gradient {
    background: var(--aquesis-gradient);
}

.course-related {
    margin-top: 3rem;
}

.course-related h2 {
    margin-bottom: 2rem;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 600;
}

.course-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.course-related-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0.7rem;
    border: 1px solid rgba(20, 78, 130, 0.16);
    border-radius: var(--radius-ui);
    background: #fff;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.course-related-card:hover,
.course-related-card:focus-within {
    border-color: rgba(20, 78, 130, 0.28);
    box-shadow: none;
    transform: none;
}

.course-related-card__media {
    position: relative;
    display: block;
    margin-bottom: 0.85rem;
    overflow: hidden;
    border-radius: var(--radius-ui);
    background: rgba(20, 78, 130, 0.06);
}

.course-related-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-ui);
}

.course-related-card small {
    display: block;
    margin-bottom: 0.45rem;
    color: #4ece82;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
}

.course-related-card h3 {
    margin-bottom: 0.65rem;
    color: #0f3c5e;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.32;
}

.course-related-card p {
    margin-bottom: 0.35rem;
    color: #0f3c5e;
    font-size: var(--type-copy);
    line-height: 1.35;
}

.course-related-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 0.8rem;
    color: #4ece82;
    font-family: 'Outfit', sans-serif;
    font-size: var(--type-copy);
    font-weight: 600;
    text-decoration: none;
}

.course-related-card__link:hover,
.course-related-card__link:focus-visible {
    color: #4ece82;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.training-info-block,
.organization-faq__item {
    padding: 1.5rem;
    border: 1px solid rgba(20, 78, 130, 0.16);
    border-radius: var(--radius-ui);
    background: #f0faff;
}

.training-info-block {
    max-width: 64rem;
    margin: 2rem auto 0;
}

.training-info-block h2 {
    margin-bottom: 0.8rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
}

.training-info-block p + p {
    margin-top: 0.8rem;
    font-size: var(--type-page-lead);
}

.organization-faq__list {
    display: grid;
    gap: 0.85rem;
    max-width: 64rem;
    margin-inline: auto;
}

.organization-faq__layout {
    display: grid;
    gap: 1.6rem;
    align-items: start;
    max-width: 76rem;
    margin-inline: auto;
}

.organization-faq__layout--media {
    grid-template-columns: minmax(16rem, 0.42fr) minmax(0, 1fr);
}

.organization-faq__layout--media .organization-faq__list {
    max-width: none;
    margin-inline: 0;
}

.organization-faq__media {
    width: 100%;
    border-radius: var(--radius-ui);
    object-fit: cover;
    box-shadow: 0 18px 36px rgba(15, 60, 94, 0.14);
}

.organization-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
    cursor: pointer;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    list-style: none;
}

.organization-faq__item summary::-webkit-details-marker {
    display: none;
}

.organization-faq__item summary::after {
    content: '';
    flex: 0 0 auto;
    width: 0.78rem;
    height: 0.78rem;
    margin-left: 0.7rem;
    border: solid var(--blue);
    border-width: 0 1px 1px 0;
    transform: translateY(-0.18rem) rotate(45deg);
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.organization-faq__item[open] summary::after {
    content: '\00d7';
    display: inline-grid;
    place-items: center;
    width: 1.05rem;
    height: 1.05rem;
    border: 0;
    color: var(--green);
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1;
    transform: none;
}

.organization-faq__item div {
    margin-top: 0.85rem;
    color: #0f3c5e;
    line-height: 1.35;
}

.editorial-sections .shell {
    display: grid;
    gap: 2rem;
    width: min(1080px, calc(100vw - 3rem));
}

.editorial-block {
    padding: 2rem;
    background: #f0faff;
}

.editorial-block--media {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 2rem;
}

.editorial-block h2 {
    margin-bottom: 1rem;
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.editorial-block h3 {
    margin-bottom: 0.8rem;
    color: var(--blue);
}

.editorial-rich-text {
    display: grid;
    gap: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

.editorial-rich-text ul,
.editorial-rich-text ol {
    display: grid;
    gap: 0.45rem;
    padding-left: 1.35rem;
}

.editorial-rich-text ul {
    list-style: disc;
}

.editorial-rich-text ol {
    list-style: decimal;
}

.reference-kicker,
.organization-hero .reference-kicker,
.page-expertises .reference-kicker,
.page-training .reference-kicker {
    font-size: var(--type-page-kicker);
    line-height: 1.45;
}

.reference-hero h1,
.reference-hero__wide h1,
.organization-hero h1,
.course-hero h1,
.page-expertises .reference-hero__wide h1,
.page-training .reference-hero__wide h1,
.expertises-index-hero .reference-hero__wide h1,
.sectors-hero .reference-hero__wide h1 {
    color: #144e82;
    font-family: 'Outfit', sans-serif;
    font-size: var(--type-page-h1);
    font-weight: 600;
    line-height: 1.18;
}

.reference-hero p,
.reference-hero__wide p:not(.reference-kicker),
.organization-hero p,
.course-hero p,
.page-expertises .reference-hero__wide p:not(.reference-kicker),
.page-training .reference-hero__wide p:not(.reference-kicker),
.expertises-index-hero .reference-hero__wide p:not(.reference-kicker),
.sectors-hero .reference-hero__wide p:not(.reference-kicker) {
    font-size: var(--type-page-lead);
    line-height: 1.35;
}

.reference-title,
.home-ribbon,
.expertise-feature h2,
.page-expertises .expertise-feature h2,
.page-training .training-intro h2,
.page-training .training-catalog .reference-title,
.course-block h2,
.expertise-extra-block h2,
.expertise-stats h2,
.expertise-references h2,
.training-info-block h2,
.editorial-block h2 {
    font-size: var(--type-section-h2);
    line-height: 1.24;
}

.organization-domain-card h3,
.expertises-index-card h3,
.sectors-overview-card h3,
.training-card h3,
.course-related-card h3,
.about-value-card h3,
.editorial-block h3 {
    font-size: var(--type-card-h3);
    line-height: 1.28;
    font-family: 'Outfit', sans-serif;
}

.page-expertises .expertise-feature__lead,
.page-expertises .expertise-feature__body p,
.page-expertises .reference-list li,
.page-expertises .expertise-triptych__body p,
.page-expertises .expertise-triptych__body li,
.page-training .training-intro .expertise-feature__copy > strong,
.page-training .training-intro li,
.training-intro__text,
.training-intro__objective,
.reference-objective,
.organization-domain-card p,
.organization-domain-card li,
.organization-domain-card__objective,
.expertises-index-card p,
.expertises-index-card li,
.sectors-overview-card p,
.sectors-overview-card li,
.course-block > p,
.course-block .reference-list li,
.course-disclosure__body > p,
.course-rich-text,
.editorial-rich-text {
    font-size: var(--type-page-lead);
    line-height: 1.45;
}

/* Ajustements demandés le 21 juillet : typographie, rythme, images et survols. */
.hero h1,
.reference-hero h1,
.reference-hero__wide h1,
.organization-hero h1,
.course-hero h1,
.news-hero h1,
.news-article__hero h1,
.hero__copy--home h1,
.page-expertises .reference-hero__wide h1,
.page-training .reference-hero__wide h1,
.expertises-index-hero .reference-hero__wide h1,
.sectors-hero .reference-hero__wide h1 {
    line-height: 1.06;
}

.hero__lead,
.page-hero__lead,
.reference-hero p,
.reference-hero__wide p:not(.reference-kicker),
.organization-hero p,
.course-hero p,
.news-hero p:not(.eyebrow),
.news-article__lead,
.about-hero__body,
.about-hero__body p,
.about-commitment__text,
.about-commitment__layout > p,
.about-values__intro,
.about-adn__intro,
.expertises-index-overview__intro,
.sectors-overview__intro,
.organization-value__intro,
.training-catalog__lead,
.training-approach__layout > div > p,
.training-approach .reference-list li,
.training-approach__body,
.training-approach__body p,
.training-approach__body li {
    font-size: var(--type-page-lead);
    line-height: 1.32;
}

.reference-title,
.home-ribbon,
.expertise-feature h2,
.page-expertises .expertise-feature h2,
.page-training .training-intro h2,
.page-training .training-catalog .reference-title,
.course-block h2,
.expertise-extra-block h2,
.expertise-stats h2,
.expertise-references h2,
.training-info-block h2,
.editorial-block h2 {
    line-height: 1.16;
}

.reference-section,
.news-list,
.course-page {
    padding-top: var(--section-space-desktop);
    padding-bottom: var(--section-space-desktop);
}

.home-approach,
.home-services,
.home-trust,
.home-news {
    padding-top: var(--section-space-desktop);
    padding-bottom: var(--section-space-desktop);
}

.home-services__primary {
    transform: none;
    margin-bottom: 0;
}

.home-stats {
    gap: 2rem;
    margin: 4rem auto 4.5rem;
}

.home-stat__number {
    margin-bottom: 1.35rem;
}

.home-proof-grid {
    margin-top: 4rem;
}

.home-approach .home-ribbon {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    white-space: nowrap;
}

.offer-card h3 {
    margin-bottom: 0.65rem;
    font-size: clamp(1.85rem, 2.8vw, 2.15rem);
    font-weight: 600;
    line-height: 1.12;
}

.home-services__secondary .offer-card:first-child h3 {
    font-size: 1.65rem;
    white-space: nowrap;
}

.offer-card h4,
.offer-card--blue h4,
.offer-card--light h4 {
    color: var(--green);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
}

.offer-card p,
.offer-card li {
    font-family: 'Inter', sans-serif;
    font-size: var(--type-copy);
    font-weight: 400;
    line-height: 1.34;
}

.offer-card li {
    gap: 0.7rem;
}

.offer-card li strong {
    font-weight: 400;
}

.hero__main-image,
.hero__main-image--cutout,
.home-services__media,
.home-services__image,
.reference-cutout--photo,
.page-about .reference-cutout,
.page-training .training-intro .reference-cutout,
.expertise-feature > .reference-cutout,
.expertise-feature > .reference-cutout-link .reference-cutout,
.reference-hero__grid > img,
.organization-hero__image,
.about-commitment__layout img,
.about-founder__photo,
.news-article__hero img,
.training-card__image-link,
.training-card img,
.course-related-card__media,
.course-related-card__media img,
.editorial-block--media img {
    border-radius: var(--radius-photo);
}

.home-news-card,
.news-card,
.training-card,
.course-related-card,
.expertises-index-card,
.sectors-overview-card {
    transition:
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.home-news-card__media img,
.news-card__media img,
.training-card img,
.course-related-card__media img,
.expertises-index-card__media img,
.sectors-overview-card__media img {
    transition:
        filter 0.35s ease,
        transform 0.35s ease;
}

.home-news-card__body,
.news-card__body,
.expertises-index-card__body,
.sectors-overview-card__body {
    transition: background 0.24s ease;
}

.home-news-card:hover .home-news-card__media img,
.home-news-card:focus-within .home-news-card__media img,
.news-card:hover .news-card__media img,
.news-card:focus-within .news-card__media img,
.training-card:hover img,
.training-card:focus-within img,
.course-related-card:hover .course-related-card__media img,
.course-related-card:focus-within .course-related-card__media img,
.expertises-index-card:hover .expertises-index-card__media img,
.expertises-index-card:focus-within .expertises-index-card__media img,
.sectors-overview-card:hover .sectors-overview-card__media img,
.sectors-overview-card:focus-within .sectors-overview-card__media img {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.035);
}

.home-news-card:hover .home-news-card__body,
.home-news-card:focus-within .home-news-card__body,
.news-card:hover .news-card__body,
.news-card:focus-within .news-card__body,
.expertises-index-card:hover .expertises-index-card__body,
.expertises-index-card:focus-within .expertises-index-card__body,
.sectors-overview-card:hover .sectors-overview-card__body,
.sectors-overview-card:focus-within .sectors-overview-card__body,
.training-card:hover,
.training-card:focus-within,
.course-related-card:hover,
.course-related-card:focus-within {
    background: var(--quasi-white);
}

.news-article__content {
    font-size: var(--type-page-lead);
    line-height: 1.35;
}

.news-article__content p {
    line-height: 1.35;
}

.news-article__content ul,
.news-article__content ol {
    display: grid;
    gap: 0.45rem;
    margin: 0 0 1.25rem;
    padding-left: 1.45rem;
}

.news-article__content ul {
    list-style: disc;
}

.news-article__content ol {
    list-style: decimal;
}

.news-article__content li {
    line-height: 1.35;
}

.news-article__content li::marker {
    color: var(--green);
}

.page-expertises .expertise-feature h2 {
    margin-bottom: 0.8rem;
    line-height: 1.16;
}

.page-expertises .expertise-feature__lead,
.page-expertises .expertise-feature__body p,
.page-expertises .expertise-feature__columns p,
.page-expertises .reference-list li,
.page-expertises .expertise-triptych__body p,
.page-expertises .expertise-triptych__body li,
.reference-objective,
.organization-domain-card p,
.organization-domain-card li,
.organization-domain-card__objective,
.expertises-index-card p,
.expertises-index-card li,
.sectors-overview-card p,
.sectors-overview-card li,
.course-block > p,
.course-block .reference-list li,
.course-disclosure__body > p,
.course-rich-text,
.editorial-rich-text {
    font-size: var(--type-page-lead);
    line-height: 1.32;
}

.page-expertises .expertise-feature__lead,
.page-expertises .expertise-feature__body p,
.page-expertises .expertise-feature__columns p,
.page-expertises .reference-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.page-expertises .expertise-feature__lead strong,
.page-expertises .expertise-feature__body strong,
.page-expertises .expertise-feature__columns strong,
.page-expertises .reference-list li strong {
    font-weight: 700;
}

.page-slug-nos-expertises-conseil-audit .expertise-feature__body p:not(:has(> strong:only-child)) strong {
    font-weight: 400;
}

.page-slug-nos-expertises-conseil-audit .reference-hero__wide p:not(.reference-kicker) {
    font-weight: 400;
}

.page-slug-nos-expertises-conseil-audit .reference-hero__wide p:not(.reference-kicker) strong {
    font-weight: 400;
}

.page-slug-nos-expertises-conseil-audit .reference-hero__wide p:not(.reference-kicker) strong:last-of-type {
    font-weight: 700;
}

.page-training .training-intro .expertise-feature {
    grid-template-columns: minmax(15rem, 0.42fr) minmax(0, 1fr);
    gap: clamp(3rem, 5vw, 4rem);
}

.page-training .training-intro .reference-cutout {
    width: min(100%, 23rem);
    aspect-ratio: 3 / 4;
    max-width: 23rem;
    margin-top: 0;
    object-fit: cover;
}

.training-approach {
    margin-top: 4.5rem;
    max-width: 78rem;
    padding-top: 3rem;
}

.training-approach__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 34rem);
    align-items: center;
    margin-top: 2.2rem;
}

.training-approach__image-link {
    width: min(100%, 34rem);
    max-width: 34rem;
}

.training-approach__image-link img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.about-founder__quote p {
    font-style: italic;
    line-height: 1.32;
}

.organization-domain-card h3,
.expertises-index-card h3,
.sectors-overview-card h3,
.training-card h3,
.course-related-card h3,
.about-value-card h3,
.editorial-block h3 {
    font-size: max(1.25rem, var(--type-card-h3));
    line-height: 1.2;
}

.btn--primary.btn--read-more,
.reference-hero .btn--primary.btn--read-more,
.organization-hero .btn--primary.btn--read-more,
.page-training .reference-hero .btn--primary.btn--read-more,
.page-expertises .reference-hero .btn--primary.btn--read-more {
    border: 0;
    color: var(--green);
    background: transparent;
}

.btn--primary.btn--read-more:hover,
.btn--primary.btn--read-more:focus-visible,
.reference-hero .btn--primary.btn--read-more:hover,
.reference-hero .btn--primary.btn--read-more:focus-visible,
.organization-hero .btn--primary.btn--read-more:hover,
.organization-hero .btn--primary.btn--read-more:focus-visible,
.page-training .reference-hero .btn--primary.btn--read-more:hover,
.page-training .reference-hero .btn--primary.btn--read-more:focus-visible,
.page-expertises .reference-hero .btn--primary.btn--read-more:hover,
.page-expertises .reference-hero .btn--primary.btn--read-more:focus-visible {
    border: 0;
    color: var(--green);
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.reference-hero .btn--primary:hover,
.reference-hero .btn--primary:focus-visible,
.organization-hero .btn--primary:hover,
.organization-hero .btn--primary:focus-visible,
.page-training .reference-hero .btn--primary:hover,
.page-training .reference-hero .btn--primary:focus-visible,
.page-expertises .reference-hero .btn--primary:hover,
.page-expertises .reference-hero .btn--primary:focus-visible {
    border-color: var(--blue);
    color: var(--blue);
    background: #fff;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 1.5rem;
    max-width: 66rem;
    margin: var(--section-gap-desktop) auto 0;
    text-align: left;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych .home-ribbon {
    grid-column: 1 / 4;
    text-align: left;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych__copy {
    grid-column: 1 / 4;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych__body p {
    max-width: none;
    margin: 0;
    line-height: 1.32;
    text-align: left;
}

.page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych__image {
    grid-column: 4;
    grid-row: 1 / 3;
    align-self: center;
    justify-self: center;
    max-width: 11rem;
}

@media (max-width: 700px) {
    .site-footer {
        padding-top: 2rem;
    }

    .site-footer__primary,
    .site-footer__brand-contact {
        grid-template-columns: 1fr;
        gap: 1.7rem;
    }

    .site-footer__brand,
    .site-footer__contact ul,
    .site-footer__expertises ul {
        justify-items: center;
    }

    .site-footer__contact,
    .site-footer__expertises {
        text-align: center;
    }

    .site-footer__legal-list {
        display: grid;
        gap: 0.55rem;
    }

    .site-footer__legal-separator {
        display: none;
    }
}

@media (max-width: 860px) {
    .scroll-top,
    body:has(.sf-toolbar) .scroll-top {
        position: fixed !important;
        right: calc(0.85rem + env(safe-area-inset-right, 0px)) !important;
        bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px)) !important;
        z-index: 2147483647 !important;
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 44px;
        height: 44px;
        background: var(--green);
    }

    .cookie-banner {
        right: 0.85rem;
        bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
        left: 0.85rem;
        grid-template-columns: 1fr;
        justify-items: center;
        width: auto;
        padding: 1rem;
        text-align: center;
    }

    .cookie-banner__content,
    .cookie-banner__actions {
        width: 100%;
        justify-items: center;
        justify-content: center;
    }

    .cookie-banner__content p {
        margin-inline: auto;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-banner__actions a,
    .cookie-banner__actions button {
        width: 100%;
    }

    .site-footer__bottom {
        display: grid;
        justify-items: center;
        padding-bottom: 5.5rem;
    }

    .site-footer__copyright {
        max-width: 21rem;
    }

    .site-footer__credit {
        display: grid;
        justify-items: center;
        max-width: 22rem;
        position: static;
    }

    .site-footer__credit-item + .site-footer__credit-item::before {
        content: none;
    }
}

.editorial-block img {
    width: 100%;
    max-height: 25rem;
    object-fit: cover;
}

.editorial-block .btn {
    margin-top: 1.2rem;
}

@media (max-width: 900px) {
    html,
    body {
        overflow-x: hidden;
    }

    .reference-hero__grid,
    .expertise-feature,
    .about-commitment__layout,
    .about-founder__layout,
    .course-hero__grid,
    .course-intro-grid,
    .course-layout {
        grid-template-columns: 1fr;
    }

    .editorial-block--media {
        grid-template-columns: 1fr;
    }

    .reference-hero__grid,
    .reference-hero__wide {
        width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .reference-hero__wide *,
    .reference-hero__copy *,
    .expertise-feature__copy *,
    .training-approach *,
    .organization-hero *,
    .course-hero * {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .cookie-banner {
        right: 0.85rem;
        left: 0.85rem;
        width: auto;
        max-width: none;
    }

    .expertise-feature--reverse .expertise-feature__copy,
    .expertise-feature--reverse img {
        order: initial;
    }

    .reference-hero__grid > img,
    .reference-hero__grid > .reference-cutout-link,
    .expertise-feature > img,
    .expertise-feature > .reference-cutout-link,
    .editorial-block--media img,
    .organization-faq__media {
        order: -1;
        justify-self: center;
        width: 100%;
        max-width: min(100%, 28rem);
    }

    .reference-hero__copy,
    .expertise-feature__copy,
    .organization-faq__list {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .about-hero__body,
    .about-hero__body p {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .page-about .reference-hero__grid {
        grid-template-columns: minmax(0, 1fr);
        width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
        overflow: visible;
    }

    .page-about .reference-hero__copy {
        width: min(100%, 21rem);
        max-width: 100%;
        min-width: 0;
    }

    .page-about .reference-hero__grid > img {
        width: 100%;
        max-width: min(100%, 22rem);
    }

    .expertise-feature--split-body {
        gap: 1.35rem;
    }

    .expertise-feature__columns {
        column-count: 1;
        margin: 0 0 1rem;
    }

    .page-slug-nos-expertises-conseil-audit .expertise-feature__columns {
        grid-template-columns: 1fr;
    }

    .page-slug-nos-expertises-conseil-audit .expertise-feature__columns .reference-objective {
        grid-column: auto;
    }

    .about-values,
    .training-cards,
    .training-approach__layout,
    .reference-examples,
    .expertise-stats__grid,
    .expertises-index-overview__grid,
    .sectors-overview__grid,
    .about-adn__cards--count-3,
    .organization-domain-grid,
    .organization-faq__layout--media,
    .organization-bubbles,
    .course-related__grid {
        grid-template-columns: 1fr;
    }

    .course-download-note--full {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .about-commitment__layout--with-diagram {
        margin-bottom: 4rem;
    }

    .about-performance-diagram {
        grid-template-areas:
            "top"
            "image"
            "left"
            "right";
        grid-template-columns: 1fr;
        gap: 1rem;
        width: min(100%, 30rem);
        padding-top: 0;
    }

    .about-performance-diagram__items {
        display: contents;
    }

    .about-performance-diagram > .about-performance-diagram__image {
        width: min(205px, 74vw);
    }

    .about-performance-diagram__item,
    .about-performance-diagram__item--1,
    .about-performance-diagram__item--2,
    .about-performance-diagram__item--3 {
        width: 100%;
        max-width: none;
        min-height: 0;
        padding: 0.9rem 1rem;
        top: auto;
        justify-self: stretch;
    }

    .seminar-method__visual,
    .seminar-method__cards,
    .training-approach__body {
        grid-template-columns: 1fr;
    }

    .seminar-method__intro,
    .seminar-method__visual .reference-cutout {
        max-width: none;
    }

    .seminar-method__visual .reference-cutout {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .seminar-method__cards article:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .organization-domain-grid {
        grid-template-rows: none;
        gap: 1.2rem;
    }

    .home-approach::before,
    .reference-hero--orbit::before,
    .orbit-section::before,
    .organization-domain-grid::before {
        content: none;
        display: none;
    }

    .sectors-overview-card {
        grid-template-columns: 1fr;
    }

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

    .sectors-overview-card__media {
        min-height: 0;
    }

    .expertises-index-card__media {
        min-height: 16rem;
    }

    .expertises-index-overview .home-ribbon {
        width: auto;
        max-width: 100%;
        font-size: 26px;
    }

    .organization-domain-grid::before {
        top: 0.6rem;
        right: 0;
        left: auto;
        width: min(34rem, 92vw);
        height: min(38rem, 104vw);
        opacity: 1;
        transform: none;
    }

    .organization-domain-grid::after {
        display: none;
    }

    .organization-domain-card {
        min-height: auto;
    }

    .organization-domain-card,
    .organization-domain-card:nth-child(even),
    .page-sector_essms .organization-domain-card:nth-child(4) {
        padding: 1.25rem;
    }

    .organization-domain-card p,
    .organization-domain-card li,
    .organization-domain-card__objective {
        overflow-wrap: anywhere;
    }

    .organization-bubbles {
        gap: 1.4rem;
    }

    .organization-bubbles::before,
    .organization-bubbles::after {
        display: none;
    }

    .organization-bubble::before {
        display: none;
    }

    .organization-bubble {
        min-height: 11rem;
        margin-top: 0;
    }

    .about-values {
        gap: 1rem;
    }

    .about-value-card {
        min-height: auto;
    }

    .course-sessions__table > div {
        grid-template-columns: 1fr;
    }

    .course-info-panel dl {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .course-info-panel__item--half {
        grid-column: auto;
    }

    .course-info-panel__item--small {
        grid-column: auto;
    }

    .course-info-panel dd {
        margin-bottom: 0;
    }

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

    .course-download-note .btn {
        width: 100%;
    }

    .course-hero {
        overflow-x: hidden;
    }

    .course-hero__grid,
    .course-page > .shell {
        width: min(100%, calc(100vw - 2rem));
        max-width: calc(100vw - 2rem);
    }

    .course-hero h1 {
        font-size: 2.05rem;
        line-height: 1.16;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .course-hero p {
        font-size: 1.08rem;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .reference-title,
    .home-ribbon,
    .about-values__title {
        width: min(100%, 22rem);
        margin-right: auto;
        margin-left: auto;
        overflow-wrap: normal;
    }

    .about-adn__cards {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 1.2rem;
    }

    .about-adn__card {
        min-height: auto;
    }

    .about-adn__cards::before {
        top: 50%;
        width: 7rem;
        height: 7rem;
        opacity: 1;
    }

    .about-adn__card--left,
    .about-adn__card--right {
        justify-self: stretch;
        margin-top: 0;
    }

    .about-adn__card--right {
        padding-left: 1.5rem;
    }

    .reference-hero--orbit::before,
    .orbit-section::before {
        width: min(28rem, 86vw);
        height: min(26rem, 80vw);
    }

    .course-aside {
        position: static;
    }

    .page-training .reference-kicker {
        font-size: var(--type-page-kicker);
        margin-left: 0;
    }

    .page-training .reference-hero__wide h1 {
        margin-left: 0;
        font-size: clamp(2rem, 9vw, 2.65rem);
    }

    .page-training .reference-hero__wide p:not(.reference-kicker) {
        margin-left: 0;
        font-size: var(--type-page-lead);
    }

    .page-training .reference-hero .btn {
        margin-left: 0;
    }

    .page-training .training-catalog .reference-title {
        font-size: 1.8rem;
    }

    .page-expertises .reference-hero {
        padding: 4.5rem 0 3rem;
    }

    .page-expertises .reference-kicker {
        font-size: var(--type-page-kicker);
        margin-left: 0;
    }

    .page-expertises .reference-hero__wide h1 {
        margin-left: 0;
        font-size: clamp(2rem, 9vw, 2.65rem);
        line-height: 1.25;
    }

    .page-expertises .reference-hero__wide p:not(.reference-kicker) {
        margin-left: 0;
        font-size: var(--type-page-lead);
        line-height: 1.6;
    }

    .page-expertises .expertise-feature,
    .page-expertises .expertise-feature--reverse,
    .page-expertises .expertise-triptych {
        grid-template-columns: 1fr;
    }

    .page-expertises .expertise-feature,
    .page-expertises .expertise-feature--reverse {
        gap: 1.5rem;
        margin-top: 0;
    }

    .page-expertises .expertise-feature__copy,
    .page-expertises .expertise-feature--reverse .expertise-feature__copy,
    .page-expertises .expertise-triptych__copy {
        padding-left: 0;
    }

    .page-expertises .reference-cutout,
    .page-expertises .expertise-triptych__image {
        max-width: min(100%, 24rem);
        margin-top: 0;
        margin-inline: auto;
    }

    .page-slug-nos-expertises-conseil-audit .expertise-triptych__image {
        max-width: min(100%, 36rem);
    }

    .page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych__image {
        grid-column: auto;
        grid-row: auto;
        max-width: 7rem;
    }

    .page-expertises .reference-cutout-link {
        width: 100%;
    }

    .page-slug-nos-expertises-seminaires-teambuilding .expertise-feature__copy,
    .organization-hero .reference-hero__copy {
        order: 1;
        width: 100%;
    }

    .page-slug-nos-expertises-seminaires-teambuilding .reference-cutout-link,
    .page-slug-nos-expertises-seminaires-teambuilding .expertise-feature > .reference-cutout,
    .organization-hero__image {
        order: 2;
    }

    .organization-hero .reference-hero__grid {
        grid-template-columns: minmax(0, 1fr);
        width: min(100%, calc(100vw - 2rem));
        gap: 1.35rem;
    }

    .organization-hero__image {
        max-width: min(100%, 22rem);
        margin-inline: auto;
    }

    .organization-hero p {
        max-width: none;
        font-size: var(--type-page-lead);
        line-height: 1.55;
    }

    .hero__actions {
        justify-content: center;
    }

    .reference-hero .btn,
    .organization-hero .btn,
    .page-training .reference-hero .btn,
    .page-expertises .reference-hero .btn {
        display: flex;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .page-training .training-intro .expertise-feature {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.4rem;
    }

    .page-training .training-intro .expertise-feature__copy {
        padding-left: 0;
    }

    .page-training .training-intro .reference-cutout {
        max-width: min(100%, 22rem);
        margin-inline: auto;
    }

    .page-expertises .expertise-feature:not(.expertise-feature--reverse) h2 {
        top: 0;
    }

    .page-expertises .expertise-feature--reverse h2,
    .page-expertises .expertise-feature--reverse .expertise-feature__lead {
        margin-bottom: 1rem;
    }

    .page-expertises .reference-list li:last-child {
        margin-top: 0;
        margin-left: 0;
    }

    .page-expertises .reference-list--compact {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .page-expertises .reference-list--compact li,
    .page-expertises .reference-list--compact li:last-child {
        padding: 0.75rem 0.85rem;
        font-size: var(--type-page-lead);
    }

    .page-expertises .reference-examples article {
        min-height: 0;
        padding: 1.45rem 1rem;
    }

    .expertise-extra-blocks,
    .expertise-stats,
    .expertise-references {
        margin-top: 2rem;
    }
}

@media (max-width: 900px) {
    :root {
        --type-page-kicker: 1rem;
        --type-page-h1: 2.35rem;
        --type-page-lead: 1rem;
        --type-section-h2: 1.6rem;
        --type-card-h3: 1.25rem;
        --type-copy: 0.98rem;
    }

    .reference-section,
    .news-list,
    .course-page,
    .home-approach,
    .home-services,
    .home-trust,
    .home-news {
        padding-top: var(--section-space-mobile);
        padding-bottom: var(--section-space-mobile);
    }

    .hero__copy--home .hero__lead {
        font-size: var(--type-page-lead);
        line-height: 1.32;
    }

    .hero--contact h1 {
        max-width: 13ch;
        font-size: clamp(2.25rem, 10vw, 2.75rem);
        line-height: 1.05;
    }

    .hero--contact .shell,
    .hero--contact .hero__grid,
    .hero--contact .hero__copy,
    .hero--contact .hero__lead {
        width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .home-approach .home-ribbon {
        font-size: 1.9rem;
    }

    .home-services__secondary .offer-card:first-child h3 {
        font-size: 1.6rem;
    }

    .page-expertises .expertise-feature,
    .page-expertises .expertise-feature--reverse {
        gap: 1.75rem;
        margin-bottom: var(--section-gap-mobile);
    }

    .page-training .training-intro .reference-cutout {
        aspect-ratio: 16 / 10;
        max-width: min(100%, 22rem);
    }

    .training-approach__image-link {
        width: 100%;
        max-width: min(100%, 36rem);
    }

    .page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych,
    .page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych .home-ribbon,
    .page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych__copy,
    .page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych__image {
        grid-column: auto;
        grid-row: auto;
        text-align: center;
    }

    .page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych {
        grid-template-columns: 1fr;
        max-width: 37rem;
        margin-top: var(--section-gap-mobile);
    }

    .page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych__body p {
        text-align: left;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .js-reveal [data-reveal="from-left"]:not(.is-visible),
    .js-reveal [data-reveal="from-right"]:not(.is-visible),
    .js-reveal .reference-cutout.reveal-on-scroll:not(.is-visible),
    .js-reveal .expertise-feature:not(.expertise-feature--reverse) img.reveal-on-scroll:not(.is-visible),
    .js-reveal .expertise-feature--reverse img.reveal-on-scroll:not(.is-visible),
    .js-reveal .expertise-triptych__image.reveal-on-scroll:not(.is-visible),
    .js-reveal .training-approach__layout img.reveal-on-scroll:not(.is-visible),
    .js-reveal .training-card img.reveal-on-scroll:not(.is-visible),
    .js-reveal .course-related__grid img.reveal-on-scroll:not(.is-visible) {
        transform: translate3d(0, 2rem, 0) scale(0.985) var(--reveal-transform-extra) !important;
    }
}

@media (min-width: 901px) and (max-width: 1120px) {
    .reference-section,
    .news-list,
    .course-page,
    .home-approach,
    .home-services,
    .home-trust,
    .home-news {
        padding-top: var(--section-space-tablet);
        padding-bottom: var(--section-space-tablet);
    }

    .page-slug-nos-expertises-seminaires-teambuilding .expertise-triptych {
        margin-top: var(--section-gap-tablet);
    }

    .about-commitment__layout--with-diagram {
        grid-template-columns: 1fr;
        width: min(46rem, 100%);
    }

    .about-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 420px) {
    .home-approach .home-ribbon {
        font-size: 1.65rem;
    }

    .home-services__secondary .offer-card:first-child h3 {
        font-size: 1.42rem;
    }
}

@media (hover: none) {
    .about-value-card p {
        max-height: none;
        margin-top: 0.78rem;
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero--home .hero__main-image--cutout,
    .hero--home .hero__copy--home,
    .js-reveal [data-reveal],
    .js-reveal .reveal-on-scroll {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }

    .image-load-reveal,
    .image-load-reveal:not(.is-loaded) {
        opacity: 1 !important;
        filter: none !important;
        clip-path: inset(0);
        transition: none;
    }

    .about-value-card,
    .about-value-card::after,
    .about-value-card__header::after,
    .about-value-card p {
        transition: none;
    }
}
