/* ================================
   ESSOR CONNECT - STYLE PRINCIPAL
================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f8fa;
    color: #1d1d1f;
    line-height: 1.6;
}

/* ================================
   HEADER
================================ */

header {
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 7%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
}

.logo img {
    width: 165px;
    height: auto;
    display: block;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #161616;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #b89043;
}

/* ================================
   BOUTONS
================================ */

.btn-header,
.btn,
.btn1,
.btn2 {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn-header,
.btn,
.btn1 {
    background: #111111;
    color: #ffffff;
}

.btn-header:hover,
.btn:hover,
.btn1:hover {
    background: #b89043;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn2 {
    border: 2px solid #111111;
    color: #111111;
    background: transparent;
}

.btn2:hover {
    background: #111111;
    color: #ffffff;
}

/* ================================
   HERO / ACCUEIL
================================ */

.hero,
#accueil {
    min-height: 86vh;
    display: flex;
    align-items: center;
    padding: 90px 8%;
    background:
        linear-gradient(
            120deg,
            rgba(8, 8, 8, 0.95),
            rgba(25, 25, 25, 0.88)
        );
    color: #ffffff;
}

.hero-content {
    width: 100%;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 55px;
    align-items: center;
}

.hero-text {
    max-width: 720px;
}

.hero h1,
.hero-text h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero h1 span,
.hero-text h1 span {
    color: #c9a45c;
}

.hero p,
.hero-text p {
    font-size: 19px;
    color: #dddddd;
    max-width: 680px;
    margin-bottom: 32px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-card h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.hero-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* ================================
   SECTIONS
================================ */

section {
    padding: 95px 8%;
}

section:nth-child(even) {
    background: #ffffff;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-title span {
    display: inline-block;
    color: #b89043;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: #111111;
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-title p {
    color: #666666;
    font-size: 17px;
}

/* ================================
   SERVICES
================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1250px;
    margin: auto;
}

.service-card,
.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #ececec;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
}

.service-card:hover,
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.11);
    border-color: #d8bd89;
}

.service-card h3,
.card h3 {
    font-size: 22px;
    margin-bottom: 13px;
    color: #111111;
}

.service-card p,
.card p {
    color: #686868;
    margin-bottom: 15px;
}

.service-card ul,
.card ul {
    padding-left: 20px;
    color: #555555;
}

.service-card li,
.card li {
    margin-bottom: 8px;
}

/* ================================
   A PROPOS / VISION
================================ */

.about,
.vision,
#apropos,
#vision {
    background: #111111;
    color: #ffffff;
}

.about-container,
.vision-container {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h2,
.vision h2,
#apropos h2,
#vision h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about p,
.vision p,
#apropos p,
#vision p {
    color: #d1d1d1;
    margin-bottom: 18px;
}

/* ================================
   CONTACT
================================ */

#contact,
.contact {
    background: #f0ede7;
}

.contact-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.contact h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #555555;
}

form {
    max-width: 720px;
    margin: 35px auto 0;
    display: grid;
    gap: 16px;
}

input,
textarea,
select {
    width: 100%;
    padding: 16px 18px;
    border-radius: 9px;
    border: 1px solid #cccccc;
    background: #ffffff;
    font-size: 16px;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #b89043;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

button {
    border: none;
    background: #111111;
    color: #ffffff;
    padding: 16px 25px;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #b89043;
}

/* ================================
   FOOTER
================================ */

footer {
    background: #090909;
    color: #bdbdbd;
    padding: 55px 8% 30px;
}

.footer-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 45px;
}

footer h3,
footer h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

footer a {
    color: #bbbbbb;
    text-decoration: none;
}

footer a:hover {
    color: #c9a45c;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 9px;
}

.footer-bottom {
    max-width: 1250px;
    margin: 35px auto 0;
    padding-top: 25px;
    border-top: 1px solid #252525;
    text-align: center;
    font-size: 14px;
}

/* ================================
   RESPONSIVE TABLETTE
================================ */

@media (max-width: 950px) {

    header {
        padding: 16px 5%;
    }

    nav ul {
        gap: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container,
    .vision-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================
   RESPONSIVE TELEPHONE
================================ */

@media (max-width: 700px) {

    header {
        flex-direction: column;
        gap: 18px;
    }

    .logo img {
        width: 145px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }

    nav a {
        font-size: 14px;
    }

    .btn-header {
        display: none;
    }

    .hero,
    #accueil {
        min-height: auto;
        padding: 75px 7%;
    }

    .hero h1,
    .hero-text h1 {
        font-size: 43px;
    }

    .hero p,
    .hero-text p {
        font-size: 17px;
    }

    section {
        padding: 70px 7%;
    }

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

    .section-title h2 {
        font-size: 34px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
/* ================================
   ANIMATIONS ESSOR CONNECT
================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-scrolled {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
/* =================================
   CORRECTION HEADER ESSOR CONNECT
================================= */

.header {
    background: #ffffff;
    padding: 18px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.logo img {
    width: 170px;
    height: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav a {
    text-decoration: none;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.nav a:hover {
    color: #8d6b32;
}

.btn-small {
    white-space: nowrap;
    padding: 13px 20px;
}

/* Correction de la taille du grand titre */

.hero-text h1 {
    font-size: clamp(48px, 5.3vw, 78px);
    line-height: 1.02;
    max-width: 800px;
}

/* Adaptation tablette */

@media (max-width: 1000px) {

    .nav-container {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-text h1 {
        font-size: 56px;
    }
}

/* Adaptation téléphone */

@media (max-width: 700px) {

    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        width: 145px;
    }

    .nav {
        gap: 14px 18px;
    }

    .nav a {
        font-size: 14px;
    }

    .btn-small {
        display: none;
    }

    .hero-text h1 {
        font-size: 44px;
    }
}
/* =================================
   SERVICES RAPIDES - HERO
================================= */

.quick-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.quick-services a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 58px;
    padding: 14px 18px;

    background: #ffffff;
    color: #111111;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-align: center;

    transition: 0.3s ease;
}

.quick-services a:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 600px) {

    .quick-services {
        grid-template-columns: 1fr;
    }
}
/* =================================
   AJUSTEMENT HERO ESSOR CONNECT
================================= */

.hero {
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-text h1 {
    font-size: clamp(48px, 4.7vw, 72px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.hero-text p {
    max-width: 720px;
    line-height: 1.65;
}
/* =================================
   SECTION SERVICES ESSOR CONNECT
================================= */

.services {
    background: #f5f3ef;
    color: #111111;
    padding: 110px 7%;
}

.services .container {
    max-width: 1250px;
    margin: 0 auto;
}

.section-header {
    max-width: 750px;
    margin-bottom: 55px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    line-height: 1.6;
    color: #606060;
}

/* Les 4 pôles */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 18px;
    padding: 38px;
    min-height: 300px;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.service-number {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #777777;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 18px;
}

.service-card p {
    color: #606060;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-card a {
    color: #111111;
    font-weight: 700;
    text-decoration: none;
}

.service-card a:hover {
    text-decoration: underline;
}

@media (max-width: 800px) {

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

    .section-header h2 {
        font-size: 38px;
    }
}
/* =================================
   COMMENT ÇA MARCHE - ESSOR CONNECT
================================= */

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

.process-step {
    background: #f7f7f7;
    border: 1px solid #e2e2e2;
    border-radius: 18px;
    padding: 38px 32px;
    min-height: 250px;
    transition: 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.process-step span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #777777;
    margin-bottom: 35px;
}

.process-step h3 {
    font-size: 23px;
    margin-bottom: 15px;
    color: #111111;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #606060;
}

/* Téléphone et tablette */

@media (max-width: 850px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}
/* =================================
   À PROPOS - ESSOR CONNECT
================================= */

.about {
    background: #111111;
    color: #ffffff;
    padding: 110px 7%;
}

.about-grid {
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 90px;
    align-items: center;
}

.about .section-label {
    color: #bdbdbd;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.about h2 {
    color: #ffffff;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.12;
    letter-spacing: -1px;
}

.about-grid > div:last-child {
    border-left: 1px solid #444444;
    padding-left: 45px;
}

.about-grid > div:last-child p {
    color: #c9c9c9;
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 25px;
}

@media (max-width: 850px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-grid > div:last-child {
        border-left: none;
        border-top: 1px solid #444444;
        padding-left: 0;
        padding-top: 35px;
    }
}
/* =================================
   CONTACT - ESSOR CONNECT
================================= */

.cta {
    background: #f3f0ea;
    padding: 95px 7%;
}

.cta-content {
    max-width: 1250px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.cta-content > div {
    max-width: 760px;
}

.cta .section-label {
    color: #555555;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.cta h2 {
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.1;
    color: #111111;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
}

.cta .btn-light {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 200px;
    padding: 18px 28px;

    background: #111111;
    color: #ffffff;

    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;

    transition: 0.3s ease;
}

.cta .btn-light:hover {
    transform: translateY(-3px);
    background: #333333;
}

/* Téléphone */

@media (max-width: 800px) {

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .cta .btn-light {
        width: 100%;
    }
}
/* =================================
   CORRECTION LOGO FOOTER
================================= */

.footer-logo img {
    width: 150px;
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

.footer-logo {
    display: flex;
    align-items: center;
}

/* =================================
   FORMULAIRE CONTACT - ESSOR CONNECT
================================= */

.contact-form-section {
    background: #ffffff;
    padding: 100px 7%;
}

.contact-form-section .container {
    max-width: 1050px;
    margin: 0 auto;
}

.contact-form-section .section-label {
    color: #666666;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-form-section h2 {
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.1;
    margin-bottom: 18px;
    color: #111111;
}

.contact-form-section > .container > p {
    max-width: 760px;
    color: #666666;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 45px;
}

/* FORMULAIRE */

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;

    background: #f7f6f3;
    border: 1px solid #e5e2dc;
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    background: #ffffff;
    color: #111111;

    padding: 15px 16px;
    font-size: 16px;
    font-family: inherit;

    outline: none;
    transition: 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    min-height: 170px;
    resize: vertical;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-submit {
    grid-column: 1 / -1;
    justify-self: start;

    border: none;
    background: #111111;
    color: #ffffff;

    padding: 16px 28px;
    border-radius: 10px;

    font-size: 16px;
    font-weight: 700;
    cursor: pointer;

    transition: 0.3s ease;
}

.form-submit:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* TABLETTE / MOBILE */

@media (max-width: 750px) {

    .contact-form {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }

    .form-group-full,
    .form-submit {
        grid-column: auto;
    }

    .form-submit {
        width: 100%;
    }
}

/* =================================
   AJUSTEMENT SECTION FORMULAIRE
================================= */

.contact-form-section {
    background: #ffffff !important;
    color: #111111;
    padding-top: 110px;
    padding-bottom: 110px;
}

.contact-form-section h2 {
    color: #111111;
}

.contact-form-section > .container > p {
    color: #666666;
}

.contact-form {
    margin-top: 45px;
}
#formulaire-contact {
    scroll-margin-top: 170px;
}
.form-success {
    margin-top: 20px;
    padding: 16px 18px;
    border: 1px solid #d9e6dc;
    border-radius: 10px;
    background: #f5faf6;
    color: #1f4d2f;
    font-size: 16px;
    line-height: 1.5;
    max-width: 620px;
}
/* ===============================
   TABLETTE / MOBILE - HEADER
================================ */

@media (max-width: 900px) {

    .nav-container {
        flex-wrap: wrap;
        padding: 22px 24px;
        gap: 20px;
    }

    .logo img {
        width: 150px;
        height: auto;
    }

    .nav {
        width: 100%;
        justify-content: center;
        gap: 22px;
        flex-wrap: wrap;
    }

    .nav a {
        font-size: 15px;
    }

    .nav-container .btn-small {
        display: none;
    }
}
/* ===============================
   MENU HAMBURGER MOBILE
================================ */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #111111;
}

@media (max-width: 700px) {

    .nav-container {
        position: relative;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
    }

    .logo img {
        width: 135px;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 15px 0 20px;
        border-top: 1px solid #eeeeee;
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
        font-size: 16px;
    }

    .nav-container .btn-small {
        display: none;
    }
}
@media (max-width: 700px) {

    .nav {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        padding: 8px 0;
        border-radius: 14px;
    }

    .nav a {
        padding: 10px 18px;
        font-size: 15px;
    }
}
@media (max-width: 700px) {

    .header {
        padding: 0 !important;
    }

    .nav-container {
        min-height: 100px !important;
        padding: 16px 20px !important;
    }

    .logo img {
        width: 125px;
        height: auto;
    }
}
@media (max-width: 700px) {

    .hero {
        padding: 70px 20px 80px;
    }

    .hero-content {
        display: block;
    }

    .hero-text h1 {
        font-size: 52px !important;
        line-height: 1.02;
        letter-spacing: -1.5px;
        margin-bottom: 24px;
    }

    .hero-text > p {
        font-size: 18px;
        line-height: 1.6;
    }

    .hero-card {
        margin-top: 35px;
        width: 100%;
    }
}
@media (max-width: 700px) {

    .hero-text h1 {
        font-size: 42px !important;
        line-height: 1.05;
        letter-spacing: -1px;
        max-width: 100%;
    }

    .hero-text > p {
        font-size: 17px;
        line-height: 1.55;
    }

    .hero {
        padding: 60px 20px 70px;
    }
}
@media (max-width: 700px) {

    .hero .section-label,
    .hero > p,
    .hero-text .section-label {
        font-size: 15px;
        line-height: 1.4;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 700px) {

    .contact-form-section {
        padding: 60px 20px !important;
    }

    .contact-form-section h2 {
        font-size: 38px !important;
        line-height: 1.05;
        margin-bottom: 22px;
    }

    .contact-form-section .section-label {
        margin-bottom: 22px;
    }

    .contact-form-section > .container > p,
    .contact-form-section .container > p {
        font-size: 17px;
        line-height: 1.6;
    }
}
@media (max-width: 700px) {
    .contact-form-section {
        padding-bottom: 30px !important;
    }

    .footer {
        padding: 50px 20px !important;
    }
}
@media (max-width: 700px) {

    .process-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .process-step {
        padding: 34px 28px;
        min-height: auto;
    }

    .process-step h3 {
        font-size: 26px;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .process-step p {
        font-size: 17px;
        line-height: 1.55;
    }
}
@media (max-width: 700px) {

    .services {
        padding: 60px 20px !important;
    }

    .services .section-header h2 {
        font-size: 38px !important;
        line-height: 1.05;
        margin-bottom: 20px;
    }

    .services .section-header > p {
        font-size: 17px;
        line-height: 1.55;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-card {
        padding: 34px 28px;
        min-height: auto;
    }

    .service-card h3 {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .service-card p {
        font-size: 17px;
        line-height: 1.55;
    }
}
.pole-detail-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
}
/* Cache les détails des pôles au départ */
.pole-detail {
    display: none;
}

/* Affiche le pôle sélectionné */
.pole-detail.active {
    display: block;
}
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 10, 20, 0.82) 0%,
    rgba(5, 10, 20, 0.60) 45%,
    rgba(5, 10, 20, 0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 80px 8%;
  color: white;
}

.hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  opacity: 0.85;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.88);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: #ffffff;
  color: #111827;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.45);
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.btn:hover {
  transform: translateY(-@media (max-width: 768px) {
  .hero {
    min-height: 78vh;
    align-items: center;
  }

  .hero-content {
    padding: 70px 24px 50px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 4rem);
    line-height: 1.05;
    margin-top: 20px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

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

  .hero-actions .btn {
    width: 100%;
  }
});
}
.header {
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 52px;
  width: auto;
  display: block;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .header {
    padding: 8px 0;
  }

  .nav-container {
    min-height: 64px;
  }

  .logo img {
    max-height: 46px;
  }
}@media (max-width: 768px) {
  .header {
    padding: 4px 0;
  }

  .nav-container {
    min-height: 58px;
  }

  .logo img {
    max-height: 54px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}.intro {
  padding: 110px 8%;
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  margin-bottom: 18px;
}

.intro h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  color: #111827;
  margin: 0;
}

.intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 768px) {
  .intro {
    padding: 70px 24px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro h2 {
    font-size: 2.3rem;
  }

  .intro p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .intro h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .intro p {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}.services {
  padding: 100px 8%;
  background: #f7f5f1;
}

.services .section-header {
  max-width: 760px;
  margin-bottom: 60px;
}

.service-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 28px;
  padding: 42px;
  margin-bottom: 28px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(15,23,42,0.10);
}

.service-card .number,
.service-card .service-number {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #8b8b8b;
  margin-bottom: 28px;
}

.service-card h3 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #111111;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.75;
  color: #626262;
  margin-bottom: 28px;
}

.service-card a {
  color: #111111;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
}

.service-card a:hover {
  gap: 14px;
}

@media (max-width: 768px) {
  .services {
    padding: 70px 24px;
  }

  .service-card {
    padding: 32px 26px;
    border-radius: 22px;
  }

  .service-card h3 {
    font-size: 1.7rem;
  }
}
@media (min-width: 769px) {
  .hero-bg {
    object-fit: cover;
    object-position: center 35%;
  }

  .hero {
    min-height: 78vh;
  }
}@media (min-width: 769px) {
  .hero-bg {
    object-fit: cover;
    object-position: center center;
    transform: scale(0.92);
  }

  .hero {
    min-height: 78vh;
    background: #000;
  }
}@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    padding: 70px 24px 45px;
    box-sizing: border-box;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.05;
    margin: 18px 0 24px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-kicker {
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.65;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    box-sizing: border-box;
  }
}
@media (min-width: 769px) {
