body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: rgba(249, 250, 251, 1);
}

header {
    background-color: rgba(244, 247, 246, 1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 0 20px;
    height: 100px;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgba(229, 231, 235, 1);
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

nav a,
nav button {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    text-decoration: none;
    color: rgba(84, 110, 122, 1);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav a:hover,
nav button:hover {
    background: rgba(229, 231, 235, 1);
    color: rgba(84, 110, 122, 1);
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    width: 30px;
    height: 30px;
    transition: transform 0.2s;
}

.dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    bottom: auto;
    left: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    min-width: 195px;
    padding: 8px 0;
    z-index: 200;
    list-style: none;
    animation: fadeDown 0.18s ease;
}

.dropdown.open .dropdown-menu {
    display: block;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(84, 110, 122, 1);
    text-decoration: none;
    border-radius: 0;
    transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
    background: rgba(244, 247, 246, 1);
    color: rgba(84, 110, 122, 1);
}

.btn-contact {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 20px;
    background: rgba(130, 195, 0, 1);
    color: rgba(249, 250, 251, 1);
    padding: 13px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    text-decoration: none;
    margin-left: auto;
}

.btn-contact:hover {
    background: rgba(110, 170, 0, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(130, 195, 0, 0.4);
    animation: pulse 1.2s infinite;
}

footer {
    background: rgba(244, 247, 246, 1);
    border-top: 1px solid rgba(229, 231, 235, 1);
    padding: 0;
}

.footer-main {
    height: 280px;
    display: flex;
    align-items: stretch;
    padding: 12px 20px;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 180px;
    width: auto;
    display: block;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 3px;
}

.footer-socials a img {
    width: 32px;
    height: 32px;
    display: block;
    transition: transform 0.18s;
}

.footer-socials a:hover img {
    transform: translateY(-2px);
}

.footer-legal {
    width: 600px;
    border-top: 1px solid rgba(229, 231, 235, 1);
    margin-top: auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.footer-legal a {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    color: rgba(84, 110, 122, 1);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: color 0.18s;
}

.footer-legal a:hover {
    color: rgba(130, 195, 0, 1);
}

.footer-copy {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 13px;
    color: rgba(84, 110, 122, 1);
    padding: 10px 40px 18px;
    text-align: center;
}

.footer-copy a {
    color: rgba(27, 78, 129, 1);
    font-weight: 600;
    text-decoration: none;
}

.footer-copy a:hover {
    text-decoration: underline;
}

.carrousel-container {
    width: 100%;
    overflow: hidden;
    background-color: rgba(27, 78, 129, 1);
    padding: 20px 0;
    white-space: nowrap;
    margin-top: 50px;
}

.carrousel-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.carrousel-group {
    display: flex;
    align-items: center;
}

.item {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 17px;
    color: rgba(249, 250, 251, 1);
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0 50px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(249, 250, 251, 1) 0%, rgba(225, 240, 255, 1) 50%, rgba(235, 248, 220, 1) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.hero img {
    width: 600px;
    height: auto;
}

.hero_title {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.hero_title h1 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 45px;
    color: rgba(27, 78, 129, 1);
    text-align: end;
}

.hero_title p {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 28px;
    color: rgba(69, 90, 100, 1);
    text-align: end;
    margin: 0;
}

.hero_text {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    color: rgba(69, 90, 100, 1);
    text-align: center;
}

.hero_text span {
    display: block;
}

.hero_cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.hero_cta-group a {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-size: 20px;
    background: rgba(130, 195, 0, 1);
    color: rgba(249, 250, 251, 1);
    padding: 5px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    text-decoration: none;
}

.hero_cta-group a:hover {
    background: rgba(130, 195, 0, 1);
    transform: translateY(-1px);
}

.cards-section {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 70px;
    padding: 100px 80px;
    margin: 0 auto;
}

.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(249, 250, 251, 1);
    border-radius: 10px;
    padding: 32px 28px 28px;
    text-decoration: none;
    color: inherit;
    box-shadow: 10 10px 20px 2px rgba(0, 0, 0, 0.25);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(rgba(135, 219, 239, 1) 0%, rgba(179, 228, 153, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.45;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 40px rgba(27, 78, 129, 0.18);
    background: linear-gradient(160deg, rgba(249, 250, 251, 1) 60%, rgba(235, 248, 220, 0.6) 100%);
}

.card:hover::before {
    opacity: 1;
}

.card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.card-title {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: rgba(27, 78, 129, 1);
    margin: 0;
    line-height: 1.3;
}

.card-subtitle {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(84, 110, 122, 1);
    margin: 0;
    line-height: 1.5;
}

.card-logo {
    margin: 16px 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-logo img {
    width: 190px;
    height: auto;
    display: block;
}

.card-desc {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(84, 110, 122, 1);
    margin: 0 0 18px;
    line-height: 1.6;
}

.card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(130, 195, 0, 0.12);
    color: rgba(130, 195, 0, 1);
    font-size: 18px;
    font-weight: bold;
    transition: background 0.18s, transform 0.18s;
    margin-top: auto;
}

.card:hover .card-arrow {
    background: rgba(130, 195, 0, 1);
    color: #fff;
    transform: translateX(3px);
}

.end {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.end-text {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    color: rgba(84, 110, 122, 1);
    max-width: 1100px;
    text-align: center;
    line-height: 1.6;
}

.end-text span {
    font-weight: bold;
    color: rgba(27, 78, 129, 1);
}

.hero-corporate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 80px 50px;
    background-color: rgba(249, 250, 251, 1);
}

.hero-corporate .logo-side {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-corporate .logo-side img {
    width: 500px;
    height: auto;
}


.hero-corporate .title-side {
    flex: 1;
}

.hero-corporate .title-side h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 35px;
    color: rgba(27, 78, 129, 1);
    margin: 0;
    line-height: 1.25;
}

.intro-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 40px 40px;
}

.intro-section p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.7;
    margin: 0 0 16px;
}

.intro-section p strong {
    font-weight: bold;
    color: rgba(27, 78, 129, 1);
}

.services-section {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    padding: 20px 60px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    background: rgba(249, 250, 251, 1);
    border-radius: 12px;
    border: 1px solid rgba(135, 219, 239, 1);
    padding: 24px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 10px 10px 20px 2px rgba(0, 0, 0, 0.10);
    width: 300px;
}

.service-card h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 16px;
}

.card-video {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px;
    display: block;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.6;
    padding: 4px 0 4px 18px;
    position: relative;
}

.service-card ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: rgba(130, 195, 0, 1);
    font-weight: 700;
}

.conclusion-section {
    text-align: center;
    padding: 10px 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-section p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: rgba(55, 71, 79, 1);
    margin: 0 0 8px;
}

.conclusion-section a.contact-link {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: rgba(27, 78, 129, 1);
    text-decoration: underline;
    cursor: pointer;
}

.conclusion-section a.contact-link:hover {
    color: rgba(130, 195, 0, 1);
}

.services-section-2col {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 80px;
    padding: 20px 60px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card-2col {
    flex: 0 0 300px;
    width: 300px;
    background: rgba(249, 250, 251, 1);
    border-radius: 12px;
    border: 1px solid rgba(135, 219, 239, 1);
    padding: 24px 20px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 10px 10px 20px 2px rgba(0, 0, 0, 0.10);
}

.service-card-2col h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 16px;
    text-align: center;
    line-height: 1.4;
}

.service-card-2col .card-video {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px;
    display: block;
    background: #e0e0e0;
}

.service-card-2col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-2col ul li {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.6;
    padding: 4px 0 4px 18px;
    position: relative;
}

.service-card-2col ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: rgba(130, 195, 0, 1);
    font-weight: 700;
}

.section-label {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: rgba(27, 78, 129, 1);
    max-width: 1000px;
    margin: 10px auto 20px;
    padding: 0 60px;
}

.garanties-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 60px 60px;
}

.garanties-section h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 16px;
}

.garanties-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.garanties-section ul li {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.garanties-section ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: rgba(130, 195, 0, 1);
    font-weight: 700;
}

.garanties-section ul li strong {
    font-weight: 700;
    color: rgba(27, 78, 129, 1);
}

.hero-academy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 80px 50px;
    background-color: rgba(249, 250, 251, 1);
}

.hero-academy .logo-side {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-academy .logo-side img {
    width: 500px;
    height: auto;
}

.hero-academy .title-side h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: rgba(27, 78, 129, 1);
    margin: 0;
    line-height: 1.25;
}

.academy-intro {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.academy-intro h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 33px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 20px;
    line-height: 1.35;
    padding: 20px 90px;
}

.academy-intro p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.7;
    margin: 0;
    text-align: start;
    padding: 0 125px;
}

.parcours-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 90px 0px;
    overflow: visible;
}


.parcours-line-img {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
    z-index: 0;
}

.parcours-row {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 80px;
    box-sizing: border-box;
    z-index: 1;
}

.parcours-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(249, 250, 251, 1);
    box-shadow: 0 8px 24px 0 rgba(84, 110, 122, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 35px 35px;
    text-align: center;
    flex-shrink: 0;
    overflow: hidden;
}

.parcours-circle img.p-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-bottom: 2px;
}

.parcours-circle h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: rgba(27, 78, 129, 1);
    margin: 0;
    line-height: 1.3;
}

.parcours-circle .p-sub {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: rgba(100, 120, 130, 1);
    line-height: 1.4;
    margin: 0;
}

.parcours-wrapper,
.parcours-row,
.parcours-circle {
    opacity: 1 !important;
    transform: none !important;
}

.parcours-line-img {
    opacity: 1 !important;
    transform: translateY(-50%) !important;
}

.p-checks {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 190px;
    margin-top: 2px;
    padding-left: 20Px;
}

.p-check {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
}

.p-check img {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    margin-top: 1px;
}

.p-check span {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 9px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.3;
}

.academy-conclusion {
    max-width: 1000px;
    margin: 0 70px 80px 70px;
    padding: 20px 60px 30px;

}

.academy-conclusion p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.7;
    margin: 0 0 16px;
}

.academy-conclusion p strong {
    font-weight: bold;
    color: rgba(27, 78, 129, 1);
}

.academy-conclusion a.contact-link {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 15px;
    color: rgba(27, 78, 129, 1);
    text-decoration: underline;
    display: inline-block;
    margin-top: 4px;
}

.academy-conclusion a.contact-link:hover {
    color: rgba(130, 195, 0, 1);
}

.apropos-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 80px 50px;
    max-width: 1100px;
    margin-top: 40px;
}

.apropos-hero-text h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 35px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 24px;
}

.apropos-hero-text p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.7;
    margin: 0 0 12px;
}

.apropos-hero-img img {
    width: 270px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 10px 10px 20px 2px rgba(0, 0, 0, 0.25);
}

.section-digital {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 80px;
}

.section-digital h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 25px;
    color: rgba(27, 78, 129, 1);
    text-align: center;
    margin: 0 0 24px;
}

.section-digital p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.7;
    margin: 0 0 30px;
    text-align: left;
}

.digital-cards {
    display: flex;
    gap: 50px;
    margin-top: 70px;
    align-items: flex-start;
    justify-content: center;
}

.digital-card {
    background: #fff;
    border: 1px solid rgba(72, 201, 176, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 12px 30px 0 rgba(27, 78, 129, 0.05);
    width: 290px;
    height: 100px;
}

.digital-card2 {
    margin-top: 50px
}

.digital-card h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 10px;
}

.digital-card p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(84, 110, 122, 1);
    margin: 0;
}

.section-adn {
    display: flex;
    align-items: flex-start;
    gap: 204px;
    padding: 60px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.adn-img img {
    width: 270px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 10px 10px 20px 2px rgba(0, 0, 0, 0.25);
}

.adn-content h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 8px;
}

.adn-content .adn-sub {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    color: rgba(84, 110, 122, 1);
    margin: 0 0 24px;
    line-height: 1.6;
}

.adn-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    margin-left: 60px;
}

.adn-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.adn-item-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.6;
}

.section-promesse-inner {
    margin: 0 auto;
}

.section-promesse h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 25px;
    color: rgba(27, 78, 129, 1);
    text-align: center;
    margin: 0 0 50px;
    background-color: rgba(72, 201, 176, 0.1);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-promesse p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.7;
    margin: 0 0 14px;
    padding: 0 200px;
}

.section-pourquoi {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 80px;
}

.section-pourquoi h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 25px;
    color: rgba(27, 78, 129, 1);
    text-align: center;
    margin: 0 0 40px;
}

.pourquoi-intro h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 15px;
}

.pourquoi-intro p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(55, 71, 79, 1);
    margin: 0 0 60px;
}

.pourquoi-cards {
    display: flex;
    gap: 50px;
    margin-top: 70px;
    align-items: flex-start;
    justify-content: center;
}

.pourquoi-card {
    flex: 1;
    background: #fff;
    border: 1px solid rgba(72, 201, 176, 0.2);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 12px 30px 0 rgba(27, 78, 129, 0.05);
}

.pourquoi-card2 {
    margin-top: 50px;
}

.pourquoi-card h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 10px;
}

.pourquoi-card p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(84, 110, 122, 1);
    margin: 0;
}

.section-temoignages {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 80px 80px;
}

.section-temoignages h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 25px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 30px;
}

.temoignages-row {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.temoignage-card {
    flex: 1;
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 30px;
    padding: 24px 22px 20px;
    box-shadow: 0 4px 16px rgba(27, 78, 129, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.temoignage-card .quote {
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    font-size: 14px;
    color: rgba(84, 110, 122, 1);
    line-height: 1.7;
    margin: 0 0 16px;
}

.temoignage-card .author {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: rgba(27, 78, 129, 1);
    text-align: right;
}

.eng-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 60px 80px 50px;
}

.eng-hero-img img {
    width: 500px;
    height: auto;
    display: block;
}

.eng-hero-text h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: rgba(27, 78, 129, 1);
    margin: 0;
    line-height: 1.25;
}

.eng-intro {
    padding: 10px 80px 90px;
    max-width: 900px;
}

.eng-intro p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: rgba(55, 71, 79, 1);
    line-height: 1.7;
    margin: 0;
}

.eng-list {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0 60px;
    position: relative;
}

.eng-line {
    display: none;
}

.eng-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, rgba(130, 195, 0, 1), rgba(27, 78, 129, 1));
    z-index: 0;
    transition: height 5s ease;
}

.eng-list.visible::before {
    height: 100%;
}

.eng-item {
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
    justify-content: center;
}

.eng-item-text {
    width: calc(50% - 55px);
    text-align: right;
    padding-right: 20px;
}

.eng-item-text h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 8px;
    text-align: start;
}

.eng-item-text p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(84, 110, 122, 1);
    line-height: 1.65;
    margin: 0;
    text-align: start;
}

.eng-icon {
    width: 70px;
    flex-shrink: 0;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(27, 78, 129, 1);
    background: rgba(249, 250, 251, 1);
    box-shadow: 0 4px 16px rgba(27, 78, 129, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.eng-icon img {
    width: 32px;
    height: 32px;
}

.eng-item-spacer {
    width: calc(50% - 35px);
}

.eng-item .eng-item-text {
    order: 1;
}

.eng-item .eng-icon {
    order: 2;
}

.eng-item .eng-item-spacer {
    order: 3;
}

.eng-item.reverse .eng-item-spacer {
    order: 1;
}

.eng-item.reverse .eng-icon {
    order: 2;
}

.eng-item.reverse .eng-item-text {
    order: 3;
    text-align: left;
    padding-right: 0;
    padding-left: 30px;
}

.eng-main-quote {
    padding: 60px 80px 20px;
}

.eng-main-quote h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 26px;
    color: rgba(27, 78, 129, 1);
    margin: 0;
    line-height: 1.35;
}

.eng-valeurs {
    margin: 40px 295px;
    background: rgba(72, 201, 176, 0.1);
    border-radius: 50px;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eng-valeurs p {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 17px;
    color: rgba(27, 78, 129, 1);
    margin: 0;
    text-align: center;
}

.eng-valeurs p span {
    font-weight: 800;
}

.eng-cta {
    padding: 40px 80px 100px;
    text-align: center;
}

.eng-cta p {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: rgba(27, 78, 129, 1);
    margin: 0;
}

.eng-cta p a {
    color: rgba(130, 195, 0, 1);
    font-weight: bold;
    text-decoration: none;
}

.eng-cta p a:hover {
    text-decoration: underline;
}

.contact-hero {
    padding: 60px 80px 10px;
    text-align: center;
}

.contact-hero h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 40px;
}

.contact-hero p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(84, 110, 122, 1);
    line-height: 1.7;
    margin: 0 auto;
}

.contact-block {
    margin: 50px 60px;
    background: rgba(130, 195, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: stretch;
    height: 600px;
    overflow: hidden;
}

.contact-left {
    width: 42%;
    padding: 20px 50px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.contact-left-photo img {
    width: 250px;
    height: 330px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 10px 10px 20px 2px rgba(0, 0, 0, 0.25);
}

.contact-left-social h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 4px;
}

.contact-left-social p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(84, 110, 122, 1);
    margin: 0 0 10px;
}

.contact-left-social .social-icons {
    display: flex;
    gap: 3px;
    display: block;
    transition: transform 0.18s;

}

.contact-left-social .social-icons a:hover img {
    transform: translateY(-2px);
}

.contact-left-social .social-icons img {
    width: 28px;
    height: 28px;
}

.contact-left-cta {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: rgb(255, 255, 255);
    background-color: rgba(27, 78, 129, 1);
    border-radius: 8px;
    padding: 12px 20px;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    width: fit-content;
}

.contact-left-cta:hover {
    background: rgba(130, 195, 0, 1);
    transform: translateY(-1px);
}

.contact-right {
    flex: 1;
    padding: 20px 90px;
    display: flex;
    flex-direction: column;
}

.contact-right h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: rgba(27, 78, 129, 1);
    margin: 0 0 6px;
    text-align: center;
}

.contact-right .form-sub {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: rgba(84, 110, 122, 1);
    text-align: center;
    margin: 0 0 15px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(84, 110, 122, 1);
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 6px;
    padding: 7px 13px;
    outline: none;
    transition: border 0.18s;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder {
    color: rgba(160, 174, 192, 1);
}

.form-dropdown {
    position: relative;
    width: 150px;
}

.form-dropdown-btn {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: rgba(160, 174, 192, 1);
    background: #fff;
    border: 1px solid rgba(229, 231, 235, 1);
    border-radius: 6px;
    padding: 12px 16px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-dropdown-btn-menu {
    padding: 6px 12px;
}

.form-dropdown-btn img {
    width: 10px;
    height: 10px;
    transition: transform 0.2s;
}

.form-dropdown.open .form-dropdown-btn img {
    transform: rotate(180deg);
}

.form-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 50;
    list-style: none;
    padding: 6px 0;
    margin: 0;
}

.form-dropdown.open .form-dropdown-menu {
    display: block;
}

.form-dropdown-menu li {
    display: block;
    padding: 10px 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: rgba(84, 110, 122, 1);
    cursor: pointer;
}

.form-dropdown-menu li:hover {
    background: rgba(244, 247, 246, 1);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-checkboxes label {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(84, 110, 122, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.form-checkboxes input[type="radio"] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin: 0;
    cursor: pointer;
    accent-color: rgba(27, 78, 129, 1);
}

.form-checkboxes label span.check-label {
    font-size: 12px;
}

.form-checkboxes p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(84, 110, 122, 1);
    margin: 0 0 4px;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

.btn-envoyer {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 15px;
    background: rgba(130, 195, 0, 1);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 40px;
    cursor: pointer;
    width: fit-content;
    transition: background 0.18s, transform 0.15s;
}

.btn-envoyer:hover {
    background: rgba(20, 60, 100, 1);
    transform: translateY(-1px);
}

.form-confidentialite {
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    color: rgba(130, 150, 160, 1);
    margin: 4px 0 0;
    line-height: 1.5;
}

.contact-agenda {
    text-align: center;
    padding: 40px 80px 60px;
}

.contact-agenda p {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: rgba(55, 71, 79, 1);
    margin: 0;
}

.contact-agenda p a {
    color: rgba(27, 78, 129, 1);
    font-weight: 700;
    text-decoration: underline;
}

.contact-agenda p a:hover {
    color: rgba(130, 195, 0, 1);
}

.stats-row {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 30px;
    font-weight: 800;
    color: rgba(27, 78, 129, 1);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(84, 110, 122, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.apropos-hero-img img,
.contact-left-photo img,
.adn-img img {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-radius: 12px;
}

.apropos-hero-img img:hover,
.contact-left-photo img:hover,
.adn-img img:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 20px 40px rgba(27, 78, 129, 0.15);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

body {
    animation: pageFadeIn 0.4s ease;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 150;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(84, 110, 122, 1);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    header {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 16px;
        position: sticky;
        top: 0;
        z-index: 200;
        gap: 10px;
    }

    header>img:first-child {
        height: 42px;
        width: auto;
        flex-shrink: 0;
        display: block;
    }

    header>.btn-contact {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    header nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        order: 3;
    }

    header nav.open {
        max-height: 500px;
    }

    header nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 0 12px;
        margin: 0;
    }

    header nav ul li {
        width: 100%;
    }

    header nav a,
    header nav button {
        width: 100%;
        font-size: 15px;
        padding: 12px 16px;
        justify-content: space-between;
        border-radius: 0;
    }

    header .dropdown-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 4px 20px;
        animation: none;
        background: transparent;
        min-width: unset;
    }

    header .dropdown-menu a {
        font-size: 13px;
        padding: 8px 16px;
    }

    .footer-main {
        height: auto;
        flex-direction: column;
        align-items: center;
        padding: 24px 16px 16px;
        gap: 20px;
    }

    .footer-logo img {
        height: 120px;
    }

    .footer-center {
        width: 100%;
        align-items: center;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .footer-nav ul li {
        width: auto;
    }

    .footer-legal {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
        text-align: center;
    }

    .footer-legal a {
        font-size: 11px;
    }

    .footer-copy {
        font-size: 11px;
        padding: 8px 16px 12px;
    }

    .footer-right {
        width: 100%;
        align-items: center;
    }

    .hero {
        flex-direction: column;
        padding: 24px 16px 16px;
        gap: 16px;
        text-align: center;
    }

    .hero img {
        width: 100%;
        max-width: 260px;
        height: auto;
    }

    .hero_title {
        align-items: center;
        margin-bottom: 16px;
    }

    .hero_title h1 {
        font-size: clamp(22px, 7vw, 42px);
        text-align: center;
    }

    .hero_title p {
        font-size: clamp(14px, 4vw, 24px);
        text-align: center;
    }

    .hero_text {
        font-size: clamp(13px, 3.5vw, 17px);
        padding: 0 16px;
    }

    .hero_cta-group {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
        margin-top: 16px;
    }

    .hero_cta-group a {
        font-size: 15px;
        text-align: center;
        width: 100%;
        padding: 10px 20px;
    }

    .carrousel-container {
        margin-top: 24px;
    }

    .item {
        font-size: 12px;
        padding: 0 20px;
    }

    .cards-section {
        flex-direction: column;
        gap: 20px;
        padding: 32px 16px;
    }

    .card {
        width: 100%;
    }

    .card-logo img {
        width: 140px;
        height: auto;
    }

    .end {
        padding: 0 16px;
        margin-bottom: 32px;
    }

    .end-text {
        font-size: clamp(14px, 3.5vw, 18px);
        padding: 0;
    }

    .hero-corporate,
    .hero-academy,
    .eng-hero {
        flex-direction: column;
        gap: 20px;
        padding: 28px 16px 20px;
        text-align: center;
    }

    .hero-corporate .logo-side img,
    .hero-academy .logo-side img {
        width: 100%;
        max-width: 240px;
        height: auto;
    }

    .hero-corporate .title-side h1 {
        font-size: clamp(20px, 6vw, 32px);
    }

    .hero-academy .title-side h1 {
        font-size: clamp(20px, 6vw, 32px);
    }

    .eng-hero-img img {
        width: 100%;
        max-width: 240px;
        height: auto;
    }

    .eng-hero-text h1 {
        font-size: clamp(20px, 6vw, 34px);
        text-align: center;
    }

    .intro-section {
        padding: 16px 16px 24px;
    }

    .intro-section p {
        font-size: 15px;
    }

    .services-section {
        flex-direction: column;
        gap: 20px;
        padding: 12px 16px 32px;
    }

    .service-card {
        width: 100%;
    }

    .services-section-2col {
        flex-direction: column;
        gap: 20px;
        padding: 12px 16px 28px;
    }

    .service-card-2col {
        flex: none;
        width: 100%;
    }

    .section-label {
        padding: 0 16px;
    }

    .garanties-section {
        padding: 10px 16px 32px;
    }

    .apropos-hero {
        flex-direction: column;
        padding: 24px 16px;
        gap: 20px;
        margin-top: 16px;
    }

    .apropos-hero-text h1 {
        font-size: clamp(20px, 6vw, 32px);
    }

    .apropos-hero-img img {
        width: 100%;
        max-width: 220px;
        height: auto;
    }

    .section-digital {
        padding: 24px 16px;
    }

    .section-digital h2 {
        font-size: clamp(18px, 5vw, 24px);
    }

    .digital-cards {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
        align-items: stretch;
    }

    .digital-card {
        width: 100%;
        height: auto;
    }

    .digital-card2 {
        margin-top: 0;
    }

    .section-adn {
        flex-direction: column;
        gap: 24px;
        padding: 24px 16px;
    }

    .adn-img img {
        width: 100%;
        max-width: 220px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .adn-item {
        margin-left: 0;
    }

    .adn-content h2 {
        font-size: clamp(18px, 5vw, 24px);
    }

    .section-promesse h2 {
        font-size: clamp(15px, 4vw, 22px);
        height: auto;
        padding: 16px;
        margin: 0;
    }

    .section-promesse p {
        padding: 0 16px;
        font-size: 14px;
    }

    .section-pourquoi {
        padding: 32px 16px;
    }

    .section-pourquoi h2 {
        font-size: clamp(18px, 5vw, 24px);
    }

    .pourquoi-cards {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }

    .pourquoi-card {
        padding: 24px 20px;
    }

    .pourquoi-card2 {
        margin-top: 0;
    }

    .section-temoignages {
        padding: 10px 16px 32px;
    }

    .temoignages-row {
        flex-direction: column;
        gap: 16px;
    }

    .parcours-wrapper {
        height: auto;
        margin: 32px 0;
        overflow: visible;
    }

    .parcours-line-img {
        display: none;
    }

    .parcours-row {
        position: static;
        flex-direction: column;
        gap: 20px;
        padding: 16px;
        align-items: center;
        height: auto;
    }

    .parcours-circle {
        width: 100%;
        max-width: 300px;
        height: auto;
        border-radius: 16px;
        padding: 24px 20px;
        overflow: visible;
    }

    .p-checks {
        width: 100%;
        padding-left: 8px;
    }

    .p-check span {
        font-size: 11px;
    }

    .academy-intro h2 {
        font-size: clamp(18px, 5vw, 28px);
        padding: 16px;
    }

    .academy-intro p {
        padding: 0 16px;
        font-size: 15px;
    }

    .academy-conclusion {
        margin: 0 0 40px;
        padding: 16px;
    }

    .eng-intro {
        padding: 8px 16px 32px;
    }

    .eng-list {
        padding: 0 0 32px;
    }

    .eng-line {
        display: none;
    }

    .eng-item,
    .eng-item.reverse {
        flex-direction: column;
        align-items: center;
        padding: 24px 16px;
        gap: 16px;
        text-align: center;
    }

    .eng-item-text,
    .eng-item.reverse .eng-item-text {
        width: 100%;
        text-align: left;
        padding: 0;
        order: 2;
    }

    .eng-item-spacer {
        display: none;
    }

    .eng-item .eng-item-text {
        order: 2;
    }

    .eng-item .eng-icon {
        order: 1;
    }

    .eng-item.reverse .eng-icon {
        order: 1;
    }

    .eng-item.reverse .eng-item-text {
        order: 2;
    }

    .eng-main-quote {
        padding: 24px 16px 12px;
    }

    .eng-main-quote h2 {
        font-size: clamp(16px, 4.5vw, 24px);
    }

    .eng-valeurs {
        margin: 20px 16px;
        border-radius: 16px;
    }

    .eng-valeurs p {
        font-size: 14px;
    }

    .eng-cta {
        padding: 20px 16px 48px;
    }

    .contact-hero {
        padding: 28px 16px 8px;
    }

    .contact-hero h1 {
        font-size: clamp(20px, 6vw, 36px);
        margin: 0 0 20px;
    }

    .contact-block {
        margin: 20px 16px;
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    .contact-block>img {
        display: none;
    }

    .contact-left {
        width: 100%;
        padding: 24px 16px;
        justify-content: center;
    }

    .contact-left-photo img {
        width: 180px;
        height: 230px;
    }

    .contact-right {
        padding: 16px 20px 28px;
    }

    .form-checkboxes label {
        white-space: normal;
    }

    .contact-agenda {
        padding: 20px 16px 40px;
    }

    .contact-agenda p {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    header {
        height: 80px;
        padding: 0 20px;
        gap: 8px;
    }

    header>img:first-child {
        height: 52px;
        width: auto;
        flex-shrink: 0;
        display: block;
    }

    nav a,
    nav button {
        font-size: 13px;
        padding: 6px 8px;
    }

    .btn-contact {
        font-size: 14px;
        padding: 10px 18px;
    }

    .footer-main {
        height: auto;
        flex-wrap: wrap;
        padding: 20px;
        gap: 16px;
    }

    .footer-legal {
        width: 100%;
        gap: 20px;
        padding: 14px 20px;
    }

    .hero {
        padding: 32px 24px;
        gap: 20px;
    }

    .hero img {
        width: clamp(280px, 40vw, 480px);
        height: auto;
    }

    .hero_title h1 {
        font-size: clamp(28px, 4vw, 42px);
    }

    .hero_title p {
        font-size: clamp(18px, 2.5vw, 26px);
    }

    .cards-section {
        gap: 24px;
        padding: 60px 24px;
        flex-wrap: wrap;
    }

    .card {
        min-width: 220px;
    }

    .hero-corporate,
    .hero-academy,
    .eng-hero {
        padding: 40px 32px;
        gap: 32px;
    }

    .hero-corporate .logo-side img,
    .hero-academy .logo-side img {
        width: clamp(220px, 35vw, 380px);
        height: auto;
    }

    .hero-corporate .title-side h1 {
        font-size: clamp(22px, 3vw, 30px);
    }

    .hero-academy .title-side h1 {
        font-size: clamp(22px, 3vw, 32px);
    }

    .eng-hero-img img {
        width: clamp(220px, 35vw, 380px);
        height: auto;
    }

    .eng-hero-text h1 {
        font-size: clamp(22px, 3vw, 32px);
    }

    .intro-section {
        padding: 24px 32px 32px;
    }

    .services-section {
        flex-wrap: wrap;
        padding: 12px 24px 40px;
        gap: 20px;
    }

    .service-card {
        flex: 1 1 240px;
        width: auto;
    }

    .services-section-2col {
        gap: 32px;
        padding: 12px 32px 32px;
    }

    .service-card-2col {
        flex: 1 1 240px;
        width: auto;
    }

    .apropos-hero {
        padding: 32px 32px 32px;
        gap: 36px;
    }

    .apropos-hero-text h1 {
        font-size: clamp(22px, 3.5vw, 32px);
    }

    .apropos-hero-img img {
        width: 200px;
        height: 260px;
    }

    .section-digital {
        padding: 32px 32px;
    }

    .digital-cards {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .digital-card {
        width: clamp(200px, 28vw, 260px);
        height: auto;
    }

    .digital-card2 {
        margin-top: 30px;
    }

    .section-adn {
        gap: 48px;
        padding: 40px 32px;
    }

    .adn-item {
        margin-left: 0;
    }

    .section-promesse p {
        padding: 0 48px;
    }

    .section-pourquoi {
        padding: 60px 32px;
    }

    .pourquoi-cards {
        gap: 24px;
        flex-wrap: wrap;
    }

    .pourquoi-card2 {
        margin-top: 28px;
    }

    .section-temoignages {
        padding: 10px 32px 60px;
    }

    .temoignages-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .temoignage-card {
        flex: 1 1 240px;
    }

    .parcours-wrapper {
        height: auto;
        margin: 48px 0;
        overflow: visible;
    }

    .parcours-line-img {
        display: none;
    }

    .parcours-row {
        position: static;
        flex-wrap: wrap;
        gap: 24px;
        padding: 16px 32px;
        justify-content: center;
        align-items: flex-start;
        height: auto;
    }

    .parcours-circle {
        width: clamp(180px, 26vw, 240px);
        height: auto;
        border-radius: 16px;
        padding: 24px 18px;
        overflow: visible;
    }

    .p-checks {
        width: 100%;
        padding-left: 8px;
    }

    .p-check span {
        font-size: 10px;
    }

    .academy-intro h2 {
        font-size: clamp(20px, 3vw, 28px);
        padding: 16px 40px;
    }

    .academy-intro p {
        padding: 0 48px;
    }

    .academy-conclusion {
        margin: 0 24px 60px;
        padding: 16px 32px;
    }

    .eng-intro {
        padding: 8px 32px 60px;
    }

    .eng-main-quote {
        padding: 40px 32px 16px;
    }

    .eng-valeurs {
        margin: 24px 48px;
    }

    .eng-cta {
        padding: 28px 32px 60px;
    }

    .contact-hero {
        padding: 40px 32px 8px;
    }

    .contact-hero h1 {
        font-size: clamp(24px, 4vw, 36px);
    }

    .contact-block {
        margin: 28px 32px;
        height: auto;
        min-height: 520px;
        overflow: visible;
    }

    .contact-left {
        padding: 20px 28px 40px;
        width: 40%;
    }

    .contact-left-photo img {
        width: 200px;
        height: 260px;
    }

    .contact-right {
        padding: 20px 40px;
    }
}

@media (min-width: 1920px) {

    header {
        padding: 0 80px;
        height: 120px;
    }

    header>img:first-child {
        height: 72px;
        width: auto;
        display: block;
    }

    nav a,
    nav button {
        font-size: 20px;
        padding: 10px 18px;
    }

    .btn-contact {
        font-size: 22px;
        padding: 16px 36px;
    }

    .footer-main {
        max-width: 2400px;
        margin: 0 auto;
        padding: 20px 80px;
    }

    .footer-logo img {
        height: 240px;
    }

    .footer-legal {
        width: 800px;
        font-size: 18px;
    }

    .hero img {
        width: 800px;
        height: auto;
    }

    .hero_title h1 {
        font-size: 64px;
    }

    .hero_title p {
        font-size: 38px;
    }

    .hero_text {
        font-size: 24px;
    }

    .hero_cta-group a {
        font-size: 24px;
    }

    .cards-section {
        gap: 100px;
        padding: 120px 120px;
    }

    .card-title {
        font-size: 26px;
    }

    .card-logo img {
        width: 260px;
        height: auto;
    }

    .end-text {
        font-size: 26px;
        max-width: 1600px;
    }

    .hero-corporate .logo-side img,
    .hero-academy .logo-side img {
        width: 700px;
        height: auto;
    }

    .hero-corporate .title-side h1,
    .hero-academy .title-side h1 {
        font-size: 52px;
    }

    .eng-hero-img img {
        width: 700px;
        height: auto;
    }

    .eng-hero-text h1 {
        font-size: 52px;
    }

    .intro-section {
        max-width: 1400px;
        padding: 40px 80px;
    }

    .intro-section p {
        font-size: 22px;
    }

    .services-section {
        max-width: 1800px;
        gap: 60px;
        padding: 30px 80px 80px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .section-digital {
        max-width: 1600px;
        padding: 60px 80px;
    }

    .digital-card {
        width: 380px;
        height: auto;
    }

    .section-adn {
        max-width: 1600px;
        padding: 80px 80px;
    }

    .adn-img img {
        width: 380px;
        height: 490px;
    }

    .adn-content h2 {
        font-size: 34px;
    }

    .section-pourquoi {
        max-width: 1600px;
        padding: 100px 80px;
    }

    .section-pourquoi h2,
    .section-digital h2 {
        font-size: 34px;
    }

    .section-temoignages {
        max-width: 1600px;
        padding: 10px 80px 100px;
    }

    .apropos-hero {
        max-width: 1600px;
        padding: 80px 80px 60px;
    }

    .apropos-hero-text h1 {
        font-size: 50px;
    }

    .apropos-hero-img img {
        width: 380px;
        height: 490px;
    }

    .parcours-circle {
        width: 280px;
        height: 280px;
    }

    .parcours-circle h3 {
        font-size: 20px;
    }

    .eng-list {
        max-width: 1600px;
    }

    .eng-item-text h3 {
        font-size: 20px;
    }

    .eng-item-text p {
        font-size: 16px;
    }

    .eng-main-quote h2 {
        font-size: 36px;
    }

    .contact-hero h1 {
        font-size: 56px;
    }

    .contact-block {
        margin: 60px 120px;
        height: 700px;
    }
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a,
button,
input,
label,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
}

button,
.btn-contact,
.btn-envoyer,
.nav-toggle,
.form-dropdown-btn,
nav button {
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input,
.contact-form textarea,
.form-dropdown-btn {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 6px;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
    color: rgba(160, 174, 192, 1);
    opacity: 1;
}

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    -webkit-text-fill-color: rgba(84, 110, 122, 1);
    transition: background-color 5000s ease-in-out 0s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-dropdown-btn:focus,
button:focus,
nav button:focus,
nav a:focus {
    outline: 2px solid rgba(27, 78, 129, 0.4);
    outline-offset: 2px;
}

.form-checkboxes input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(27, 78, 129, 1);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin: 0;
    transition: background 0.15s, border-color 0.15s;
}

.form-checkboxes input[type="radio"]:checked {
    background: rgba(27, 78, 129, 1);
    border-color: rgba(27, 78, 129, 1);
}

.form-checkboxes input[type="radio"]:checked::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-envoyer {
    width: -webkit-fit-content;
    width: fit-content;
}

.contact-agenda a {
    width: -webkit-fit-content;
    width: fit-content;
}

.carrousel-track {
    width: -webkit-max-content;
    width: max-content;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@-webkit-keyframes fadeDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-8px);
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header .dropdown-menu,
header .dropdown-menu {
    -webkit-animation: fadeDown 0.18s ease;
    animation: fadeDown 0.18s ease;
}

.dropdown-arrow {
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
}

.dropdown.open .dropdown-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nav-toggle span {
    -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
}

@supports not (gap: 1px) {

    header>*+* {
        margin-left: 15px;
    }

    nav ul>li+li {
        margin-left: 6px;
    }

    .hero>*+* {
        margin-left: 20px;
    }

    .cards-section>*+* {
        margin-left: 20px;
    }

    .footer-main>*+* {
        margin-left: 40px;
    }

    .services-section>*+* {
        margin-left: 20px;
    }

    .digital-cards>*+* {
        margin-left: 20px;
    }

    .pourquoi-cards>*+* {
        margin-left: 20px;
    }

    .temoignages-row>*+* {
        margin-left: 20px;
    }

    .eng-item>*+* {
        margin-left: 20px;
    }

    .hero_cta-group>*+* {
        margin-left: 12px;
    }
}

img[src$=".svg"] {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.carrousel-container,
.dropdown-menu,
header nav {
    -webkit-overflow-scrolling: touch;
}


select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23546E7A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.contact-form textarea {
    -webkit-appearance: none;
    appearance: none;
    resize: none;
}

.parcours-circle::before,
[class*="card"]::before {
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(130, 195, 0, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(130, 195, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(130, 195, 0, 0);
    }
}

.form-checkboxes input[type="radio"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    aspect-ratio: 1 / 1 !important;
    box-sizing: border-box !important;
    border-radius: 50% !important;
    border: 2px solid rgba(27, 78, 129, 1) !important;
    background: #fff !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    align-self: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.form-checkboxes input[type="radio"]:checked {
    background: rgba(27, 78, 129, 1) !important;
    border-color: rgba(27, 78, 129, 1) !important;
}

.btn-contact {
    margin-left: auto;
}

.lang-switcher {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border-radius: 28px;
    padding: 5px;
    box-shadow: 0 6px 24px rgba(55, 71, 79, 0.18), 0 1px 4px rgba(55, 71, 79, 0.10);
    border: 1px solid rgba(229, 231, 235, 0.9);
}

.lang-switcher span {
    display: none;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(84, 110, 122, 0.55);
    padding: 6px 13px;
    border-radius: 22px;
    transition: color 0.2s, background 0.22s, box-shadow 0.2s;
    line-height: 1;
}

.lang-btn:hover {
    color: rgba(27, 78, 129, 0.85);
    background: rgba(27, 78, 129, 0.05);
}

.lang-btn.active {
    background: rgba(27, 78, 129, 1);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(27, 78, 129, 0.30);
}

.form-checkboxes input[type="radio"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    aspect-ratio: 1 / 1 !important;
    box-sizing: border-box !important;
    border-radius: 50% !important;
    border: 2px solid rgba(27, 78, 129, 1) !important;
    background: #fff !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    align-self: center !important;
    padding: 0 !important;
    margin: 0 !important;
}

.form-checkboxes input[type="radio"]:checked {
    background: rgba(27, 78, 129, 1) !important;
    border-color: rgba(27, 78, 129, 1) !important;
}

.parcours-wrapper,
.parcours-row,
.parcours-circle {
    opacity: 1 !important;
    transform: none !important;
}

.parcours-line-img {
    opacity: 1 !important;
    transform: translateY(-50%) !important;
}

#page-loader {
    position: fixed;
    inset: 0;
    background: rgba(249, 250, 251, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader img {
    height: 80px;
    animation: loaderPulse 1s ease infinite alternate;
}

@keyframes loaderPulse {
    from {
        opacity: 0.4;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1.05);
    }
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 768px) {
    .lang-switcher {
        bottom: 16px;
        right: 16px;
    }
}